Home / Engineering / CPP Programming / Question
M
Q.) Output of following program?
#include<iostream>
using namespace std;
class Point {
Point() { cout << "Constructor called"; }
}; int main()
{
Point t1;
return 0;
}
Related MCQs on CPP Programming
Q. The process of removing detail from a given state representation is called
Q. Data stored in domains doesn’t require maintenance of a schema.
Q. NetWare IPX addressing uses a network number and a node number. Which statement is not true?
Q. Which of the following denotes Chomskianhiearchy?
Q. What encapsulates state data and services in a manner that is analogous to objects?
Q. Which of the following disadvantages follows the single coordinator approach?
Q. important component of best-first search (BFS) algorithms is
Discusssion
Login to discuss.