Answer:
Explanation:
preventive maintenance tips in using tools and equipment.
1. Inspect tools and equipment on a regular basis so as to avoid unexpected breakdown.
2. Clean tools and equipment immediately after use. It is important to wash or clean tools after using them in order to avoid clogging of dirts on them
3. Replace tools and equipment back to their respective storage place immediately after using them
4. Lubricate your tools and equipment to avoid rusting. Lubrication means to oil especially metal tools and equipments.
5. Always follow the instructions of use and maintenance of tools and equipments as stated by the manufacturer.
Answer:
Reveal formating- A
Clear formatting-B
Apply formatting of the surrounding text-D
Format painter-C
Explanation:
Explanation:
1. A.make a list of all the websites the sources from
2. C. profile
it tells you that the sun give the msple tree energy to produce food for its leaf's and if it can no longer produce enough energy to make food for the leaf's of the maple tree then the tree will either die of no energy or die of no leaf's to give the soil's food for the tree
Answer:
n = int(input("Enter the n (positive odd integer): "))
for i in range(1, n+1, 2):
print(i*"*")
for i in range(n-2, 0, -2):
print(i*"*")
Explanation:
*The code is in Python.
Ask the user to enter the n
Create a for loop that iterates from 1 to n, incrementing by 2 in each iteration. Print the corresponding number of asterisks in each iteration
Create another for loop that iterates from n-2 to 1, decrementing by 2 in each iteration. Print the corresponding number of asterisks in each iteration