Practice - 5 Tasks
Answer the questions below
1fill in blank
easyComplete the code to print a message about why computing is important.
Intro to Computing
print("Computing helps us [1] problems faster.")
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing words that do not relate to fixing problems.
✗ Incorrect
The word solve fits best because computing helps us solve problems quickly.
2fill in blank
mediumComplete the code to show how computing helps in daily tasks.
Intro to Computing
tasks = ["shopping", "banking", "learning"] print("Computing makes [1] easier.")
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing unrelated words like 'games' or 'errors'.
✗ Incorrect
The word tasks fits because computing helps make daily tasks easier.
3fill in blank
hardFix the error in the code to correctly show a computing benefit.
Intro to Computing
message = "Computing connects people around the [1]" print(message)
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing words that limit connection to small places.
✗ Incorrect
The word world is correct because computing connects people globally.
4fill in blank
hardFill both blanks to complete the sentence about computing's role.
Intro to Computing
computing = {"speed": [1], "accuracy": [2]
print(computing) Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing 'slow' or 'low' which are negative qualities.
✗ Incorrect
Computing is known for being fast and having high accuracy.
5fill in blank
hardFill all three blanks to create a dictionary about computing benefits.
Intro to Computing
benefits = {"[1]": "easy", "[2]": "global", "[3]": "fast"}
print(benefits) Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up keys or choosing unrelated words like 'storage'.
✗ Incorrect
The dictionary keys communication, access, and speed represent common computing benefits.