Review Game Zone
Games
Test
Preview
Back
Match it!
Match it! Select the correct answer from the pull down...Good luck!
Using the code below, determine the value of intJ displayed in the MessageBox. Dim intJ As Integer = 0 Dim intK As Integer = 0 Do While intJ 10 Do While intK 5 intK -= 1 Loop intJ += 1 Loop MessageBox.Show = intJ.ToString()
Runtime error
10
Perform programmer debugging and/or program debugging.
Program will not compile due to a syntax error.
Sorry, that is not a valid number, try again!
syntax error.
Syntax error
Add break-points and step through the code while watching the variable output
When the code is completely written but will not execute, what is the appropriate action?
Runtime error
10
Perform programmer debugging and/or program debugging.
Program will not compile due to a syntax error.
Sorry, that is not a valid number, try again!
syntax error.
Syntax error
Add break-points and step through the code while watching the variable output
In the code below, if the user enters 5 into the TextBox1, the MessageBox will display: Private Sub btn1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btn1.Click Dim intX As Integer Dim dblD As Double = 50.0 Try in
Runtime error
10
Perform programmer debugging and/or program debugging.
Program will not compile due to a syntax error.
Sorry, that is not a valid number, try again!
syntax error.
Syntax error
Add break-points and step through the code while watching the variable output
Alice wrote a program that executed but did not produce the expected output. What is the best method for Alice to use to find the error?
Runtime error
10
Perform programmer debugging and/or program debugging.
Program will not compile due to a syntax error.
Sorry, that is not a valid number, try again!
syntax error.
Syntax error
Add break-points and step through the code while watching the variable output
In the code below, if the user enters thirty-seven into the TextBox1, the MessageBox will display: Private Sub btn1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btn1.Click Dim intX As Integer Try intX = Convert.ToI
Runtime error
10
Perform programmer debugging and/or program debugging.
Program will not compile due to a syntax error.
Sorry, that is not a valid number, try again!
syntax error.
Syntax error
Add break-points and step through the code while watching the variable output
Misspelling a keyword is an example of a:
Runtime error
10
Perform programmer debugging and/or program debugging.
Program will not compile due to a syntax error.
Sorry, that is not a valid number, try again!
syntax error.
Syntax error
Add break-points and step through the code while watching the variable output
Which type of error halts the program when a statement cannot be executed?
Runtime error
10
Perform programmer debugging and/or program debugging.
Program will not compile due to a syntax error.
Sorry, that is not a valid number, try again!
syntax error.
Syntax error
Add break-points and step through the code while watching the variable output
Jamie keyed “Interger” instead of “Integer”. What type of error resulted?
Runtime error
10
Perform programmer debugging and/or program debugging.
Program will not compile due to a syntax error.
Sorry, that is not a valid number, try again!
syntax error.
Syntax error
Add break-points and step through the code while watching the variable output
Check it!