What is abstraction in oop with example?
No Answer is Posted For this Question
Be the First to Post Answer
Do you know about multiple inheritance?
Program to check whether a word starts with a capital letter or not.
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)
Whatis the difference between oop and object based language
Why it is called runtime polymorphism?
What is this interview room ? Is it a class or an object.
Round up a Decimal number in c++.. example Note = 3.5 is as 4 3.3 is as 3
3 Answers Accenture, Cognizant, IBM,
How is data security provided in Object Oriented languages? ?
What is the types of inheritance?
What is oop in simple words?
#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 a function in oop?