STL (140)
OOPS (873)
C++ General (2409) They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?
1869There are 2 empty jars of 5 and 3 liters capacity. And a river is flowing besides. I want to measure 4 liters of wanter using these 2 jars. How do you do this?
2 4241They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?
1864There are 2 empty jars of 5 and 3 liters capacity. And a river is flowing besides. I want to measure 4 liters of wanter using these 2 jars. How do you do this?
4 10714write a corrected statement so that the instruction will work properly. if (4 < x < 11) y = 2 * x;
1947Write a corrected statement in c++ so that the statement will work properly. if (4 < x < 11) y=2*x;
1964Write a corrected statement in c++ so that the statement will work properly. if (x > 5); y = 2*x; else y += 3+x;
1 2978Write a corrected statement in c++ so that the statement will work properly. if (x = y) x = 2*z;
2 4038Write a single instruction that will find the remainder of integral division when x is divided by y. Have the answer stored in z.
1 3387
What do you mean by vtable and vptr in c++?
Declare a pointer to a function that takes a char pointer as argument and returns a void pointer.
What is & in c++ function?
How does class accomplish data hiding in c++?
Which field is used in c++?
What is the difference between a definition and a declaration?
Explain rtti.
Is c++ the best programming language?
Explain storage qualifiers in c++.
When do you call copy constructors?
What are functions in oop?
Write a program that can take input from 3 to 8 and calculate the average?
What is dynamic and static typing?
What is the point of polymorphism?
How to tokenize a string in c++?