Anonymous

What Is Pseudo Code?

3

3 Answers

Anonymous Profile
Anonymous answered
Pseudo code enables us to write the outline of the program
Kainat hasan Profile
Kainat hasan answered
An alternative to flowchart that has become extremely popular in recent years is pseudo code. This structured technique uses English like statements in place of the flowchart's graphic symbols.
Pseudo code looks more like a program than a flowchart. In fact, it's often easier to cod e a program from pseudo code than from a flowchart, because the former provides a code like outline of the processing to take place. As a result, the program designer has more control over the end product the program itself. Also unlike a flowchart, pseudo code is relatively easy to modify and can be embedded into the program as comments. However, flowcharts being visual are sometimes better than pseudo code for designing logically complex problems and are often faster to create.
No standard rules exist for writing pseudo code the keyword starts and stops are often used to begin and end pseudo code. A pseudo code is a technique for structured program design that uses English like statements to outline the logic of a program. All letters in start of pseudo code should be capital and form a sandwich around other processing steps, which are indented.
Anonymous Profile
Anonymous answered
Write pseudocode to represent the logic of a program that allows the user to enter a value for the radius of a circle. The program calculates the diameter by multiplying the radius by 2, and then calculates the circumference by multiplying the diameter by 3.14. The program outputs both the diameter and the circumference

Answer Question

Anonymous