Answer:
I dont see anything. What is it?
Explanation:
Answer:
The correct answer is option B. Work/employer
Explanation:
If a person received a prior job safety training, it mans that the employer of that person provided him the training.Every job has a specific job description which comes with its own safety hazards. Each company knows how to prevent accidents from happening and making sure each employee follows the company's specific safety protocol.
Therefore it is the employing company who provides the pre job safety training.
Answer:
Answered in Python
for i in range(21):
for j in range(i):
print(i, end=' ')
print(" ")
Explanation:
This iteration iterates from 1 to 20
for i in range(21):
This iteration iterates from 1 to current number
for j in range(i):
This prints the current number in the a number of times equal to itself
print(i, end=' ')
This enables printing on new line
print(" ")