What is abstraction c++?


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

Post New Answer

More C++ General Interview Questions

What is the difference between the compiler and the preprocessor?

0 Answers  


Can we inherit constructor in c++?

0 Answers  


What is difference between c++ 11 and c++ 14?

0 Answers  


How is new() different from malloc()?

0 Answers  


What is the hardest coding language to learn?

0 Answers  






class Foo { const int x; protected: Foo(int f); ~Foo(); }; Foo f; Referring to the sample code above, why will the class declaration not compile? a) The variable x is const. b) The destructor is protected. c) The destructor is not public. d) The constructor is protected. e) There is no default constructor.

5 Answers   Quark,


Why can templates only be implemented in the header file?

0 Answers  


What is meant by const_cast?

0 Answers  


Can we use pointers in c++?

0 Answers  


What is the size of pointer ? Also size of pointer in 64 bit pointer

4 Answers  


let a,b,c be three integer numbers.write a c++ program with a function void rotate 1()such that a->b->c and c->a.

1 Answers  


What are the static members and static member functions?

1 Answers  


Categories