explain the concepts of oops?
Answer / ravi kumar soni
Abstraction : Hiding of inner details and showing only what
are required.
Encapsulation : Binding of data and the methods used to
access them. Eg: Classes.
Inheritance : Extending the existing functionaltiy.
Polymorphysim : Change of behavior with context.
| Is This Answer Correct ? | 10 Yes | 2 No |
What is a scope resolution operator?
What is overriding in oop?
How do you use inheritance in unity?
Generally, in all C++ programs, texts are in white colour. Can we change the colour of the text(either input or output or both)? If so, help me out.
Is html an oop?
swapping program does not use third variable
#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 abstraction encapsulation?
class type to basic type conversion
A file pointer always contains the __________ of the file
why we call c++ is object oriented lanaguage
how does a main() in C++ is different from main() in C?