(Tricky) What is the output of the following code:
```
#include
using namespace std;
int main()
{
int x[] = {120, 200, 16};
for (int i = 0; i < 3; i++)
cout << x[i] << " ";
}
```
A. 200 120 16
B. 16 120 200
C. 120 200 16
D. 16 200 120
C. 120 200 16
You might also like to view...
Which of the following tasks cannot be performed using an enhanced for loop?
a. Calculating the product of all the values in an array. b. Displaying all even element values in an array. c. Comparing the elements in an array to a specific value. d. Incrementing the value stored in each element of the array.
When analyzing a problem, you always search first for the input, and then for the output.
Answer the following statement true (T) or false (F)
Computers can directly understand only their language, which is composed only of 1s and 0s.
Fill in the blank(s) with the appropriate word(s).
The Turing Machine was a computer that entered the commercial market
Indicate whether the statement is true or false