Complete the code to show the first step in a development process.
def start_project(): print("[1]")
The first step in development is planning, so printing "Planning started" is correct.
Complete the code to represent collaboration between developer and tester.
def collaborate(): developer = "writes code" tester = "[1]" return f"Developer {developer} and Tester {tester}"
Testers find bugs to help improve the code, so "finds bugs" fits best.
Fix the error in the code that shows communication improving teamwork.
def teamwork(): message = "Clear communication [1] teamwork" return message
Clear communication improves teamwork, so "improves" is the correct word.
Fill both blanks to complete the sentence about understanding roles in development.
def roles(): understanding = "[1] roles helps [2] collaboration" return understanding
Knowing roles helps improve collaboration, so "Knowing" and "improve" are correct.
Fill all three blanks to complete the dictionary comprehension about team roles and tasks.
team_tasks = { [1]: '[2]' for [3] in ['developer', 'tester', 'manager'] }The dictionary comprehension maps each role to a task. Using 'role' as key and 'task' as value is correct.