Curioustab
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Home
»
Interview
»
Technology
Default constructor accepts how many arguments?
one
two
three
None
Correct Answer:
None
Explanation:
Default constructors has no arguments
← Previous Question
Next Question→
More Questions from
Technology
Where is the reference stored?
How variable declaration in c++ differs that in c?
What is friend function?
What is the output of this program? #include using namespace std; struct sec { int a; char b; }; int main() { struct sec s ={25,50}; struct sec *ps =(struct sec *)&s; cout << ps->a << ps->b; return 0; }
What are the mandatory part to present in function pointers?
What is the output of this program ? #include using namespace std; int n(char, int); int (*p) (char, int) = n; int main() { (*p)('d', 9); p(10, 9); return 0; } int n(char c, int i) { cout << c << i; return 0; }
which keyword is used to define the macros in c++?
How many types of macros are there in c++?
What is the use of Namespace?
What is the general syntax for accessing the namespace variable?
Discussion & Comments
No comments yet. Be the first to comment!
Name:
Comment:
Post Comment
Join Discussion
Discussion & Comments