Answer Posted / 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 |
Post New Answer View All Answers
What is the best c++ compiler for windows 10?
Why was c++ created?
what is C++ exceptional handling?
What is the difference between struct and class?
declare an array of structure where the members of the structure are integer variable float variable integer array char variable access all elements of the structure using dot operator and this pointer operator
Does there exist any way to make the command line arguments available to other functions without passing them as arguments to the function?
Is recursion allowed in inline functions?
Name the debugging methods that are used to solve problems?
How const int *ourpointer differs from int const *ourpointer?
If a round rectangle has straight edges and rounded corners, your roundrect class inherits both from rectangle and from circle, and they in turn both inherit from shape, how many shapes are created when you create a roundrect?
What is the difference between set and map in c++?
Explain the properties and principles of oop.
How would you call C functions from C++ and vice versa?
What are abstract data types in c++?
Is the declaration of a class its interface or its implementation?