What is overloading in oops?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the concept of abstracion and encapsulation with one example. What is the difference between them?
When you define a integer it gets stored in which data structure?(Stack or a heap)
What is overriding in oops?
what is polymorpsim? what are its types?
What Is a Polymorphism? How many types of polymorphism and whats that use in application?
Why do we use oops?
What is DeadlyDiamondDeathProblem ?
#include <iostream> using namespace std; int main() { int a = 3; int c[5][5]; for (int x=0;x<5;x++) { for (int y=0;y<5;y++) { c[x][y] = x*y; } } cout << c[a][2]; }
What is encapsulation with real life example?
What is static modifier?
What are virtual classes?
What is Hashing and how is it done? Pictorial form?