Measuring spoon

A measuring spoon is a spoon used to measure an amount of an ingredient, either liquid or dry, when cooking. Measuring spoons may be made of plastic, metal, and other materials. They are available in many sizes, including the teaspoon and tablespoon.

Metric measuring spoons
Measuring Spoons

Country differences

International

Metric measuring spoons are available in sets, usually between four and six, typically with decilitre (100 ml), tablespoon (15 ml), teaspoon (5 ml) and millilitre measures. For fractional measures, there is often a line inside to indicate "half" or "a quarter", or a separate measure may be included, like 12 dl.

United States

In the U.S., measuring spoons often come in sets, usually between four and six. This usually includes ¼, ½, and 1 teaspoon and 1 tablespoon.[1] The volume of a traditional US teaspoon is 4.9 ml and that of a tablespoon is 14.8 ml, meanwhile standardized size nowadays are 5 and 15 ml, that is almost 1.5% difference.

Japan

In Japan, usually two spoons are used: a large spoon (大さじ, Ōsaji) and a small spoon (小さじ, Kosaji or Shōsaji). A large spoon is 15 milliliters, and a small spoon is 5 milliliters. Sometimes a much smaller spoon may be used, usually a 2.5 milliliter spoon (½ small spoon).

Measuring with cutlery spoons

Cutlery in many countries includes (besides the fork and knife or butterknife) two spoons, which are referred to as a teaspoon and tablespoon — but not to be confused with measuring spoons. As cutlery, these spoons are not standardized and may hold 2.5 to 7.3 ml for teaspoons[2] and 7-20 ml for tablespoons. The difference in size can be dangerous when used for critical measuring, like medication.

gollark: It's in unsafe™ C, so you could make a mistake and doom all mankind.
gollark: Well, it's generic, obviously safer, and appears to involve less weird pointer meddling.
gollark: And 🦀Safe Rust™🦀.
gollark: See, this is much nicer.
gollark: ```rustpub struct List<T> { head: Link<T>,}type Link<T> = Option<Box<Node<T>>>;struct Node<T> { elem: T, next: Link<T>,}impl<T> List<T> { pub fn new() -> Self { List { head: None } } pub fn push(&mut self, elem: T) { let new_node = Box::new(Node { elem: elem, next: self.head.take(), }); self.head = Some(new_node); } pub fn pop(&mut self) -> Option<T> { self.head.take().map(|node| { self.head = node.next; node.elem }) }}impl<T> Drop for List<T> { fn drop(&mut self) { let mut cur_link = self.head.take(); while let Some(mut boxed_node) = cur_link { cur_link = boxed_node.next.take(); } }}```

See also

References

  1. Roupe, Diane (Oct 26, 2009). The Blue Ribbon Country Cookbook. Thomas Nelson Inc. p. 36. ISBN 9781418568214.
  2. "Spoons give wrong medicine doses". NHS UK. 15 July 2010. Retrieved 21 February 2020.


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.