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?
1922There 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 4347They 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?
1909There 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 10880write a corrected statement so that the instruction will work properly. if (4 < x < 11) y = 2 * x;
2003Write a corrected statement in c++ so that the statement will work properly. if (4 < x < 11) y=2*x;
2011Write a corrected statement in c++ so that the statement will work properly. if (x > 5); y = 2*x; else y += 3+x;
1 3043Write a corrected statement in c++ so that the statement will work properly. if (x = y) x = 2*z;
2 4150Write a single instruction that will find the remainder of integral division when x is divided by y. Have the answer stored in z.
1 3470
Describe the syntax of single inheritance in C++?
What is the advantage of oop over procedural language?
Does improper inheritance have a potential to wreck a project?
What is abstraction with example?
When should you use global variables?
help me i need a c++ program which takes sequesnce of characters and outputed sequence of their token taypes, work same compiler in lexical analysis phase
What is the latest c++ version?
What is atoi?
Is main a class in c++?
When do you call copy constructors?
What is #include iomanip?
How do you explain polymorphism?
What will strcmp("Astring", "Astring"); return a) A positive value b) A negative value c) Zero
What do you mean by abstraction?
What is endl?