0
0
Excelspreadsheet~10 mins

Why clean data entry prevents errors in Excel - Test Your Understanding

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

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

Excel
=SUM([1])
Drag options to blanks, or click blank then click option'
AA1;A5
BA1:A5
CA1-A5
DA1+A5
Attempts:
3 left
💡 Hint
Common Mistakes
Using a dash '-' instead of a colon ':' for ranges.
Using a semicolon ';' which is not valid for ranges.
Adding cells with '+' instead of using a range.
2fill in blank
medium

Complete the formula to calculate the average of cells B1 to B10.

Excel
=AVERAGE([1])
Drag options to blanks, or click blank then click option'
AB1;B10
BB1+B10
CB1:B10
DB1-B10
Attempts:
3 left
💡 Hint
Common Mistakes
Using a dash '-' instead of a colon ':' for ranges.
Using a semicolon ';' which is invalid for ranges.
Adding cells with '+' instead of using a range.
3fill in blank
hard

Fix the error in the formula to count non-empty cells in C1 to C20.

Excel
=COUNTA([1])
Drag options to blanks, or click blank then click option'
AC1:C20
BC1-C20
CC1;C20
DC1+C20
Attempts:
3 left
💡 Hint
Common Mistakes
Using a dash '-' instead of a colon ':' for ranges.
Using a semicolon ';' which is invalid for ranges.
Adding cells with '+' instead of using a range.
4fill in blank
hard

Fill both blanks to create a dictionary of word lengths for words longer than 4 letters.

Excel
{word: [1] for word in words if len(word) [2] 4}
Drag options to blanks, or click blank then click option'
Alen(word)
B<=
C>
Dword
Attempts:
3 left
💡 Hint
Common Mistakes
Using word instead of len(word) for the value.
Using <= instead of > for the condition.
5fill in blank
hard

Fill all three blanks to create a dictionary of uppercase words and their lengths for words longer than 3 letters.

Excel
{ [1]: [2] for word in words if len(word) [3] 3 }
Drag options to blanks, or click blank then click option'
Aword.upper()
Blen(word)
C>
Dword
Attempts:
3 left
💡 Hint
Common Mistakes
Using word instead of word.upper() for keys.
Using <= instead of > for filtering.
Using word instead of len(word) for values.