What is the difference between mutex and binary semaphore?
No Answer is Posted For this Question
Be the First to Post Answer
Can circle be called an ellipse?
what is difference between static and non-static variables
class X { private: int a; protected: X(){cout<<"X constructor was called"<<endl;} ~X(){cout<<"X destructor was called"<<endl} }; Referring to the code above, which one of the following statements regarding "X" is TRUE? a) X is an abstract class. b) Only subclasses of X may create X objects. c) Instances of X cannot be created. d) X objects can only be created using the default copy constructor. e) Only friends can create instances of X objects.
What are the uses of static class data?
Define a constructor?
Which recursive sorting technique always makes recursive calls to sort subarrays that are about half size of the original array?
What is virtual destructor? What is its use?
what is the difference between overloading & overriding? give example.
Explain about vectors in c ++?
What is the difference between map and hashmap in c++?
How is c++ used in the real world?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == 4 ) y-= 7; else y = 8; Enter a segment of code (without any IF statements) that does exectly the same thing using the switch structure.