0
0
Prompt Engineering / GenAIml~10 mins

Career paths in GenAI - Interactive Code Practice

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

Complete the code to identify the main role responsible for building AI models.

Prompt Engineering / GenAI
role = '[1]'  # This role builds and trains AI models
Drag options to blanks, or click blank then click option'
AUX Designer
BData Scientist
CProduct Manager
DAI Researcher
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing roles that focus on product or design instead of AI model creation.
2fill in blank
medium

Complete the code to assign the role that manages AI product development.

Prompt Engineering / GenAI
role = '[1]'  # This role plans and oversees AI product features
Drag options to blanks, or click blank then click option'
AProduct Manager
BData Engineer
CAI Researcher
DData Scientist
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing with technical roles that build models or data pipelines.
3fill in blank
hard

Fix the error in the code to correctly assign the role responsible for preparing data for AI models.

Prompt Engineering / GenAI
role = '[1]'  # This role builds data pipelines and cleans data
Drag options to blanks, or click blank then click option'
AAI Researcher
BProduct Manager
CData Engineer
DData Scientist
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing roles that analyze data rather than prepare it.
4fill in blank
hard

Fill both blanks to create a dictionary mapping roles to their main focus in GenAI.

Prompt Engineering / GenAI
role_focus = {'AI Researcher': '[1]', 'Product Manager': '[2]'}
Drag options to blanks, or click blank then click option'
Abuilding models
Bmanaging product development
Ccleaning data
Ddesigning user interfaces
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing technical tasks with managerial or design tasks.
5fill in blank
hard

Fill all three blanks to create a dictionary mapping roles to their key responsibilities in GenAI.

Prompt Engineering / GenAI
role_responsibilities = {
  '[1]': 'builds and trains AI models',
  '[2]': 'prepares and cleans data',
  '[3]': 'plans AI product features'
}
Drag options to blanks, or click blank then click option'
AAI Researcher
BData Engineer
CProduct Manager
DUX Designer
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing UX Designer with technical or managerial roles.