When not to use object oriented programming?
No Answer is Posted For this Question
Be the First to Post Answer
Program to open a file with First argument
What is polymorphism ? Explain with examples
#include <iostream> using namespace std; struct wow { int x; }; int main() { wow a; a.x = 22; int c = a.x; int *b = new int; cout << c; return 0; } option: No output 0 22 -(11) Will not compile
What is difference between inheritance and polymorphism?
There are two base class B1,B2 and there is one class D which is derived from both classes, Explain the flow of calling constructors and destructors when an object of derived class is instantiated.
tel me oops defination in single line
what is main difference between object oriented object base
Which type does string inherit from?
what is a binary overloading
INSTANCE FIELDS DECLARED private ARE ACCESSIBLE BY THE METHODS ONLY.CAN WE CHANGE THE private FIELD OF AN OBJECT IN A METHOD OF SOME OTHER OBJECT OF THE SAME CLASS?
write a program to print * * * * * *
What is an object?