Match the following terms to their meanings:
I. And
II. Or
III. Null
IV. Between ... And
V. Like
A. used when testing for empty record
B. used to search for a range of values
C. used to display records in which both conditions must be met
D. operator used in search for text values
E. used to display records in which either condition is met
C, E, A, B, D
You might also like to view...
Describe the evaluation plan.
What will be an ideal response?
What is printed by the following program segment if the value input into num is 2?
``` cin >> num; switch (num) { case 0: case 1: cout << " Red"; case 2: cout << " Blue"; case 3: cout << " Green"; case 4: cout << " Yellow"; default: cout << " Invalid Input"; } // end switch ``` a. Red b. Blue c. Green d. Yellow e. Blue Green Yellow Invalid Input