Die meistgefragten Interviewfragen und Antworten sowie Online-Tests
Lernplattform fur Interviewvorbereitung, Online-Tests, Tutorials und Live-Ubungen

Baue deine Fahigkeiten mit fokussierten Lernpfaden, Probetests und interviewreifem Inhalt aus.

WithoutBook vereint themenbezogene Interviewfragen, Online-Ubungstests, Tutorials und Vergleichsleitfaden in einem responsiven Lernbereich.

Interview vorbereiten

Probeprufungen

Als Startseite festlegen

Diese Seite als Lesezeichen speichern

E-Mail-Adresse abonnieren

C++ Interviewfragen und Antworten

Test your skills through the online practice test: C++ Quiz Online Practice Test

Verwandte Vergleiche

C vs C++Java vs C++

Frage 86. Write a program that ask for user input from 5 to 9 then calculate the average


int main()
{
int MAX=4;
int total =0;
int average=0;
int numb;
cout<<"Please enter your input from 5 to 9";
cin>>numb;
if((numb <5)&&(numb>9))
cout<<"please re type your input";
else
for(i=0;i<=MAX; i++)
{
total = total + numb;
average= total /MAX;
}
cout<<"The average number is"<<average<<endl;

return 0;
}

Ist das hilfreich? Kommentar hinzufugen Kommentare ansehen
 

Frage 87. Assignment Operator - What is the diffrence between a "assignment operator" and a "copy constructor"?


Answer1.
In assignment operator, you are assigning a value to an existing object. But in copy constructor, you are creating a new object and then assigning a value to that object. For example:
complex c1,c2;
c1=c2; //this is assignment
complex c3=c2; //copy constructor

Answer2.
A copy constructor is used to initialize a newly declared variable from an existing variable. This makes a deep copy like assignment, but it is somewhat simpler:

There is no need to test to see if it is being initialized from itself.
There is no need to clean up (eg, delete) an existing value (there is none).
A reference to itself is not returned.

Ist das hilfreich? Kommentar hinzufugen Kommentare ansehen
 

Frage 88. RTTI - What is RTTI?


Answer1.
RTTI stands for "Run Time Type Identification". In an inheritance hierarchy, we can find out the exact type of the objet of which it is member. It can be done by using:

1) dynamic id operator
2) typecast operator

Answer2.
RTTI is defined as follows: Run Time Type Information, a facility that allows an object to be queried at runtime to determine its type. One of the fundamental principles of object technology is polymorphism, which is the ability of an object to dynamically change at runtime.

Ist das hilfreich? Kommentar hinzufugen Kommentare ansehen
 

Frage 89. STL Containers - What are the types of STL containers?


There are 3 types of STL containers:

1. Adaptive containers like queue, stack
2. Associative containers like set, map
3. Sequence containers like vector, deque

Ist das hilfreich? Kommentar hinzufugen Kommentare ansehen
 

Frage 90. What is the need for a Virtual Destructor ?


Destructors are declared as virtual because if do not declare it as virtual the base class destructor will be called before the derived class destructor and that will lead to memory leak because derived classâ??s objects will not get freed.Destructors are declared virtual so as to bind objects to the methods at runtime so that appropriate destructor is called.

Ist das hilfreich? Kommentar hinzufugen Kommentare ansehen
 
RTTI - What is RTTI? 4) STL Containers - What are the types of STL containers? 5) What is the need for a Virtual Destructor ? " />

Am hilfreichsten laut Nutzern:

Copyright © 2026, WithoutBook.