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

How do I download c++?

0 Answers  


What are the two types of comments, and how do they differ?

0 Answers  


write a C++ programming :if the no is between 32 to 50 it will be odd.

3 Answers   NIIT,


Should a constructor be public or private?

0 Answers  


What is a container class?

0 Answers  






What is the most useful programming language?

0 Answers  


What's the order in which the objects in an array are destructed?

0 Answers  


What you mean by early binding and late binding? How it is related to dynamic binding?

1 Answers  


Which of the following operator cannot be overloaded?

2 Answers   TCL,


What is the Difference between "C structure" and "C++ structure"?

12 Answers  


what is pre-processor in C++?

0 Answers  


What is one dimensional array in c++?

0 Answers  


Categories