Bird
0
0

Consider this code snippet representing EV job roles and their required skills:

medium📝 Analysis Q13 of 15
EV Technology - EV Industry and Policy
Consider this code snippet representing EV job roles and their required skills:
ev_jobs = {"Engineer": ["Battery tech", "Software"], "Sales": ["Communication", "Customer service"], "Technician": ["Repair", "Diagnostics"]}
print(ev_jobs["Sales"][1])
What will be the output?
ACommunication
BCustomer service
CRepair
DDiagnostics
Step-by-Step Solution
Solution:
  1. Step 1: Understand dictionary and list indexing

    ev_jobs is a dictionary with job roles as keys and lists of skills as values. "Sales" key has ["Communication", "Customer service"].
  2. Step 2: Access the second skill in Sales list

    Index 1 in the list is "Customer service" (indexing starts at 0).
  3. Final Answer:

    Customer service -> Option B
  4. Quick Check:

    ev_jobs["Sales"][1] = Customer service [OK]
Quick Trick: Remember list index starts at 0 [OK]
Common Mistakes:
  • Using index 0 instead of 1
  • Confusing keys and values
  • Misreading list contents

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More EV Technology Quizzes