WEB BROWSERS TECHNOLOGY
WHAT IS WEB TECHNOLOGY
Question
[CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
|
|
Else
|
|
Default
|
|
Unknown
|
|
Not
|
Detailed explanation-1: -A Select Case statement allows a variable to be tested for equality against a list of values. Each value is called a case, and the variable being switched on is checked for each select case.
Detailed explanation-2: -The Select Case statement is used to compare an expression with multiple Case statements. If a Case statement matches the expression, the corresponding code is executed. However, if a Case statement does not match the expression, the next Case statement is evaluated.
Detailed explanation-3: -Select can only pick between exactly two inputs. Case structures can have many cases and each case can have lots of code that should execute as a function of the condition.
Detailed explanation-4: -Statements to be executed if the previous expr had been tested to be logically true. A CASE construct must begin with a BEGIN CASE statement and end with an END CASE statement.