a bug is a coding error in a computer program.
What is a bug?
constructs are features of a programming language, which perform different computations or actions depending on whether a programmer-specified boolean condition evaluates to true or false.
What is conditional code?
a symbol that tells the compiler or interpreter to perform specific mathematical, relational and produce final result.
What is logical operator?
a series of objects all of which are the same size and type in programming.
What is a array?
A computer code introduced to a computer program to test for errors or to help determine the cause of an error
What is debugging?
A control flow statementthat allows code to be executed repeatedly based on a given Boolean condition.
What is while loop?
A computer procedure that is a lot like a recipe (called a procedure) and tells your computer precisely what steps to take to solve a problem or reach a goal.
What is algorithm?
A common method for keeping track of data so that it can be accessed quickly
What is index?
One of the three basic logic structures in computer programming.
What is sequence?
an instruction given by a user telling a computer to do something, such a run a single program or a group of linked programs
What is command?
a series of objects all of which are the same size and type.
What is array?
A formal argument, is a special kind of variable, used in a subroutine to refer to one of the pieces of data provided as input to the subroutine.
What is parameter?
a type of procedure or routine
What is function?
A value that can change, depending on conditions or on information passed to the program.
What is a variable?
an attribute of data which tells the compiler or interpreter how the programmer intends to use the data.
What is type?
the assignment of an initial value for a data object or variable
What is intialization?
Refers to creating computer programming code
What is coding?
features of a programming language, which perform different computations or actions depending on whether a programmer-specified boolean condition evaluates to true or false.
What is a condition?
a data type that has one of two possible values (usually denoted true and false),
What is Boolean?
informal high-level description of the operating principle of a computer program or other algorithm
What is pseudocode?