-
-
-
Auto Pointer
What is auto pointer ? What is the use of this ?
-
OBJECT and INSTANCE
What Is The Difference Between Object and Instance?
-
Modular Structered and OOPS
Compare Modular Structered Programming and Object Oriented Programming
-
C++ Default Function
What are the four functions that compiler automatically provides? How can you prevent compiler to provide automatically?
-
C++ Interface
Is it possible to create an interface in C++? If Yes, how?
-
Execute Destructor
When is a destructor executed?
-
Dynamic Binding
Why is Dynamic binding (regarding DLLs) are considered better in comparison with static binding? What are DLLs and how they work?
-
Top Down and Bottom up Approach
Why we fallow top down approach in c-language and bottom up approach in c++?explain?
-
-
Default Constructor
What is the Default Constructor?
-
Data Encapsulation
Which one of the statements concerning data encapsulation is FALSE? A. Data encapsulation lets the programmer create an object and then provide an interface that other objects can use to invoke the methods provided by that object. B. Programmers can change the internal working of an object, but this may be transparent as long as the interface remains unchanged. C. Data encapsulation works well for...
-
Arithmetic Operations using Operator Overloading
Write a program for all the four arithmetic operations in float data type using operator overloading concept.
-
Base Class Destructor
In C++, which of following statements accurately describe a base class destructor calling a virtual function override of a derived class?A. the base class destructor calls the virtual function of the base class and not of the derived class.B. the base class destructor calls the virtual function override of the derived class through th vtable.C. the C++ compiler maintains the overridden virtual function...
-
Two Dimension Array
A two dimension array can also be thought of asChoose one answer. a. Table. b. Array of arrays.c. A file.d. None of the above e. A and B
-
Multi-Dimension Array Size
If you need a function that will handle multi-dimensional arrays, you must specify the following sizes inside the square brackets.Choose one answer. a. All sizes except the first dimension b. None of the sizes c. All sizes except the last dimension d. All the sizes
-
Program Crash
When can it happen that before calling main function itself program gets crashed?
-
Memory Allocation
Why is it suggested not to use malloc() or calloc() in C++ for memory allocation?
-
Pointers Datatype
What is the datatype of pointer?
C++ Interview Questions
Ans