Ask to write virtual base class code?


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

Post New Answer

More C++ General Interview Questions

Is it possible for the objects to read and write themselves?

0 Answers  


What are 2 ways of exporting a function from a dll?

0 Answers  


What is auto used for in c++?

0 Answers  


List the issue that the auto_ptr object handles?

0 Answers  


Explain the difference between abstract class and interface in c++?

0 Answers  


what is data abstraction in C++?

0 Answers  


How can you find the nodes with repetetive data in a linked list?

1 Answers   Lucent,


program in c++ to input digits and print in words

1 Answers   Microsoft,


What is the difference between the functions rand(), random(), srand() and randomize()?

0 Answers  


What is a string example?

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,


Write is a binary search tree? Write an algo and tell complexity?

0 Answers   Axtria,


Categories