0
0
Intro to Computingfundamentals~10 mins

Why understanding development improves collaboration in Intro to Computing - Test Your Understanding

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

Complete the code to show the first step in a development process.

Intro to Computing
def start_project():
    print("[1]")
Drag options to blanks, or click blank then click option'
ADeployment finished
BCode compiled
CPlanning started
DTesting done
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing a later step like testing or deployment.
2fill in blank
medium

Complete the code to represent collaboration between developer and tester.

Intro to Computing
def collaborate():
    developer = "writes code"
    tester = "[1]"
    return f"Developer {developer} and Tester {tester}"
Drag options to blanks, or click blank then click option'
Afinds bugs
Bdeploys code
Cignores bugs
Dplans project
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing unrelated tasks like deploying or planning.
3fill in blank
hard

Fix the error in the code that shows communication improving teamwork.

Intro to Computing
def teamwork():
    message = "Clear communication [1] teamwork"
    return message
Drag options to blanks, or click blank then click option'
Aimproves
Bignores
Chinders
Dblocks
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing negative words like hinders or blocks.
4fill in blank
hard

Fill both blanks to complete the sentence about understanding roles in development.

Intro to Computing
def roles():
    understanding = "[1] roles helps [2] collaboration"
    return understanding
Drag options to blanks, or click blank then click option'
AKnowing
Bhinder
Cimprove
DIgnoring
Attempts:
3 left
💡 Hint
Common Mistakes
Using negative words like hinder or ignoring.
5fill in blank
hard

Fill all three blanks to complete the dictionary comprehension about team roles and tasks.

Intro to Computing
team_tasks = { [1]: '[2]' for [3] in ['developer', 'tester', 'manager'] }
Drag options to blanks, or click blank then click option'
Arole
Btask
D{role: 'works'}
Attempts:
3 left
💡 Hint
Common Mistakes
Putting the whole dictionary as a value or mixing keys and values.