Glucose meterA glucose meter, also referred to as a "glucometer", is a medical device for determining the approximate concentration of glucose in the blood. It can also be a strip of glucose paper dipped into a substance and measured to the glucose chart. It is a key element of glucose testing, including home blood glucose monitoring (HBGM) performed by people with diabetes mellitus or hypoglycemia. A small drop of blood, obtained from slightly piercing a fingertip with a lancet, is placed on a disposable test strip that the meter reads and uses to calculate the blood glucose level.
BiosensorA biosensor is an analytical device, used for the detection of a chemical substance, that combines a biological component with a physicochemical detector. The sensitive biological element, e.g. tissue, microorganisms, organelles, cell receptors, enzymes, antibodies, nucleic acids, etc., is a biologically derived material or biomimetic component that interacts with, binds with, or recognizes the analyte under study. The biologically sensitive elements can also be created by biological engineering.
Glucose testMany types of glucose tests exist and they can be used to estimate blood sugar levels at a given time or, over a longer period of time, to obtain average levels or to see how fast body is able to normalize changed glucose levels. Eating food for example leads to elevated blood sugar levels. In healthy people these levels quickly return to normal via increased cellular glucose uptake which is primarily mediated by increase in blood insulin levels. Glucose tests can reveal temporary/long-term hyperglycemia or hypoglycemia.
Blood glucose monitoringBlood glucose monitoring is the use of a glucose meter for testing the concentration of glucose in the blood (glycemia). Particularly important in diabetes management, a blood glucose test is typically performed by piercing the skin (typically, via fingerstick) to draw blood, then applying the blood to a chemically active disposable 'test-strip'. The other main option is continuous glucose monitoring (CGM). Different manufacturers use different technology, but most systems measure an electrical characteristic and use this to determine the glucose level in the blood.
Glucose tolerance testThe glucose tolerance test (GTT, not to be confused with GGT test) is a medical test in which glucose is given and blood samples taken afterward to determine how quickly it is cleared from the blood. The test is usually used to test for diabetes, insulin resistance, impaired beta cell function, and sometimes reactive hypoglycemia and acromegaly, or rarer disorders of carbohydrate metabolism. In the most commonly performed version of the test, an oral glucose tolerance test (OGTT), a standard dose of glucose is ingested by mouth and blood levels are checked two hours later.
GlucoseGlucose is a sugar with the molecular formula . Glucose is overall the most abundant monosaccharide, a subcategory of carbohydrates. Glucose is mainly made by plants and most algae during photosynthesis from water and carbon dioxide, using energy from sunlight, where it is used to make cellulose in cell walls, the most abundant carbohydrate in the world. In energy metabolism, glucose is the most important source of energy in all organisms. Glucose for metabolism is stored as a polymer, in plants mainly as starch and amylopectin, and in animals as glycogen.
Evaluation strategyIn a programming language, an evaluation strategy is a set of rules for evaluating expressions. The term is often used to refer to the more specific notion of a parameter-passing strategy that defines the kind of value that is passed to the function for each parameter (the binding strategy) and whether to evaluate the parameters of a function call, and if so in what order (the evaluation order). The notion of reduction strategy is distinct, although some authors conflate the two terms and the definition of each term is not widely agreed upon.
Lazy evaluationIn programming language theory, lazy evaluation, or call-by-need, is an evaluation strategy which delays the evaluation of an expression until its value is needed (non-strict evaluation) and which also avoids repeated evaluations (by the use of sharing). The benefits of lazy evaluation include: The ability to define control flow (structures) as abstractions instead of primitives. The ability to define potentially infinite data structures. This allows for more straightforward implementation of some algorithms.
Glucose 6-phosphateGlucose 6-phosphate (G6P, sometimes called the Robison ester) is a glucose sugar phosphorylated at the hydroxy group on carbon 6. This dianion is very common in cells as the majority of glucose entering a cell will become phosphorylated in this way. Because of its prominent position in cellular chemistry, glucose 6-phosphate has many possible fates within the cell. It lies at the start of two major metabolic pathways: glycolysis and the pentose phosphate pathway.
Short-circuit evaluationShort-circuit evaluation, minimal evaluation, or McCarthy evaluation (after John McCarthy) is the semantics of some Boolean operators in some programming languages in which the second argument is executed or evaluated only if the first argument does not suffice to determine the value of the expression: when the first argument of the AND function evaluates to false, the overall value must be false; and when the first argument of the OR function evaluates to true, the overall value must be true.