Multiple Choice
What will be the output of following program?#include <iostream> using namespace std;class Test{public:Test() { cout <<"Hello from Test() "; }} a;int main() {cout <<"Main Started "; return 0;}
A) main started
B) main started hello from test()
C) hello from test() main started
D) compiler error: global objects are not allowed
Correct Answer:

Verified
Correct Answer:
Verified
Q14: Which of the following ways are legal
Q15: The following is the C++ style comment<br>A)//<br>B)/*..*/<br>C)-<br>D)none
Q16: Which of the following is FALSE about
Q17: Which of the following feature of object
Q18: Which operator is having right to left
Q20: Which of the following approach is adapted
Q21: Which of the following statements is false?<br>A)every
Q22: Which operator is having the highest precedence?<br>A)postfix<br>B)unary<br>C)shift<br>D)equality
Q23: Functions can returns<br>A)arrays<br>B)references<br>C)objects<br>D)all of above
Q24: Empty parentheses following a function name in