answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: How do you stack cakes on top of one another?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the word of to put things on top of one another?

Stack


Is it possible to stack up 3 golf balls one on top of another?

Yes


What is a guitar stack?

A stack referrs to a type of amplifier where there is a head, and two cabinets stacked atop one another. The head is on the top of both cabinets. A popular amp stack would be a marshall stack. The cabinets usually consist of 4 12 inch speakers but this can vary.


Why does a bucket have a wide top?

A bucket has a wide top and narrow bottom to be able to stack them together. If the top and bottle were the same diametre, they would not stack, but one would be balanced on top of another (not very stable!). Also, like with a funnel, a wide top lets pouring unlikely to spill over the side.


Diagram that shows how rock units stack up on top of one another?

Stratigraphic section. page 37 in exploring geology.


What name is given to a statistical graph where each category has it own wedge and the wedges are displayed on top of one another?

Stack plot.


What is top pointer of stack?

top pointer of a stack is the pointer that refers to the top most element of the stack.


How do you eat 3 pieces of pizza at one time?

Stack them one on top of the other. Answer 2 You can eat five pieces at once by flattening them and stacking them on one another


'write a simple program for stack operation in c plus plus?

void push(int y) { if(top>stackSize) { cout<<"stack full"<<endl; return; } else { top++; stack[top]=y; } } int pop() { int a; if(top<=0) { cout<<"stack is empty"<<endl; return 0; } else { a=stack[top]; top--; } return(a); }


Can stack be as a pointer?

A stack is a data structure in which last item inserted is taken out first . That's why they are known as LIFO (last in first out). Inserting an item in stack is termed as push and taking an item out from stack I s termed as pop. Stack pointer is the pointer that points to the top of the stack or that points the item at the top of the stack and help in adding or deleting the item from the top of stack.


How is the stack and stack pointer work?

A stack is a data structure in which last item inserted is taken out first . That's why they are known as LIFO (last in first out). Inserting an item in stack is termed as push and taking an item out from stack I s termed as pop. Stack pointer is the pointer that points to the top of the stack or that points the item at the top of the stack and help in adding or deleting the item from the top of stack.


What is stack space?

A type of RAM that is organized as a stack. or part of RAM that has software to make it operate like a stack. A stack memory operates like one of those chip dispensers they use in Los Vegas. You push the chips onto the stack. When you remove one (called a pop), it was the one on the top, the last one you put in. The first one you put in is the last one you take out. They are used by certain types of computer hardware and software that needs data accessed in that way, FILO (first in last out) and LIFO (last in first out). For example subroutine return addresses. When the CPU executes a subroutine call, the return address is pushed on the stack. The subroutine may call another subroutine, with another return address pushed on the stack. And more. then when the subroutines are exited, the addresses are POPed off the stack and executed. The use of a stack ensures the returns are all executed in the correct order.