(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
Computer Science & Information Technology
You might also like to view...
Identify possible actors and use cases involved in Personal Trainer’s operations.
What will be an ideal response?
Computer Science & Information Technology
Which of the following serves the purpose of finding out what you have and what is vulnerable?
A. reconnaissance B. covering-up C. session hijacking D. packet sniffing
Computer Science & Information Technology