Answer:
disadvantages of security cabinet: 1. Pay scale is not up to the mark: The most common disadvantage that you can hear from everyone about the secretary job is the pay scale.
Explanation:
Three main functions are protection regulation and sensation. Protection is primary I️ believe.
<span>The first task should be done while securing the vehicle is stopping in a legal, secure, parking space.So that we can avoid conflicts in parking the vehicles.Parking in a legal space will be the extra security for our vehicle.There is no any traffic collisions while taking or parking the car.Then police won't charge any fine for our vehicle if we park in legal space.</span>
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(" ")