Focus: Troubleshooting as a System – Thinking Like a Program

Linked Assignment: Perfect Prompt Project (AI/Automation Capstone)


🎯 Learning Intention

I will connect the six troubleshooting steps to programming logic and learn how both depend on clear, structured input.


βœ… Success Criteria

I can explain how conditional statements in Python mirror the CompTIA troubleshooting model.


β˜€οΈ Warm-Up / Tech Journal (5 min)

β€œWhen you fix a computer issue, what’s the first question you ask β€” and why does that matter?”


🧠 Mini-Lesson (15 min)

problem = input("What seems to be wrong? ")

if problem == "no power":
    print("Check power supply and cable.")
elif problem == "no display":
    print("Check monitor and HDMI connection.")
else:
    print("Document issue for supervisor.")


πŸ›  Independent Work (25 min)