Multiple Choice
Case-Based Critical Thinking Questions 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.
The application needs to display a message box to remind the clerk to ask customers to join the Rental Rewards Program when they check out. This message box should only display if the customer is not currently in the program. Which of the following If clauses would evaluate to True and display the message box for the clerk?
A) If strMember "Y" Then
B) If strMember = "Y" Then
C) If strMember = "N" Then
D) a and c
Correct Answer:

Verified
Correct Answer:
Verified
Q4: Write a statement that changes the contents
Q11: A programmer must phrase the condition of
Q12: Write an If clause that will determine
Q20: The _ method displays a message box
Q22: Write an If...Then...Else statement that assigns the
Q25: Write a statement that creates a message
Q30: The Backspace key is represented by the
Q40: The Not operator would make a True
Q42: An application needs to calculate a discount
Q51: Case-Based Critical Thinking Questions Case 1 -