Compare commits
10 Commits
979768af32
...
e8787230fe
Author | SHA1 | Date | |
---|---|---|---|
![]() |
e8787230fe | ||
![]() |
28b7389515 | ||
![]() |
b5cfe462a3 | ||
![]() |
43c58e6145 | ||
![]() |
700f36f2ef | ||
![]() |
a28da01021 | ||
![]() |
d3bbe32413 | ||
![]() |
323089b58d | ||
![]() |
66ed1bfbc2 | ||
![]() |
b1f3198520 |
@ -58,11 +58,20 @@ Chemical digestion refers to the breakdown of large molecules in food into small
|
|||||||
- Enzymes usually end in -ase and begin with the name of whatever they are working to digest:
|
- Enzymes usually end in -ase and begin with the name of whatever they are working to digest:
|
||||||
- Amylase digests amylose
|
- Amylase digests amylose
|
||||||
- Maltase digests maltose
|
- Maltase digests maltose
|
||||||
|
# Nutrient Absorption
|
||||||
|
- **Simple Diffusion**: Occurs when the concentration of a particular nutrient is higher in one area than an other. This form of transport does not require energy input. Many water-soluble vitamins, lipids, and some minerals are absorbed in the digestive tract by simple diffusion.
|
||||||
|
- **Facilitated Diffusion**: Enterocytes absorb some nutrients by facilitated diffusion, another process that does not require energy. Although the nutrient moves down its concentration gradient, it still needs to be carried by a special transport protein within the membrane of the enterocyte. Absorption of simple sugar fructose occurs by facilitated diffusion
|
||||||
|
- **Active Transport**: Some nutrients move from the lumen of the intestine and into an enterocyte against the concentration gradient; that is, from low to high concentration. Absorption of these nutrients requires both a unique transport protein and energy. Enterocytes rely on active transport to absorb glucose and amino acids.
|
||||||
|
- **Endocytosis**: In a few instances, a segment of a the cell membrane of an enterocyte surrounds and swallows relatively large substances, such as intact protein molecules. This process enables an infant's intestinal tract to absorb whole proteins in human milk that provide benefits to the immune system. However, endocytosis is not a common way for nutrients to enter enterocytes.
|
||||||
|
|
||||||
# Definitions
|
# Definitions
|
||||||
| Phrase | Definition |
|
| Phrase | Definition |
|
||||||
| -------- | -------------------------------------------------------------------------------------------- |
|
| ----------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
||||||
| Lumen | The open space inside of the digestive system |
|
| Lumen | The open space inside of the digestive system |
|
||||||
| Chyme | A semiliquid mass that forms when food mixes with gastric juice. Occurs in the lower stomach |
|
| Chyme | A semiliquid mass that forms when food mixes with gastric juice. Occurs in the lower stomach |
|
||||||
| Motility | The ability of an organism to move independently |
|
| Motility | The ability of an organism to move independently |
|
||||||
|
| Gastrin | Secreted in response to food entering the stomach, it triggers parietal cells to release HCL and chief cells to release pepsinogen. *Stimulates stomach and small intestinal motility* |
|
||||||
|
| Secretin | Secreted from the small intestine in response to acidic chyme entering the duodenum and the first part of the jejunum, secretin *stimulates the release of a bicarbonate-rich solution from the liver and pancreas.* |
|
||||||
|
| Cholecystokinin | Secreted from the small intestine in response to fat and breakdown products of proteins (peptides) entering the small intestine, cholecystokinin *stimulates the release of bile from the gallbladder into the small intestine*. It also stimulates the release of pancreatic enzymes, decreases stomach secretions, and slows stomach motility. |
|
||||||
|
| Pancreas | An accessory organ of the GI tract that produces and secretes many of the enzymes that break down carbs, protein, and fat. It also secretes bicarbonate ions to neutralize the highly acidic chyme coming from the stomach. |
|
||||||
|
| Villi (singular villus) | Small finger like projections that line the inner surface of the small intestine. They help maximize the absorption of nutrients from food. They're covered in an outer layer of absorptive cells called enterocytes. |
|
||||||
|
@ -0,0 +1,58 @@
|
|||||||
|
> 1. What output does the following program fragment produce?
|
||||||
|
```c
|
||||||
|
i = 1;
|
||||||
|
while (i <= 128) {
|
||||||
|
printf("%d ", i);
|
||||||
|
i *= 2;
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
Output:
|
||||||
|
```
|
||||||
|
1 2 4 8 16 32 64 128
|
||||||
|
```
|
||||||
|
|
||||||
|
> 2. What output does the following program fragment produce?
|
||||||
|
```c
|
||||||
|
i = 9384
|
||||||
|
do {
|
||||||
|
printf("%d ", i);
|
||||||
|
i /= 10;
|
||||||
|
} while (i <= 128);
|
||||||
|
```
|
||||||
|
|
||||||
|
Output:
|
||||||
|
```
|
||||||
|
9384 938 93 9
|
||||||
|
```
|
||||||
|
|
||||||
|
> 3. What output does the following `for` statement produce?
|
||||||
|
```c
|
||||||
|
for (i = 5, j = i - 1; i > 0, j > 0; --i, j = i - 1)
|
||||||
|
printf("%d ", i);
|
||||||
|
```
|
||||||
|
|
||||||
|
Output:
|
||||||
|
```
|
||||||
|
5 4 3 2
|
||||||
|
```
|
||||||
|
|
||||||
|
> 4. Which one of the following statements is not equivalent to the other two (assuming that the loop bodies are the same?)
|
||||||
|
```c
|
||||||
|
for (i = 0; i < 10; i++) // (a)
|
||||||
|
for (i = 0; i < 10; ++i) // (b)
|
||||||
|
for (i = 0; i ++ < 10; ) // (c)
|
||||||
|
```
|
||||||
|
|
||||||
|
Answer:
|
||||||
|
C is not the same as A and B, because the increment takes place before the loop body is executed.
|
||||||
|
|
||||||
|
> 5. Which one of the following statements is not equivalent to the other two (assuming that the loop bodies are the same)?
|
||||||
|
```c
|
||||||
|
while (i < 10) {...} // (a)
|
||||||
|
for (; i < 10;) {...} // (b)
|
||||||
|
do {...} while (i < 10); // (c)
|
||||||
|
```
|
||||||
|
|
||||||
|
Answer:
|
||||||
|
C is not the same as A and B, because the block is executed before the condition is checked.
|
Loading…
x
Reference in New Issue
Block a user