This term refers to a set of instructions a computer follows to perform a task.
What is a program?
This loop runs as long as a condition is true.
What is a while loop?
This type of error happens while the program is running.
What is a runtime error?
This operator checks if two values are equal.
What is == ?
This protocol allows secure remote access to a system and is often automated with scripts.
What is SSH (Secure Shell)?
This type of programming language is easy for humans to read and write, like Python.
What is a high-level language?
This loop runs a specific number of times, often using a counter.
What is a for loop?
This structure allows multiple possible conditions to be checked.
What is an if/else or if/elif/else statement?
This operator is used to combine conditions where both must be true.
What is AND?
This Windows feature allows remote control of another computer’s desktop.
What is Remote Desktop Protocol (RDP)?
This symbol (# in many languages) is used to add notes that the computer ignores.
What is a comment?
This keyword stops a loop immediately.
What is break?
This is a reusable block of code designed to perform a specific task.
What is a function?
This operator allows one or more conditions to be true.
What is OR?
This type of script is commonly used in Windows to automate command-line tasks using .bat files.
What is a batch file?
This basic structure repeats a block of code multiple times.
What is a loop?
This keyword skips the rest of the current loop iteration and moves to the next one.
What is continue?
This term refers to storing data that can be used later in a program.
What is a variable?
This scripting language is commonly used for system administration and task automation on Windows systems.
What is PowerShell?
This practice involves writing scripts to automate repetitive IT tasks like backups or updates.
What is automation?
This statement is used to make decisions in code.
What is an if statement?
This type of error occurs when the code breaks the rules of the programming language.
What is syntax?
his data type represents true or false values.
What is a Boolean?
This scripting language is widely used for automation and works across multiple platforms.
What is Python?
This concept refers to verifying that code works as expected and fixing any issues found.
What is debugging?