8085 MICROPROCESSOR
FEATURE OF 8085
Question
[CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
|
|
Pushing data
|
|
Pushed
|
|
Pulling
|
|
None of these
|
Detailed explanation-1: -Explanation: The data is pushed into the stack while loading the stack. Explanation: The data retrieved from stack is called popping off.
Detailed explanation-2: -Stack is a Last In First Out (LIFO) data structure. Piles is another name used for stack since data element are placed one above the other and the last element on the pile is the first one to be removed (LIFO)
Detailed explanation-3: -PUSH Operation. Push operation refers to inserting an element in the stack. Since there’s only one position at which the new element can be inserted-Top of the stack, the new element is inserted at the top of the stack.
Detailed explanation-4: -The following are the basic operations served by stacks. push : Adds an element to the top of the stack. pop : Removes the topmost element from the stack. isEmpty : Checks whether the stack is empty.
Detailed explanation-5: -The data item on the top of the stack is moved to location and the stack pointer is moved to point to the next item left on the stack. So the stack is a “last in, first out” (LIFO) data structure. That is, the last thing to be pushed onto the stack is the first thing to be popped off.