Name an advantage of linked list over array?
Answers were Sorted based on User's Feedback
How do you achieve runtime polymorphism?
What is encapsulation with real life example?
Tell us about yourself.
47 Answers ABB, Amazon, Fidelity, Flextronics, Franklin Templeton, HCL, Hexaware, IBM, Impetus, Infosys, Reliance, Rofous, Silgate, Sutherland, TCS, Thomson Reuters, Virtusa, Wipro,
How to create a comment page in C #??
What is abstraction encapsulation?
Is data hiding and abstraction same?
what is ns string? what is ns array?
What is encapsulation selenium?
where is memory for struct allocated? where is memory for class-object allocated? I replied for struct in stack and for class-object in heap. THen he asked if class has struct member variable what happens.class on heap and what about struct in that class? couldnt ans :( :-?
Write a program to accept a number and to print numbers in pyramid format? for eg:for a no. 5 1 212 32123 4321234 543212345
why we are declare the function in the abstract class even though we are declaring it in Derived class?
#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]; }