Answer:
We will be using Average function of Excel Calculation sheet.
Its Syntax in Calc sheet is : =AVERAGE (number1, [number2], ...)
or you can use =Average and then click on the first cell and drag the whole row till end and close the brackets. It will calculate the average of that row.
Once you have applied average function on first row, you can drag this cell down the column and it will replicate the same function for respective rows.
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)