Fundamentals
Definitions
Syntax
Keywords
100

Bjarne Stroustrup


Who invented C++?

100


_________ is a  function  defined as wrapping up of data.

Define the term Encapsulation

100


Class Classname

Statements....

}

Write syntax for creating a Class

100


_________ is a keyword that refers to current instance of the class.

"This"  Keyword

200


__________is a user-defined data type which hold its data members.

What is Class?

200

________ is the capability of acquiring properties of another class

Inheritance 

200

Classname objname;


Write Syntax for creating an Object

200

________variable are declared outside any function.

Global 

300


The variables defined inside the class will have_____ scope.

Class Scope

300

_________  is the process which display important information and hiding detail

Abstraction

300

ClassName()


Syntax for Constructor

300

_______  : variables can be accessed within a particular scope.

Local

400


____________ programmers specify general code

Generic Programming

400

__________ is a space where we can define and declare identifiers

Namespace

400

 ~classname()

Syntax for Destructor

400

_______ class  can access private & protected members of other classes.

Friend class

500

_______________ is used to access identifiers such as variable names, function names.

Scope resolution operator 

500

________ is special method that is invoked automatically at the time of object creation.

Constructor

500

#include <iostream>

int main() {

           std::cout << "Welcome to CSBS";

           return 0;

}

ScopeResolutionOperator

500


Public members can be accessed by a _____ operator.

dot Operator

M
e
n
u