What is difference between abstraction and encapsulation?
No Answer is Posted For this Question
Be the First to Post Answer
In the following declaration of main, "int main(int argc, char *argv[])", to what does argv[0] usually correspond? 1) The first argument passed into the program 2) The program name 3) You can't define main like that
What are the advantages of inheritance?
26 Answers IBS, TCS,
IS IT NECESSARY TO INITIALIZE VARIABLE? WHAT IF THE INSTANCE VARIABLE IS DECLARED final ? IS IT NECESSARY TO INITIALIZE THE final VARIABLE AT THE TIME OF THEIR DECLARATION?
JAVA is FULLY OBJECT ORIENTED PROGRAMING LANGUAGE?
What type of Job you are providing?
#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 overriding in oop?
Can you name some types of inheritance?
what is function over loading?
What is abstraction with example?
why function overloading is not called as pure polymorphism?
What is for loop and its syntax?