Answer:c ll d
Explanation:
cus they are inside ()--parantheses
office 2013 can intergrute directly with the cloud
Answer:
8.8 Minutes
Explanation:
10 characters per second and 80 characters per line. 80/10=8 describes how many seconds it would take per line. Then multiply the time it takes per line by the number of lines which would be 8x66. Then from there you get 528 seconds and by doing some divison you get 8.8 minutes.
Answer:
class Fighter(Spaceship):
weapon = ""
remain_fire_power = 5
Explanation:
The class "Fighter" is a python class that inherits all the variables and methods from the Spaceship class. The Fighter class is considered the child class while the Spaceship class is known as the parent class. The weapon and remain_fire_power variables are class variables unique to the fighter class and defaulted to an empty string and 5 respectively.