Curioustab
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Take Free Test
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Take Free Test
Technology Questions
In IMS DB (Information Management System Database), what are the main processing modes available for application programs, and how do these modes influence concurrency and database locking behavior?
In JCL (Job Control Language), what is the difference between an in-stream procedure and an inline procedure, and how are these two types of procedures used within a job?
In an AVL tree, for what range of balance factor (pivotal value) should rebalancing rotations be performed to maintain the height balanced property of the tree?
In computer science and programming, which underlying data structure is typically used by compilers and runtime systems to implement recursion and manage function call return addresses?
In C and C++ programming, what is a void pointer (also called a generic pointer), and how is it conceptually defined and used in programs?
In the context of programming languages, what is C++ and how is this language generally classified in terms of its programming paradigm and capabilities?
In object oriented programming with C++, what are the basic core concepts of object oriented programming that this language supports and promotes?
In C++ programming, what features differentiate C++ from the C language, particularly in terms of object orientation and additional capabilities?
In C++ object oriented programming, what is the purpose of declaring a destructor as virtual, and why is a virtual destructor important when using base class pointers to derived class objects?
In C++ programming, what is a reference variable and how does it conceptually differ from a normal pointer while still providing indirect access to another object?
In C++ language terminology, what are storage class or storage duration qualifiers, and which common keywords are used to control storage duration and linkage of variables?
In C++ object oriented programming, what is a copy constructor and when is this special constructor automatically invoked by the compiler?
In C++ class design, what is a default constructor and under what circumstances is this constructor automatically called by the language runtime?
In C++ polymorphism, what is meant by dynamic binding, and how does it affect which function implementation is called at runtime when using base class pointers or references?
In modern C++ programs, what is a namespace and why are namespaces used in large projects and libraries?
In C++ polymorphism terminology, what is meant by late binding, and how does late binding relate to virtual functions and runtime dispatch?
In C++ function call semantics, what is meant by early binding, and how does early binding differ from late (dynamic) binding when resolving which function implementation to execute?
In C++ object oriented programming, what is multiple inheritance and how does it allow a derived class to relate to more than one base class?
In C programming, what is the difference between realloc() and free() when managing dynamic memory on the heap?
In C++, what is the key difference between a class and a structure, especially in terms of default member access and typical usage?
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
71
72
73
74
75
76
77
78
79