easy
medium
intermediate
advanced
good luck
100

This term refers to a set of instructions a computer follows to perform a task.

What is a program?

100

This loop runs as long as a condition is true.

What is a while loop?

100

This type of error happens while the program is running.

What is a runtime error?

100

This operator checks if two values are equal.

What is == ?

100

This protocol allows secure remote access to a system and is often automated with scripts.

What is SSH (Secure Shell)?

200

This type of programming language is easy for humans to read and write, like Python.

What is a high-level language?

200

This loop runs a specific number of times, often using a counter.

What is a for loop?

200

This structure allows multiple possible conditions to be checked.

What is an if/else or if/elif/else statement?

200

This operator is used to combine conditions where both must be true.

What is AND?

200

This Windows feature allows remote control of another computer’s desktop.

What is Remote Desktop Protocol (RDP)?

300

This symbol (# in many languages) is used to add notes that the computer ignores.

What is a comment?

300

This keyword stops a loop immediately.

What is break?

300

This is a reusable block of code designed to perform a specific task.

What is a function?

300

This operator allows one or more conditions to be true.

What is OR?

300

This type of script is commonly used in Windows to automate command-line tasks using .bat files.

What is a batch file?

400

This basic structure repeats a block of code multiple times.

What is a loop?

400

This keyword skips the rest of the current loop iteration and moves to the next one.

What is continue?

400

This term refers to storing data that can be used later in a program.

What is a variable?

400

This scripting language is commonly used for system administration and task automation on Windows systems.

What is PowerShell?

400

This practice involves writing scripts to automate repetitive IT tasks like backups or updates.

What is automation?

500

This statement is used to make decisions in code.

What is an if statement?

500

This type of error occurs when the code breaks the rules of the programming language.

What is syntax?

500

his data type represents true or false values.

What is a Boolean?

500

This scripting language is widely used for automation and works across multiple platforms.

What is Python?

500

This concept refers to verifying that code works as expected and fixing any issues found.

What is debugging?