FUNDAMENTALS OF COMPUTER

COMPUTER PROGRAMMING FUNDAMENTALS

WHAT IS PROGRAMMING

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
Selection
A
A generic term for a type of programming statement (usually an if-statement) that uses a Boolean condition to determine, or select, whether or not to run a certain block of statements.
B
Putting commands in correct order so computers can read the commands.
C
To repeat in order to achieve, or get closer to, a desired goal.
D
A named group of programming instructions. Functions are reusable abstractions that reduce the complexity of writing and maintaining programs.
Explanation: 

Detailed explanation-1: -Selection-A generic term for a type of programming statement (usually an if-statement) that uses a Boolean condition to determine, or select, whether or not to run a certain block of statements. Boolean Expression-in programming, an expression that evaluates to True or False.

Detailed explanation-2: -Event handling an overarching term for the coding tasks involved in making a program respond to events by triggering functions. Event listener a command that can be set up to trigger a function when a particular type of event occurs on a particular UI element.

Detailed explanation-3: -debugging. Finding and fixing problems in an algorithm or program.

Detailed explanation-4: -Algorithm: A precise sequence of instructions for processes that can be executed by a computer and are implemented using programming languages.

Detailed explanation-5: -What should you use if you wish to execute two or more statements conditionally? A block enclosed within a pair of curly braces.

There is 1 question to complete.