COMPUTER PROGRAMMING FUNDAMENTALS
WHAT IS PROGRAMMING
Question
[CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
|
|
variable
|
|
input/output
|
|
loop
|
|
conditional
|
Detailed explanation-1: -Input/Output: This will allow interaction of the program with external entities. This might be as simple as printing something out to the terminal screen, or capturing some text the user types on the keyboard, or it can involve reading and/or writing to files.
Detailed explanation-2: -Surprisingly, it can often be broken down into three simple programming structures called sequences, selections, and loops. These come together to form the most basic instructions and algorithms for all types of software.
Detailed explanation-3: -Data entered into a program, either by the programmer or digitally, are referred to as inputs . These inputs are stored in variables and used to run the program. In order to keep the user informed about what is happening inside the program, a programmer may choose to include outputs .