answersLogoWhite

0


Best Answer

This system of storage, known as a 'clamp', involves burying potatoes in a shallow hole, separated by layers of straw. It is seldom used today, as it does not protect against pest damage.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

13y ago

clamp

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is a heap of potatoes stored under straw?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What are stored in heap memory?

Objects are stored in heap.


Where string is stored on Heap or Stack in java?

A String is treated as an object, meaning there is an object on the heap. Of course, the variable you define is a pointer to the object, and it is stored on the stack.A String is treated as an object, meaning there is an object on the heap. Of course, the variable you define is a pointer to the object, and it is stored on the stack.A String is treated as an object, meaning there is an object on the heap. Of course, the variable you define is a pointer to the object, and it is stored on the stack.A String is treated as an object, meaning there is an object on the heap. Of course, the variable you define is a pointer to the object, and it is stored on the stack.


In Java where do instance variables stored in memory?

An instance variable is part of an object. Therefore, it gets stored together with the object, on the heap. The heap is the part of memory which is used to store objects.An instance variable is part of an object. Therefore, it gets stored together with the object, on the heap. The heap is the part of memory which is used to store objects.An instance variable is part of an object. Therefore, it gets stored together with the object, on the heap. The heap is the part of memory which is used to store objects.An instance variable is part of an object. Therefore, it gets stored together with the object, on the heap. The heap is the part of memory which is used to store objects.


Where is a boxed value type stored?

Heap


What should you do if potatoes sprout in the compost heap?

You either turn them over so they compost or you let them grow and use them. It is better to remove potatoes from your compost heap turning them over will make no difference.


When the fn is called where the return address is stored?

heap


Where dynamic variables are stored?

Dynamic variables are stored in a memory heap allocated to them at run time.


Can you use heap to store activation record?

yes. in functional languages, activation record should be stored in heap instead of stack


What does 5 pounds of mashed potatoes look like?

it looks like 5 one pound bowls of mashed potatoes in a big heap or sumart


How Garbage collection flows and What is a heap memory?

Well, when you make an object, it is stored on the "heap". When that object has no reference variables, it is found by the garbage collector and deleted.


What is a heap?

Answer:- A sorting algorithm that works by first organizing the data to be sorted into a special type of binary tree called a heap. The heap itself has, by definition, the largest value at the top of the tree, so the heap sort algorithm must also reverse the order. It does this with the following steps:1. Remove the topmost item (the largest) and replace it with the rightmost leaf. The topmost item is stored in an array.2. Re-establish the heap.3. Repeat steps 1 and 2 until there are no more items left in the heap.The sorted elements are now stored in an array.A heap sort is especially efficient for data that is already stored in a binary tree. In most cases, however, the quick sort algorithm is more efficient.GOURAV KHARE (CHANDIGARH)gouravsonu89@gmail.com


What Linked list uses.type of memory allocation?

Linked lists use dynamic memory allocation (also called "heap memory allocation", as the linked list is stored in heap memory).