Apply the rules for the IF statement
Use a multiple-line IF statement to output the message "Count exceeds 99" when the value of the variable count is greater than 99.
```
IF count > 99 THEN
OUTPUT "Count exceeds 99"
END IF
```
You might also like to view...
The _______________ manager arranges components in a two-dimensional table with some number of rows and columns.
a. BorderLayout b. FlowLayout c. GridLayout d. AbsoluteLayout
The default encoding scheme for an XML declaration is _____.
A. ISO-8859-1 B. UTF-8 C. Latin-1 D. DTD 2.0
Which of the following can be described as an operating system that runs in a virtual machine?
A. hypervisor B. guest C. host D. NAS
Answer the following statements true (T) or false (F)
1. Suppose the swapValues template is instantiated as follows: ``` int x = 2, y =3; swapValue(x, y); // use x and y ``` and ``` double d= 3.0, f=4.5; swap(d, f); // use x and y ``` Then the compiler generates code for two copies of the swapValues template. 2. Insertion into a linked list takes the same number of operations no matter where the insertion occurs 3. A stack is a first-in-first-out data structure. 4. A queue is first-in-first-out data structure. 5. Most applications that use a stack will store a struct or class object on the stack.