FUNDAMENTALS OF COMPUTER

COMPUTER PROGRAMMING FUNDAMENTALS

WHAT IS PROGRAMMING

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
What is the pseudo-code instruction for user to supply data to system?
A
GET or READ
B
PROCESS
C
COMPUTE or CALCULATE or DETERMINE or PROCESS
D
DISPLAY or WRITE or PRINT or SHOW
Explanation: 

Detailed explanation-1: -Pseudocode literally means ‘fake code’. It is an informal and contrived way of writing programs in which you represent the sequence of actions and instructions (aka algorithms) in a form that humans can easily understand. You see, computers and human beings are quite different, and therein lies the problem.

Detailed explanation-2: -Common pseudocode notation INPUT – indicates a user will be inputting something. OUTPUT – indicates that an output will appear on the screen. WHILE – a loop (iteration that has a condition at the beginning) FOR – a counting loop (iteration)

Detailed explanation-3: -Mathematical style pseudocode is sometimes referred to as pidgin code, for example pidgin ALGOL (the origin of the concept), pidgin Fortran, pidgin BASIC, pidgin Pascal, pidgin C, and pidgin Lisp.

There is 1 question to complete.