what type of questions
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between and interface and an abstract class ?
4 Answers IBM, Infosys, Ness Technologies,
Why static functions always uses static variables?
What is the expansion of OOPS?
Which is the best institute in hyderabad for C/C++ and it also has fast track course structure.
#include <iostream> using namespace std; struct wow { int x; }; int main() { wow a; wow *b; a.x = 22; b = &a; a.x = 23; cout << b->x; return 0; }
What is the difference between abstraction and polymorphism?
What is inheritance in oop?
What do you mean by abstraction?
What is the difference between the c++ & java?
Which is faster post increment or pre increment ? and in which cases should u use either - to increase speed?
What is a class and object?
What is encapsulation example?