Computer Science - Operating Systems Concepts - Discussion

Discussion Forum : Operating Systems Concepts - Section 5 (Q.No. 42)
42.
Which of the following is true about pseudocode
A machine language
An assembly language
A high-level language
All of the above
None of the above
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
4 comments Page 1 of 1.

Sundar said:   1 decade ago
Pseudocode - A notation resembling a simplified programming language, used in program design. It is a compact and informal high-level description of the operating principle of a computer program or other algorithm. It uses the structural conventions of a programming language, but is intended for human reading rather than machine reading.

This is an example of pseudocode (for the mathematical game bizz buzz):

For i = 1 to 100
set print_number to true
if i mod 3 = 0
print "Bizz" and set print_number to false
if i mod 5 = 0
print "Buzz" and set print_number to false
if print_number, print i
print a newline


Hope this will help you. Have a nice day!

Zulfiqar Ali Chandio said:   1 decade ago
Pseudocode is an informal high-level description of the operating principle of a computer program or other algorithm.

An algorithm is a procedure for solving a problem in terms of the actions to be executed and the order in which those actions are to be executed. An algorithm is merely the sequence of steps taken to solve a problem. The steps are normally "sequence, " "selection, " "iteration, " and a case-type statement.

Rgdg said:   1 decade ago
In which language Pseudocode is defined?

Laki chand gupta said:   10 years ago
Pseudocode used in algorithm.

Post your comments here:

Your comments will be displayed after verification.