Jump into concepts and practice - no test required
or
Recommended
Test this pattern10 questions across easy, medium, and hard to know if this pattern is strong
Recall & Review
beginner
What is AI safety?
AI safety means making sure AI systems work as intended and do not cause harm or behave in dangerous ways.
Click to reveal answer
beginner
Why is preventing misuse important in AI?
Preventing misuse helps stop AI from being used to harm people, spread false information, or break laws.
Click to reveal answer
intermediate
Name one way AI safety helps prevent misuse.
AI safety includes building controls that limit what AI can do, so it cannot perform harmful actions.
Click to reveal answer
beginner
How does AI safety relate to trust?
When AI is safe, people trust it more because they know it won’t cause unexpected harm or behave badly.
Click to reveal answer
intermediate
What could happen if AI safety is ignored?
Ignoring AI safety can lead to AI being used for scams, spreading fake news, or causing accidents.
Click to reveal answer
What is the main goal of AI safety?
ATo reduce AI costs
BTo make AI faster
CTo increase AI complexity
DTo make AI systems harmless and reliable
✗ Incorrect
AI safety focuses on making AI systems safe and reliable, preventing harm.
Which of these is a misuse of AI?
AHelping doctors diagnose diseases
BImproving weather forecasts
CSpreading false information online
DTranslating languages
✗ Incorrect
Spreading false information is a harmful misuse of AI.
How does AI safety help prevent misuse?
ABy adding safety controls and limits
BBy making AI slower
CBy removing AI features
DBy increasing AI size
✗ Incorrect
Safety controls help stop AI from doing harmful things.
What happens if AI is not safe?
AIt can cause harm or be misused
BIt becomes more helpful
CIt runs faster
DIt uses less energy
✗ Incorrect
Unsafe AI can cause harm or be used wrongly.
Why do people trust AI more when it is safe?
ABecause it is faster
BBecause it behaves as expected and avoids harm
CBecause it is more complex
DBecause it is more expensive
✗ Incorrect
Safe AI behaves well, so people trust it.
Explain in your own words why AI safety is important to prevent misuse.
Think about how AI can be used wrongly and how safety stops that.
You got /4 concepts.
Describe some risks that can happen if AI safety is ignored.
Consider what bad things might happen without safety.
You got /4 concepts.
Practice
(1/5)
1. Why is AI safety important in using AI systems?
easy
A. It helps prevent AI from causing harm to people.
B. It makes AI run faster on computers.
C. It increases the cost of AI development.
D. It ensures AI always gives the same answer.
Solution
Step 1: Understand the purpose of AI safety
AI safety focuses on preventing harmful effects from AI systems.
Step 2: Compare options to the purpose
Only preventing harm matches the main goal of AI safety.
Final Answer:
It helps prevent AI from causing harm to people. -> Option A
Quick Check:
AI safety = prevent harm [OK]
Hint: Focus on harm prevention as AI safety's main goal [OK]
Common Mistakes:
Confusing safety with performance improvements
Thinking safety means AI is always correct
Assuming safety increases cost only
2. Which of the following is a correct rule used in AI safety to prevent misuse?
easy
A. Hide AI decisions from users.
B. Always maximize AI speed regardless of outcome.
C. Ignore fairness to improve accuracy.
D. Ensure AI respects user privacy.
Solution
Step 1: Identify AI safety rules
AI safety includes rules like fairness, transparency, and privacy.
Step 2: Match options to safety rules
Only respecting user privacy fits as a safety rule.
Final Answer:
Ensure AI respects user privacy. -> Option D
Quick Check:
Privacy rule = Ensure AI respects user privacy. [OK]
Hint: Pick the option about privacy or fairness [OK]
Common Mistakes:
Choosing options that ignore fairness or transparency
Confusing speed or secrecy with safety
Ignoring user rights in AI use
3. Consider this Python code snippet that checks AI safety compliance:
def check_safety(data):
if 'private_info' in data:
return False
return True
result = check_safety({'name': 'Alice', 'private_info': 'secret'})
print(result)
What will be the output?
medium
A. True
B. Error
C. False
D. None
Solution
Step 1: Analyze the function check_safety
The function returns False if 'private_info' is in the data dictionary.
Step 2: Check the input dictionary
The input contains 'private_info', so the function returns False.
Final Answer:
False -> Option C
Quick Check:
Contains 'private_info' = False [OK]
Hint: Look for 'private_info' key presence to decide output [OK]
Common Mistakes:
Assuming function returns True always
Confusing key presence check logic
Expecting runtime error due to dictionary
4. The following code is meant to block AI misuse by checking if input text contains banned words. What is the error?
banned_words = ['hack', 'steal', 'attack']
def is_safe(text):
for word in banned_words:
if word in text:
return False
return True
print(is_safe('Try to Hack the system'))
medium
A. The check is case-sensitive and misses 'Hack'.
B. The banned words list is empty.
C. The function always returns True.
D. The loop does not iterate over banned_words.
Solution
Step 1: Understand the function behavior
The function checks if any banned word is in the text exactly as is.
Step 2: Identify case sensitivity issue
The input text has 'Hack' with uppercase H, but banned_words are lowercase, so 'hack' not found.
Final Answer:
The check is case-sensitive and misses 'Hack'. -> Option A
Quick Check:
Case sensitivity causes miss = The check is case-sensitive and misses 'Hack'. [OK]
Hint: Check if string comparisons ignore case [OK]
Common Mistakes:
Assuming banned_words is empty
Thinking function always returns True
Ignoring case differences in text
5. You want to design an AI chatbot that avoids misuse by filtering harmful requests. Which combined approach best improves AI safety?
hard
A. Ignore user input and always respond positively.
B. Use transparency to explain AI decisions and apply fairness to avoid bias.
C. Allow all inputs but log conversations secretly.
D. Disable all AI features to prevent any misuse.
Solution
Step 1: Evaluate each approach for safety
Ignoring input (A) or disabling AI (D) removes usefulness; secret logging (C) lacks transparency.
Step 2: Identify best combined approach
Transparency and fairness (B) are core AI safety principles to explain decisions and avoid bias.
Final Answer:
Use transparency to explain AI decisions and apply fairness to avoid bias. -> Option B