what code will be assigned to strStatus variable when the intLevel variable contains the number 1?


Select Case intLevel
Case 1, 2
strStatus = "Bronze"
Case 3 To 5
strStatus = "Silver"
Cases 6, 7
strStatus = "Gold"
Case Else
strStatus = "Platinum"
End Select


Bronze

Computer Science & Information Technology

You might also like to view...

How do you scale and reposition a photo in a photo project?

What will be an ideal response?

Computer Science & Information Technology

Some people use the term m-commerce (mobile commerce) to identify e-commerce that takes place using mobile devices.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

A client contacted you to request your help in researching and supplying the hardware necessary to implement a SOHO solution at his new home-based business.   Which of the following SOHO router features will simplify IP address configuration on the private network for both wired and wireless clients?

A. Multi-port switch B. FTP server C. DHCP server D. Firewall E. Wireless access point

Computer Science & Information Technology

You should make a parameter a reference parameter if:

a. You need the function to change the value of the argument passed to the function. b. you need to be able to change the value of the parameter in the function, but not the value of the argument. c. Always. d. If any of the other parameters are reference parameters.

Computer Science & Information Technology