What is the stack?

Answers were Sorted based on User's Feedback



What is the stack? ..

Answer / subhransu sekhar das

stack is a special datastructure in which we can insert and
delete item at only one end i,e top end.it is having the
order of lifo(last in first out)

Is This Answer Correct ?    38 Yes 1 No

What is the stack? ..

Answer / stranger

A stack is an abstract data type and data structure based on
the principle of Last In First Out (LIFO).A stack is an
ordered list of items.
Items are removed from this list in the reverse order to the
order of their addition.

There are two main operations: push and pop. The push
operation adds (stores) to the list. The pop operation
removes (deletes) an item from the list.

Is This Answer Correct ?    10 Yes 1 No

What is the stack? ..

Answer / karthikamburu

stack is an abstract data type and data structure based on
the principle of Last In First Out (LIFO). Stacks are used
extensively at every level of a modern computer system. For
example, a modern PC uses stacks at the architecture level,
which are used in the basic design of an operating system
for interrupt handling and operating system function calls.
Among other uses, stacks are used to run a Java Virtual
Machine, and the Java language itself has a class
called "Stack", which can be used by the programmer.

Is This Answer Correct ?    8 Yes 1 No

What is the stack? ..

Answer / sushant

stack is a linear data structure which is used for storing data in LIFO manner in this u can insert delete update data at any time by using PUSH POP options it works on TOP t0 BOTTOM manner.. it is used by many programming languages like C C++ JAVA PHP because of its best memory interpretation ease of use in stack is searching sorting and data mangement this is also used by compiler for thread management of opreator precedence table.

Is This Answer Correct ?    0 Yes 0 No

What is the stack? ..

Answer / firstdew

stack is liner data structure which work on simple theorem
of first in first out (like piles of plates kept in order)in
which addition as well as deletion happens from only one end
that is top.

Is This Answer Correct ?    2 Yes 34 No

Post New Answer

More C++ General Interview Questions

Write a program that takes a 5 digit number and calculates 2 power that number and prints it.

0 Answers   CTS,


Describe the syntax of single inheritance in C++?

0 Answers   Fidelity,


What is the Maximum Size that an Array can hold?

55 Answers   Adobe, FutureSoft, HCL, Infosys, Satyam, TCS, Wipro,


What is function overriding?

1 Answers  


What are the static members and static member functions?

1 Answers  






If horse and bird inherit virtual public from animal, do their constructors initialize the animal constructor? If pegasus inherits from both horse and bird, how does it initialize animal’s constructor?

0 Answers  


What is the last index number in an array of 100 characters a) 100 b) 99 c) 101

0 Answers  


What is iomanip c++?

0 Answers  


Which one is better- macro or function?

0 Answers   Fidelity,


Write a corrected statement in c++ so that the statement will work properly. if (x > 5); y = 2*x; else y += 3+x;

1 Answers  


How can you quickly find the number of elements stored in a static array? Why is it difficult to store linked list in an array?

0 Answers  


What is a modifier in c++?

0 Answers  


Categories