FUNDAMENTALS OF COMPUTER

COMPUTER PROGRAMMING FUNDAMENTALS

WHAT IS PROGRAMMING

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
Consider this example code:|if <this is true>|do this|else|do something elseThe statements in the code show an example of:
A
a compiler.
B
a flowchart.
C
syntax.
D
pseudocode.
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: -Python pseudocode is more like an algorithmic representation of the code involved. This means when a code is expected to be formulated it cannot be directly drafted. The code will need to be first generated into a Python pseudocode and then it needs to be formulated into an actual code.

There is 1 question to complete.