Name an advantage of array over linked list?
Answer Posted / anu
I think linked list is better when compared to arrays
because size of array is restricted to
declaration.Insertion/Deletion of values in middle of array
is not possible.
Is This Answer Correct ? | 68 Yes | 16 No |
Post New Answer View All Answers
What are two types of polymorphism?
What does I oop mean?
Why polymorphism is used in oops?
What does oop mean in snapchat?
What is encapsulation in oop?
What are oops functions?
class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash
What does it mean when someone says I oop?
What do you mean by variable?
What is pure oop?
What is the difference between a mixin and inheritance?
What makes a language oop?
Can we override main method?
What is abstraction with example?
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?