Multiple Choice
Case 5-1
You have written the code below and you want to step through it with some actual values to make sure that it is working in practice the way you expect it to work.
If decGPA > 3.5 Then
If intSatScore > 1000 Then
lblAdmissionsStatus.Text = "You have earned admission"
Else
lblAdmissionsStatus.Text = "Retake the SAT exam"
EndIf
Else
If intSatScore > 1200 Then
lblAdmissionsStatus.Text = "You have earned probationary admission"
Else
lblAdmissionStatus.Text = "You have been denied admission"
End If
End If
-Assuming that an applicant has a GPA of 3.55,what is the value of lblAdmissionsStatus.Text if the applicant's SAT score is 1000?
A) Retake the SAT exam
B) You have earned admission
C) You have earned probationary admission
D) You have been denied admission
Correct Answer:

Verified
Correct Answer:
Verified
Q49: The ampersand (&)symbol is the operator used
Q50: The process of validating input data is
Q51: In the era of IntelliSense,developers need no
Q52: An If...Then statement can be used to
Q53: Variables declared within a block of code
Q55: The plus sign is the operator for
Q56: Visual Basic provides six different logical operators.Briefly
Q57: When using an If...Then...Else statement,if the condition
Q58: The _ procedure found in the MessageBox
Q59: The IsNumeric function will return a(n)_ type