What are different oops concepts?
What do you mean by inheritance?
Please tell me the oops concept with detailed answer
What is static modifier?
Why is polymorphism used?
Why polymorphism is used in oops?
what is function overloading..?
What is the difference between class and structure?
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 does exactly the linker do?
What will happen when the following code is run: int x; while(x<100) { cout<<x; x++; } 1) The computer will output "0123...99" 2) The computer will output "0123...100" 3) The output is undefined
There are 2 empty jars of 5 and 3 liters capacity. And a river is flowing besides. I want to measure 4 liters of wanter using these 2 jars. How do you do this?
What is a unary operator?