61.
Which of the following is correct?

62.
What will be the output of the following C++ code?
#include<iostream>
using namespace std;
class A
{
  ~A(){
    cout<<"Destructor called\n";
  }
};
int main()
{
    A a;
    return 0;
}

63.
Why this pointer is used?

64.
Which of the following is correct about static variables?

67.
Which of the following is correct about static polymorphism?

69.
What happens if the following program is executed in C and C++?
#include <stdio.h> 
void main() 
{ 
	printf("Hello World"); 
}

Read More Section(Introduction to C plus plus)

Each Section contains maximum 100 MCQs question on Introduction to C plus plus. To get more questions visit other sections.