1. What is the output of the following code:

cout << 2/2+2/2-2+2 << endl;

2. Which of the following lines are correct C++ code. For the ones that are correct syntactically, what will be the output.

cout << "Hello" << "World" << endl;
(cout << "HelloWorld") << endl;
(cout << "HelloWorld").operator<<(endl);

3. Is anything wrong with the following code:

cMyType *p = new cMyType [10];
delete p;

4. What is the output of the following code:

for (unsigned int i = 0; i < 100; ++i)
if (i & 0x00000001) cout << i << endl;

5. What is the difference between class and struct?

6. State one difference between a reference and a pointer.

Academic Honesty!
It is not our intention to break the school's academic policy. Posted solutions are meant to be used as a reference and should not be submitted as is. We are not held liable for any misuse of the solutions. Please see the frequently asked questions page for further questions and inquiries.
Kindly complete the form. Please provide a valid email address and we will get back to you within 24 hours. Payment is through PayPal, Buy me a Coffee or Cryptocurrency. We are a nonprofit organization however we need funds to keep this organization operating and to be able to complete our research and development projects.