Answer:
riodic Table
A museum wants to store their valuable documents in cases that contain a gas that will protect the documents.
She should not choose one of the other gases because they are too
The museum director should choose
Explanation:
I didn't understand
once you have sent the email it will only go to the server which then the person receiving it would log on therefore requesting the emails recived.
I'm not 100% sure my answer is classed as correct but I would say it doesn't go to a computer it just gets stored on a server in till requested
Answer:
# Solve the quadratic equation ax**2 + bx + c = 0
# import complex math module
import cmath
a = 1
b = 5
c = 6
# calculate the discriminant
d = (b**2) - (4*a*c)
# find two solutions
sol1 = (-b-cmath.sqrt(d))/(2*a)
sol2 = (-b+cmath.sqrt(d))/(2*a)
print('The solution are {0} and {1}'.format(sol1,sol2))
Hope This Helps!!!