FUNDAMENTALS OF COMPUTER

COMPUTER PROGRAMMING FUNDAMENTALS

WHAT IS PROGRAMMING

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
Which operation does the following pseudo codes indicates?GET numberGET another numberMultiply numbersPRINT result
A
Decision.
B
Loop.
C
Nested.
D
Sequence.
Explanation: 

Detailed explanation-1: -Pseudocode is understood by the programmers of all types. it enables the programmer to concentrate only on the algorithm part of the code development. It cannot be compiled into an executable program. Example, Java code : if (i < 10) i++; pseudocode :if i is less than 10, increment i by 1.

Detailed explanation-2: -a machine-level code. a random number. a flow chart. Structured English to communicate the logic of a program.

Detailed explanation-3: -Pseudocode is sometimes used as a detailed step in the process of developing a program. It allows designers or lead programmers to express the design in great detail and provides programmers a detailed template for the next step of writing code in a specific programming language.

There is 1 question to complete.