What are the data types in oop?
No Answer is Posted For this Question
Be the First to Post Answer
IN PROGRAMING LANGAUGE A C++ IS PURELY OBJECT ORIENTED OR NOT?
#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; }
swapping program does not use third variable
what is the difference between function template and template of function?explain with example.
what is different between oops and c++
Child cObj = new Parent() Wahts the output ?
WHAT IS THE DIFFERENCE BETWEEN ABSTRUCTION AND ENCAPSULATION? PLEASE EXPLAIN IT.
what is overloading
Input: enter the value:1234 output: 1 2 3 4 write a program to get above output.....
4 Answers Bally Technologies, IBM, SoftSol,
Can we have a private constructor ?
12 Answers HSBC, Ness Technologies, TCS, Wipro,
suppose A is a base class and B is the derved class. Both have a method foo which is defined as a virtual method in the base class. You have a pointer of classs B and you typecast it to A. Now when you call pointer->foo, which method gets called? The next part of the question is, how does the compiler know which method to call?
What do you mean by binding of data and functions?