What are Pseudocodes?

What are Pseudocodes?

Since each programming language uses a unique syntax structure, understanding the code of multiple languages can be difficult. Pseudocode helps this problem by using conventional syntax and basic English phrases that are universally understood Pseudocode is an informal program description that does not contain code syntax or underlying technology considerations. It summarizes a program’s steps (or flow) but excludes underlying details. Hence, By describing a program in pseudocode, programmers of all types of languages can understand the function of a program.

Ex
If student's marks is greater than or equal to 35
Print "pass"
else
Print "fail “

learn more
Algorithm and Flowcharts
Previous
Next Post »