answersLogoWhite

0

Depending on the use , Static data is data that cannot change it is Static so is usually set at the start of the program and cannot change,

In the Forth programming language the stack is the work area of memory you place data onto the stack to manipulate it (example Place 2 and 3 onto the stack, execute the + command removes the top 2 items off the stack adds them together and places the result back onto the stack.)

User Avatar

Wiki User

16y ago

Still curious? Ask our experts.

Chat with our AI personalities

EzraEzra
Faith is not about having all the answers, but learning to ask the right questions.
Chat with Ezra
MaxineMaxine
I respect you enough to keep it real.
Chat with Maxine
LaoLao
The path is yours to walk; I am only here to hold up a mirror.
Chat with Lao

Add your answer:

Earn +20 pts
Q: What is the difference between static and stack data?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Computer Science

How can I efficiently use a stack to sort elements in a data structure?

To efficiently use a stack to sort elements in a data structure, you can follow these steps: Push all elements into the stack. Create a temporary stack to store the sorted elements. While the original stack is not empty, pop an element from the original stack. Compare the popped element with the top element of the temporary stack. If the popped element is greater, push it onto the temporary stack. If the popped element is smaller, keep popping elements from the temporary stack and pushing them back onto the original stack until the temporary stack is empty or the top element is greater. Repeat steps 3-6 until the original stack is empty. The elements in the temporary stack will now be sorted in ascending order. By following these steps, you can efficiently use a stack to sort elements in a data structure.


What is the difference between data varification and data validation?

Data validation makes sure that the data is clean, correct and meaningful, while data verification ensures that all copies of the data are as good as the original.


What is the difference between data, information, and knowledge?

Data refers to raw facts and figures, information is processed data that has context and meaning, and knowledge is the understanding and application of information.


What is the difference between computer data represented by the state of a computer's electrical switches and the meaningful information that is displayed to the user?

Information requires a mind, data is a series of states in the computer. It's like the difference between hearing and listening, one requires a mind the other doesn't.


What data structures is most efficient in terms of both space and time to reverse a string of characters?

Stack