Solved

Case 1 - Jack of All Trades

Question 3

Multiple Choice

Case 1 - Jack of All Trades
Jack of All Trades rents small power equipment to commercial and residential customers. The strCustomer variable is used to determine whether a customer is commercial (C) or residential (R) . Commercial customers receive a 10% discount if they are members of the Rental Rewards Program. Residential customers receive a 5% discount if they are members.
-Which of the following If clauses would evaluate to True and apply the 10% discount for a commercial customer?


A) If strCustomer <> "C" AndAlso strMember <> "Y"
B) If strCustomer = "C" AndAlso strMember = "Y"
C) If strCustomer <> "R" OrElse strMember = "Y"
D) If strCustomer = "C" OrElse strMember = "Y"

Correct Answer:

verifed

Verified

Related Questions