Answer:
1. Can you tell me something about yourself?
2. What are you weaknesses?
3. If you would describe yourself in one word?
Explanation: Those questions above 1, 2, and 3 are not harmful to ask your client. Bit the last two 4 and 5 are very harmful, because you don't need to be all up in they business and you don't want to put a lot of pressure on your client.
Hope this helps☝️☝☝
To solve this problem it is necessary to apply the concepts related to density in relation to mass and volume for each of the states presented.
Density can be defined as

Where
m = Mass
V = Volume
For state one we know that




For state two we have to




Therefore the total change of mass would be



Therefore the mass of air that has entered to the tank is 6.02Kg
Answer:
def filter_only_certain_strings(data_list):
new_list = []
for data in data_list:
# fix here. change >= to >
# because we want to return strings longer than 5 characters in length.
if type(data) == str and len(data) > 5:
new_list.append(data)
return new_list
Explanation:
def filter_only_certain_strings(data_list):
new_list = []
for data in data_list:
# fix here. change >= to >
# because we want to return strings longer than 5 characters in length.
if type(data) == str and len(data) > 5:
new_list.append(data)
return new_list
Answer: Technician A, I think