Multiple Choice
Which of the following is an example of a single-outcome selection?
A) If testScore >= 60 Then
Display "That is a passing grade."
Else
Display "That is a failing grade."
End If
B) If hoursWorked > 40 Then
OvertimeHours = hoursWorked - 40
OvertimePay = overtimeHours * wageRate * 1.5
RegularPay = 40 * wageRate
GrossPay = regularPay + overtimePay
Else
GrossPay = hoursWorked * wageRate
End If
C) If age >= 65 Then
DiscountRate = 0.10
End If
D) Method deposit(Numeric amt)
AcctBal = acctBal + amt
Display "The new balance is: $" + acctBal
End Method
Correct Answer:

Verified
Correct Answer:
Verified
Q3: A Case structure is used most often
Q4: Based on the grading scale below, what
Q5: In some languages, including JavaScript, the Case
Q6: Which of the following statements corresponds to
Q7: <img src="https://d2lvgg3v3hfg70.cloudfront.net/TB10710/.jpg" alt=" -The flowchart segment
Q9: Pseudocode uses indentation and the keywords End
Q10: On a flowchart, a question mark at
Q11: <img src="https://d2lvgg3v3hfg70.cloudfront.net/TB10710/.jpg" alt=" -The flowchart in
Q12: Which of the following statements corresponds to
Q13: Which of the following statements corresponds to