A step-by-step set of instructions or rules designed to perform a particular task in computer programming.
What is algorithm
A named storage location holding different values during the running of a program, allowing for data modification.
What is a variable?
Handles specific occurrences like user actions or system events in computer science.
What is an event handler?
This type of statement allows the execution of specific code blocks based on whether a certain condition is true or false.
What is a conditional statement?
The process of identifying and fixing errors in a program to ensure proper functionality
What is debugging?
A named set of instructions or a subroutine that can be called throughout a program to perform a specific task.
What is a procedure.
This term represents a sequence of characters, such as letters, numbers, and symbols, often used to store and manipulate textual data."
What is a string?
Interface used to create and modify what a user interacts with.
What is a GUI (Graphical User Interface)?
This programming construct allows for decision-making by starting one set of instructions if a certain condition is true and another set if the condition is false."
What is if/else?
Malicious software encrypts a user's files and demands payment for their release, posing a significant threat to data security.
What is ransomware?
the values or variables that are passed into a procedure when initialized, allowing it to perform operations based on these inputs.
What are arguments?
This term represents a whole number, either positive, negative, or zero, without any decimal or fractional parts.
What is an integer?
This term refers to protective software designed to detect, prevent, and remove malicious programs, safeguarding a system from cybersecurity threats
What is an antivirus?
This iterative algorithm allows a set of instructions to be repeatedly run as long as a specified condition is true.
What is a while loop?
A self-replicating program that spreads across a network, often causing harm by consuming system resources or exploiting vulnerabilities.
What is a worm?
A section of code grouped together and treated as a single unit used in MIT App Inventor.
What is block code?
This term represents a data type that can have one of two values, typically denoted as true or false, and is often used for logical operations and decision-making.
What is a boolean?
A statement in a language that starts or invokes a procedure or function.
What is call?
Categorizes the various types of values that can be stored and manipulated in a programming language, such as integers, floats, and strings.
What is a data type?
Refers to the operation of combining two or more strings to create a new string.
What is concatenation?
A secret 'recipe' or set of instructions that outlines how to protect a system from potential threats and vulnerabilities.
What is cybersecurity?
This term represents a data type used to store numbers with decimal points or fractions, providing more precision than integers.
What is a float?
This term refers to the concept of focusing on essential properties and ignoring unnecessary details.
What is abstraction?
Refers to a symbol or keyword that performs an operation on one or more values, such as mathematical calculations or logical comparisons.
What is an operator?
Repeatedly running a set of instructions, often facilitated by loops, to achieve a specific goal or handle multiple data elements.
What is iteration?