Every high-level computer programming language contains a ____ statement that you can use to code any loop, including both indefinite and definite loops.

A. do
B. while
C. for
D. count


Answer: B

Computer Science & Information Technology

You might also like to view...

If the following function throws an unhandled exception, what happens?

void f1() throws ( );

Computer Science & Information Technology

When two references point to the same object, ________________________________

a) a run-time error will occur. b) a compiler error will occur. c) the references are called aliases of each other. d) the object will be marked for garbage collection. e) the references are called null references.

Computer Science & Information Technology

What two numbers are displayed in the list box when the button is clicked on?

``` Dim nums(2) as Integer Private Sub frmNumbers_Load(...) Handles MyBase.Load nums(0) = 5 nums(1) = 3 nums(2) = 4 End Sub Private Sub btnDisplay_Click(...) Handles btnDisplay.Click lstBox.Items.Add(nums.Average) lstBox.Items.Add(nums.Max) End Sub ``` (A) 4 and 5 (B) 4 and 4 (C) 3 and 5 (D) 3 and 4

Computer Science & Information Technology

Comments are ignored by Access when the macro or VBA code is run

Indicate whether the statement is true or false

Computer Science & Information Technology