This common type of data type involves using letters.
What is a string?
Subprograms help organize and simplify code with these two blocks.
What is methods and functions?
This term determines how a program moves from one part of the code to another.
What is program flow?
This term is a simple way to write out program steps in plain language.
What is pseudocode?
Sorting and searching are common types of this.
What are algorithms?
Data types that involve numbers are called this.
What is an integer?
This term is for a block of code designed to perform a specific task.
What is a function?
Key concepts in program flow include loops, conditionals, flowcharts, pseudocode and these step-by-step instructions use to solve problems.
What is an algorithm?
These chart types use symbols to show the flow of a program.
What is a flowchart?
This type of error is a mistake in the code's structure or grammar.
What is a syntax error?
True/false statements are considere this type of data.
What is Boolean?
Functions help avoid repeating code by taking inputs, called this, and return an output.
What is a parameter?
This coding term helps reduce repetitive code and automate tasks.
What is a loop?
This term is used when finding and fixing errors or bugs in code.
What is debugging?
These errors occurs while the program is running.
What are runtime errors?
This common data type involves numbers with decimals.
What is float?
This term is similar to a function but is associated with an object or class.
What is a method?
Journaling, comments and debugging are common ways to handle these issues that arise in coding.
What are errors?
This term means to repeat actions multiple times.
What is a loop?
These are mistakes in the programs' logic causing incorrect results.
What are logical errors?
These hold the data types in a computer's memory.
What is a variable?
This term performs actions related to the object they belong to. They can change the object's data or perform operations using it.
What is a method?
These statements include if, else if, and else statements.
What are conditionals?
Linear search and binary search are two types of this computer science term.
What is algorithm?
These types of messages give clues about what went wrong and where.
What are error messages?