answersLogoWhite

0


Best Answer

psuedocode is a way of organizing a program before you write it. There isn't really a set standard for it. Instead of writing a program in C write it in english.


if (the choice is equal to five)
{
printf("output reponse to user");
}

Doing this helps you to understand what your code will do and where before you actually write the program

User Avatar

Wiki User

2009-12-15 18:15:10
This answer is:
User Avatar
Study guides

What is a programming language

What does DOS stand for

What is a software that is distributed for free

What do unix and Linux have in common

➡️
See all cards
3.95
61 Reviews

Add your answer:

Earn +20 pts
Q: Give an example of pseudocode program?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Develop an algorithm to display all prime numbers from 2 to 100 Give both the pseudocode version and the flowchart version Convert your pseudocode into a Java program?

Develop an algorithm to display all prime numbers from 2 to 100. Give both the pseudocode version and the flowchart version. Convert your pseudocode into a Java program.


Give a business example of how loops can be beneficial in a program?

Give a business example of how loops can be beneficial in a program?


What are the three basic building blocks of a program?

# Algorithm # Pseudocode # Code


What is an English-like statement used to describe the logic of a program?

Pseudocode.


What has the author T E Bailey written?

T. E. Bailey has written: 'Program design with pseudocode' -- subject(s): Programming, Electronic digital computers, Electronic digitalcomputer, Pseudocode (Computer program language)


How do you write a pseudocode program for finding out x to the power of y?

X**y


What is the differences between algorithm program and pseudocode?

Pseudocode is a statement which is not language specific, Psuedocode is not syntax related, consider it a plan for the algorithm, algorithm requires perfect syntax.


Give an example of an email program?

palawan


Pseudocode could be logically incorrect if not properly indented?

The indentation doesn't affect the "logic" of the program, however it would make it make harder to read and the purpose of pseudocode is to be read.


Example of loop programs what?

give me some of the example program of programing


Could Pseudocode could be logically incorrect if not properly indented.?

The indentation doesn't affect the "logic" of the program, however it would make it make harder to read and the purpose of pseudocode is to be read.


Is pseudocode a combination of programming language and machine code?

No. Pseudocode is not used to write complete programs; rather, it is an overview of what you want to achieve. For example, the following pseudocode is for a program to print a list of square roots: for i = 1 to 10 show i, i*i A specific programming language may not have a "show" command, and the structure of the "for" loop might be different; additional setup and cleanup commands may also be required in a real computer program; the purpose of this pseudoce is merely to explain, to a human, what you want to achieve. The real code, with more detail, will have to be added later.

People also asked