Focus: Troubleshooting as a System β Thinking Like a Program
Linked Assignment: Perfect Prompt Project (AI/Automation Capstone)
I will connect the six troubleshooting steps to programming logic and learn how both depend on clear, structured input.
I can explain how conditional statements in Python mirror the CompTIA troubleshooting model.
βWhen you fix a computer issue, whatβs the first question you ask β and why does that matter?β
Review the Six Troubleshooting Steps.
Compare human vs. program logic:
Identify β Theory β Test β Plan β Verify β Document
maps to
if β elif β else decision trees.
Demonstrate a simple Python snippet modeling troubleshooting.
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.")