Answer:
Left most column
Explanation:
I just did the quiz
what is computer memory measured in
Answer:
MB I think I learned it actually.
Explanation:
Examples of system software include operating systems like macos, Linux, Android and
Microsoft Windows, computational science software, game engines, industrial automation, and
software as a service applications
True
False
Fill in the blank to make the following true.
2 ** 3 =
Answer:
2 ** 3 = 8
Explanation:
Answer:
8
Explanation:
What is the velocity of a 0.100kg car with a momentum of 5 kgm/s?
Answer:
v = 50 m/s
Explanation:
p = mv
5 = 0.1v
v = 50
x = 0
while x < 4:
print(x)
x += 1
Make it a for loop
Answer: Here you go :)
Explanation:
x = 0
for n in range(4):
print(x)