What is the difference between Mutex and
Binary semaphore?
semaphore is used to synchronize processes. where as mutex is used to
provide synchronization between threads running in the same process.
In C++, what is the difference between method overloading and method
overriding?
Overloading a method (or function) in C++ is the ability for functions
of the same name to be defined as long as these methods have different
signatures (different set of parameters). Method overriding is the
ability of the inherited class rewriting the virtual method of the base
class.
What methods can be overridden in Java?
In C++ terminology, all public methods in Java are virtual. Therefore,
all Java methods can be overwritten in subclasses except those that are
declared final, static, and private.
What are the defining traits of an object-oriented language?
The defining traits of an object-oriented langauge are:
* encapsulation
* inheritance
* polymorphism
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;
}
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.
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.
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
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.
Page Numbers
:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17