C++ Interview Questions – Part 1
#define
#define is a C++ preprocessor directive that defines a substitute text for a name.
C++ Interview Questions
#include
#include is a preprocessor directive that causes the named file to be inserted in place of the #include.
C++ Interview Questions
Abstract Class
Abstract class is a class that serves only as a base class from which classes are derived. No objects of an abstract base class are created. A base class that contains pure virtual functions is an abstract base class.
C++ Interview Questions
Abstract Data Type ADT
a abstract data type ADT is an abstraction that describes a set of objects in terms of an encapsulated or hidden data and operations on that data.
C++ Interview Questions
Abstraction
Abstraction is the act of representing the essential features of something without including much details.
C++ Interview Questions
Access Operations
Access operation is a operations which access the state of a variable or object but do not modify it.
C++ Interview Questions
Address
Address is a value that identifies a storage location in memory.
C++ Interview Questions
Alias
Alias is a two or more variables that refer to the same data are said to be aliases of one another.
C++ Interview Questions
Anonymous Union
Anonymous Union an unnamed union in C++.The member can be used like ordinary variables.
C++ Interview Questions
ANSI C
ANSI C has any version of C that conforms to the specifications of the American National Standards Institute Committee X3J.
C++ Interview Questions






