test_english
test_english
test_english
---
2. **Canines are front teeth used for cutting and tearing food.**
3. **Saliva makes food soft and wet enough to swallow from the mouth.**
4. **Enamel is the outermost layer of the crown in teeth and the hardest substance in our body.**
---
---
- Digestive system
- Respiratory system
- Nervous system
2. **Explain how (a) teeth (b) small intestine help in digestion of food:**
- **Teeth**: Help in chewing food into smaller pieces, making it easier to digest.
- **Small intestine**: Absorbs nutrients from digested food and transfers them to the bloodstream.
Reflection of light is the bouncing back of light rays when they hit a smooth surface like a mirror.
A solar eclipse occurs when the Moon comes between the Earth and the Sun, blocking sunlight
partially or completely.
---
### V. Think and answer:
1. **If you shine a flashlight on a red object, what color will the shadow be? Why?**
The shadow will be black because shadows are formed where light is blocked, and no light reaches
that area.
2. **A boy is trying to see a candle using a curved pipe. Will he be able to see the candle? How?**
No, the boy cannot see the candle if the pipe blocks the straight-line path of light because light
travels in a straight line.
3. **Arjun needs a lot of energy for a sport. Which type of food items should he take? Reason to take
them:**
Arjun should take energy-rich foods like carbohydrates (e.g., rice, bread) and proteins (e.g., eggs,
pulses). These provide energy and help in muscle repair.
4. **A beam of light falls on a glass, paper, and steel spoon. Which object allows light to pass through
it? Why?**
Glass allows light to pass through it because it is transparent, unlike paper and steel, which are
opaque.
- **Save energy** by turning off lights and electronics when not in use.
`tmpfs` (temporary filesystem) is a temporary, memory-backed filesystem in Linux and other Unix-like
operating systems. It uses the system's RAM (or swap if necessary) to store files, making it extremely
fast compared to disk-based storage. However, the data in `tmpfs` is **not persistent** and is lost
when the system is restarted or the filesystem is unmounted.
---
1. **Speed**: Since it resides in RAM, file access is significantly faster than disk.
3. **Dynamic Size**: Automatically adjusts its size, using only the required amount of RAM and swap
space.
4. **Efficient Use of Memory**: Unused parts of a `tmpfs` do not consume physical memory.
---
3. **Temporary Directories**: Such as `/tmp` for storing temporary system or application files.
4. **Kubernetes `emptyDir` Volumes**: When configured with `medium: "Memory"`, it uses `tmpfs`
for temporary storage.
---
You can manually create and use a `tmpfs` in Linux with the following steps:
1. **Command**:
```bash
sudo mount -t tmpfs -o size=100M tmpfs /mnt/tmpfs
```
2. **Verify**:
```bash
df -h /mnt/tmpfs
```
Output will show the size and usage of the mounted `tmpfs`.
3. **Unmount**:
```bash
```
---
When using `tmpfs` with Kubernetes, an `emptyDir` volume can be configured to use memory:
```yaml
volumes:
- name: shared-data
emptyDir:
medium: "Memory"
```
This ensures that the `emptyDir` volume is stored in RAM for fast, temporary storage.
---
Would you like to explore more examples or use cases for `tmpfs`?