What is the stack?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
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 |
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 |
What is the best sorting algorithm, when there is a large amount of data, that cannot be fit in the main memory. ?
What is abstraction in c++ with example?
Can the creation of operator** is allowed to perform the to-the-power-of operations?
What is iterator c++?
How the endl and setw manipulator works?
How would you obtain segment and offset addresses from a far address of a memory location?
How do you show the declaration of a virtual constructor?
What data encapsulation is in c++?
What are friend classes?
What is tellg () in c++?
Explain the difference between c & c++?
Differentiate between a pointer and a reference with respect to c++.