Multiple Choice
Which of the following pseudocode statements express the condition below?
A movie theater admits a customer free if he or she is under 2 years old or if he or she is 65 or older.
A) If age < 65 Or age >=2 Then
AdmissionPrice = 0
Else
AdmissionPrice = regularPrice
B) If age < 2 Or age <= 65 Then
AdmissionPrice = 0
Else
AdmissionPrice = regularPrice
C) If age > 2 Or age < 65 Then
AdmissionPrice = 0
Else
AdmissionPrice = regularPrice
D) If age < 2 Or age >=65 Then
AdmissionPrice = 0
Else
AdmissionPrice = regularPrice
Correct Answer:

Verified
Correct Answer:
Verified
Q18: When two conditions joined by the logical
Q19: The Boolean variable was developed by Tim
Q20: The keywords And, Or, and Not, are
Q21: When testing whether the value of a
Q22: Conditions in JavaScript are enclosed in parentheses.
Q24: A _ occurs when two or more
Q25: In JavaScript, the Or operator takes precedence
Q26: Conditions are joined with the keyword And
Q27: The Not operator, which is placed before
Q28: A method for indicating the outcome of