Is c++ an oop?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

What are features of c++?

0 Answers  


What ANSI C++ function clears the screen a) clrscr() b) clear() c) Its not defined by the ANSI C++ standard

0 Answers  


Is c better than c++?

0 Answers  


What does the following code do: int c=0; cout< a) Undefined *Updated* b) 01 c) 00

0 Answers  


Is rust better than c++?

0 Answers  






write a c++ program that gives output 4 3 4 2 3 4 1 2 3 4 using looping statement

4 Answers  


What is setw manipulator in c++?

0 Answers  


What is a smart pointer?

1 Answers  


Can constructor be static in c++?

0 Answers  


What is the latest c++ standard?

0 Answers  


Evaluate: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); a) 10 b) 11 c) 1

4 Answers   Quark,


Are strings immutable in c++?

0 Answers  


Categories