0
0
Prompt Engineering / GenAIml~10 mins

Why responsible AI development matters in Prompt Engineering / GenAI - Test Your Understanding

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

Complete the code to print the main reason why responsible AI development is important.

Prompt Engineering / GenAI
print('Responsible AI development helps to ensure that AI systems are [1] and fair.')
Drag options to blanks, or click blank then click option'
Aexpensive
Bbiased
Cslow
Dethical
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing 'biased' because it is the opposite of fair.
Choosing 'slow' or 'expensive' which are unrelated to ethics.
2fill in blank
medium

Complete the code to identify a key risk of irresponsible AI development.

Prompt Engineering / GenAI
risk = 'AI systems may [1] certain groups unfairly if not developed responsibly.'
Drag options to blanks, or click blank then click option'
Adiscriminate
Bhelp
Csupport
Dignore
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing 'help' or 'support' which are positive actions, not risks.
Choosing 'ignore' which does not capture unfair treatment.
3fill in blank
hard

Fix the error in the code that checks if AI development follows responsible principles.

Prompt Engineering / GenAI
if ai_system.is_[1]():
    print('AI is developed responsibly')
else:
    print('AI development needs improvement')
Drag options to blanks, or click blank then click option'
Acheap
Bfast
Cethical
Dcomplex
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'fast' or 'cheap' which are unrelated to responsibility.
Using 'complex' which does not indicate ethical behavior.
4fill in blank
hard

Fill both blanks to complete the code that filters AI models based on fairness and transparency.

Prompt Engineering / GenAI
filtered_models = [model for model in models if model.is_[1]() and model.has_[2]()]
Drag options to blanks, or click blank then click option'
Afair
Bfast
Ctransparency
Daccurate
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing 'fast' or 'accurate' which are not the focus here.
Mixing up fairness and transparency terms.
5fill in blank
hard

Fill all three blanks to complete the code that creates a report on AI ethics, bias, and accountability.

Prompt Engineering / GenAI
report = {
    '[1]': ai_system.check_ethics(),
    '[2]': ai_system.detect_bias(),
    '[3]': ai_system.ensure_accountability()
}
Drag options to blanks, or click blank then click option'
Aethics
Bbias
Caccountability
Dperformance
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'performance' which is unrelated to responsibility.
Mixing up the order of keys.