Which bit wise operator is suitable for putting on a particular bit in a number?
Can manipulators fall in love?
Is c++ vector a linked list?
What are the different data types present in C++?
what are the iterator and generic algorithms.
How do you find out if a linked-list has an end? (I.e. The list is not a cycle)
Differentiate between an inspector and a mutator ?
Write a C++ program which will compute the volume of a sphere or a cylinder after prompting the user to type the first character for the shape name.
0 Answers An-Najah National University,
Is there any difference between int [] a and int a [] in c++?
Declare a class vehicle and make it an abstract data type.
Is c# written in c++?
5. Can inline functions have a recursion?
class basex { int x; public: void setx(int y) {x=y;} }; class derived : basex {}; What is the access level for the member function "setx" in the class "derived" above? a) private b) local c) global d) public e) protected