Consider the following code. The Catch block of code will not be executed if the user enters which of the following when prompted?

```
Private Sub btnCalc_Click(...) Handles btnCalc.Click
Dim newNum, finalNum As Integer
Dim message, message1 As String
Try
newNum = CInt(InputBox("ow old are you?")
Catch
message = "hat answer is not an Integer value."
MessageBox.Show(message)
newNum = 0
Finally
finalNum = newNum + 1
message1 = "Your age next year will be " & finalNum & "."
MessageBox.Show(message1)
End Try
End Sub
```
(A) one
(B) 0
(C) 3000000000
(D) *

(B) 0

Computer Science & Information Technology

You might also like to view...

Recursion often is preferable to iteration because ________.

a. it is faster. b. it requires less memory. c. it models the problem more logically. d. All of the above.

Computer Science & Information Technology

An encryption ______ is a set of characters that the originator of the data uses to encrypt, and the recipient of the data uses to decrypt.

A. password B. algorithm C. code D. key

Computer Science & Information Technology