Answered Questions

  • What is the difference between ARRAY and STACK?

    Teja

    • Oct 21st, 2017

    Main difference is in access. With stack we can not access values randomly but with array we can access any item any time.

    Chandan Kumar Sahu

    • Mar 1st, 2017

    In an array, you have a list of elements and you can access any of them at any time. (Think of a bunch of wooden blocks all laid out in a row.) But in a stack, theres no random-access operation; th...