The ____ statement allows you to select exactly one of two alternatives—this or that.

a. for/next
b. do/while
c. case
d. if/then/else


d. if/then/else

Computer Science & Information Technology

You might also like to view...

The standard that provides a set of guidelines for identifying appropriate viewpoints for a software project and then turning them into detailed architectural design descriptions was originally drafted in what year?

A. 1999 B. 2002 C. 2005 D. 2006

Computer Science & Information Technology

What is the output of the following code?

``` #include using namespace std; void f1(int x, int &y, int* z) { x++; y++; (*z)++; } int main() { int i = 1, j = 1, k = 1; f1(i, j, &k); cout << "i is " << i; cout << " j is " << j; cout << " k is " << k << endl; return 0; } ``` a. i is 2 j is 2 k is 2 b. i is 1 j is 2 k is 3 c. i is 1 j is 1 k is 1; d. i is 1 j is 2 k is 2

Computer Science & Information Technology

When navigating a main form, pressing ________ will move the cursor to the first field of the current record

A) $$$Home$$$ B) $$$End$$$ C) $$$Tab$$$ D) $$$Ctrl$$$ + $$$Home$$$

Computer Science & Information Technology

When a database has been normalized, it has met the progressive series of criteria known as ________

A) normal forms B) redundancy C) anomalies D) dependency

Computer Science & Information Technology