5 Which of the following statements is true
(a) C++ operators (+- /*) are evaluated from left to right.
(b) C++ statement is not case sensitive.
(c) Some C++ statements may end with a colon.
(d) A C++ program that prints three lines of output may use one
statement via cin.
6 Given the statement int x=4, y=5; which of the following is a valid
cout statement to output:
The product of 4 and 5 is 20
(a) cout << "The product of " << x << " and " << y << " is " << x*y << endl;
(b) cout << "The product of " << x << " and " << y << " is " << x*y << endl;
(c) cout << "The product of " << x << " and " << y << " is " << x*y << endl;
(d) cout << "The product of " << x << " and " << y << endl;