Answer :
A pseudocode is simply a false code that is used as a prototype for an actual program
The incorrect statement is option (a)
Take for instance, the following pseudocode to add two numbers
input a
input b
c = a + b
display c
Using the above pseudocode as a guide, we have the following observations
- It is clear and can be easily understood
- There is no standard notation; I can decide to replace "input" with "accept", and the pseudocode will still have the same meaning
From the definition of pseudocode, I stated that it is a prototype for an actual program.
This means that, it is not a programming language
From the above explanation, we can conclude that the correct option is (a).
This is so, because a pseudocode does not have a syntax
Read more about pseudocodes at:
https://brainly.com/question/18875548