What is wrong with the following simple password program where today's password is "Intrepid"

```
Private Sub btnDisplay_Click(...) Handles btnDisplay.Click
Dim password As String
password = InputBox("Enter today's password:")
Do
lstBox.Items.Add("Incorrect")
password = InputBox("Enter today's password:")
Loop Until password = "intrepid"
lstBox.Items.Add ("Password Correct. You may continue.")
End Sub
(A) There is no way to re-enter a failed password.
(B) The Loop Until condition should be passWord <> "intrepid".
(C) It will display "Incorrect." even if the first response is "Intrepid".
(D) Nothing
```


(C) It will display "Incorrect." even if the first response is "intrepid".

Computer Science & Information Technology

You might also like to view...

Identify the correct answer from the list of choices.

A. Investigates the requirements of a business or organization, its employees, and its customers in order to plan and build new or improved computer services B. Analyzes a computer system's vulnerability to threats from viruses, worms, unauthorized access, and physical damage C. Provides access rights to approved users D. Participates in the making of computer chips, circuit boards, system units, or peripheral devices E. Requires a good sense of design and artistic talent

Computer Science & Information Technology

All your status updates and personal information are displayed on your own ________ page

A) Home B) Timeline C) Toolbar D) Profile

Computer Science & Information Technology

You can retrieve application resources using which method of the application Context?

a. detectProperties() b. getResources() c. getAssets() d. getAppResources()

Computer Science & Information Technology

Although many of us may prefer not to think about it, ____—the complete malfunction of a computer system—and other types of computer-related disasters do happen.

A. software piracy B. interrupted power C. spikes D. system failure

Computer Science & Information Technology