C++ was developed by
Bjarne Strousturp
Dennis Ritchie
Steve Jobs
Bill Gates
C++ Language was initially called as
B Lnaguage
Simula67
C with Classes
CPP
C++ is a
Assembly language
Object - Oriented Language
Procedure - Oriented Language
Object - Base Language
The Wrapping up of data and functions into a single unit is known as
Data Abstration
Inheritance
Polymorphism
Data Encapsulation
An Object is a Variable of Type
integer
Class
Structure
Object is not a variable
What is inheritance?
It is refer to the act of representing essential features without including background details or Exaplantion
User - defined data type
ability to take more than one form
Is the process by which objects of one class acquire the properties of another class
A C++ Program may not have the main( ) funtion
A C++ Program may have more than one main( ) funtion
The default return type of main( ) is
void
int
char
class
Find the invalid variable declaration
int BCA
int bca_2017
int 2017_bca
int bca
A Class is a
Primary data type
Derived Data type
User Defined data type
It is not a Data type
An array is a
Derived data type
it is not a data type
void main() { int a=0; int *b; b=&a *b=100; cout<<a; } What will be the output of the program?
0
Error
100
a
Which one of the following is a Relational Operator?
&&
<=
%
|
Which one of the following is an Exit controlled Loop
Do-While Loop
While Loop
For Loop
None