0
0
Google Sheetsspreadsheet~10 mins

Why integration multiplies value in Google Sheets - Test Your Understanding

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the formula to multiply the value in cell A1 by 10.

Google Sheets
=A1[1]10
Drag options to blanks, or click blank then click option'
A+
B*
C-
D/
Attempts:
3 left
💡 Hint
Common Mistakes
Using + instead of * will add instead of multiply.
Using / will divide the value.
Using - will subtract the value.
2fill in blank
medium

Complete the formula to calculate the sum of values in cells A1 to A5.

Google Sheets
=SUM(A1[1]A5)
Drag options to blanks, or click blank then click option'
A:
B,
C;
D-
Attempts:
3 left
💡 Hint
Common Mistakes
Using a comma (,) separates arguments, not ranges.
Using a semicolon (;) is not valid for ranges.
Using a dash (-) is subtraction, not range.
3fill in blank
hard

Fix the error in the formula to multiply cell A1 by the value in B1.

Google Sheets
=A1[1]B1
Drag options to blanks, or click blank then click option'
A&
B+
C*
D-
Attempts:
3 left
💡 Hint
Common Mistakes
Using + adds values instead of multiplying.
Using & joins text strings, causing errors with numbers.
Using - subtracts values.
4fill in blank
hard

Complete the code to create a formula that multiplies the sum of A1 to A3 by the value in B1.

Google Sheets
=[1](A1:A3)*B1
Drag options to blanks, or click blank then click option'
ASUM
B+
C:
D-
Attempts:
3 left
💡 Hint
Common Mistakes
Using + instead of : to define the range.
Using - instead of : causes errors.
Not using SUM will not add the cells.
5fill in blank
hard

Fill both blanks to create a formula that multiplies the average of B1 to B4 by the sum of A1 to A3.

Google Sheets
=AVERAGE([1]:[2])*SUM(A1:A3)
Drag options to blanks, or click blank then click option'
AB1
B:
CB4
D,
Attempts:
3 left
💡 Hint
Common Mistakes
Using commas (,) instead of colon (:) to specify range.
Using incorrect cell references.
Not using SUM for the second part.