Answer:
Your phone.
Explanation:
Samsung is ran off of Android.
Apple is ran off of IOS.
Both are operating systems.
Answer:
def funct1():
h=int(input("Enter height of the box"))
w=int(input("Enter the width of the box"))
L=int(input("Enter the length of the box"))
surface_area=2*(h*w + h*L + w*L)
return surface_area
a=funct1()
print(a)
Explanation:
Please check the answer section.
Answer:
Your answer is <em>I think </em>A) A loop
Explanation:
In computer programming, a loop is a sequence of instruction s that is continually repeated until a certain condition is reached.