Answer:
Labels and Safety Data Sheets.
Explanation:
Label is a short description of what is inside the container. And Safety Data Sheets has everything that is required. You have precautionary measures listed as well as the training details in the safety data sheets. The training PPE is hence not required definitely. However, the only other thing required is the label, as without that you will not come to know what is inside the container from outside. Hence, the above answer.
Answer:
<em>Alignment Attribute</em>
Explanation:
In web development (HTML), the align attribute <em>states the orientation according to the surrounding component of an < object > element.</em>
The element < object > is an insert element (it does not insert a new line on a page), which means that it can be wrapped around by text and other components.
Ted might find it easier to use this element / component to make sure his objects are well aligned.
Furthermore, defining the alignment of the < object > by the surrounding elements may be useful.
Answer:
<u>web 2.0 internet</u>
<u>Explanation:</u>
<u>Explanation:</u>
Tim O Reilly in 2004 changed the web with his web 2.0 concept which according to him at the time would allow enable the user to generate content.
Answer:
Python code is given below
Explanation:
# create an empty array
arr = []
# loop 5 times
for i in range( 0 , 5 ):
x = float(input('Enter a number : '))
# add x to arr
arr.append( x )
sum = 0
# find the sum of all elements in arr
for x in arr:
sum += x
# calculate average
average = sum / len(arr)
print('\n%15s %15s\n' %('Original Value' , 'Interest Value'))
for Original_value in arr:
# calculate interesr value
Interest_Value = Original_value * 0.2
print('%10f %15f' %( Original_value , Interest_Value ))
print('\nTotal :', sum)
print('Average :', average)
print('Maximum :', max(arr))
print('Miniimum :', min(arr))