Curioustab
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Technology Questions
Default constructor accepts how many arguments?
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?
What is the user-defined header file extension in c++?
What do you mean by inline function?
A special member function of a class, which is invoked automatically whenever an object goes out of the scope is called
Which of the following can derived class inherit?
What is meant by pure virtual function?
What does inheriatance allows you to do?
How many types of constructor are there in C++?
What is a template?
What is meant by template specialization?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70