answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What is the structure of a pseudocode?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What pseudocode keyword is used to indicate the end of a decision control structure?

end


Types of algorithm?

pseudocode


What is imitation code?

pseudocode


What is a pseudocode design tool?

SPOK (Structured Prose Organizer for KEDIT) is a pseudocode design tool. (SPOK4 at Verizon.Net)


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.


Difference between pseudocode and structured English?

structured English resembles spoken Englishwhere as pseudocode resembles programming languageWhat_are_the_differences_between_structured_English_and_pseudo_code


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.


What are sentences that appear to be written in a programming language but do not actually follow the structure of the language?

Pseudocode. It is a cross between English and a programming language, designed to be quickly written and understood without worrying about syntax.


What are the different types of pseudocode?

There are no different TYPES as I'm aware of at all. Pseudocode is nothing in particular. It's just a way of mapping out an algorithm of some kind without going into specific details about how it will be performed in any specific programming language. The nature of how one may write down their own particular brand of psedocode is heavily based on whatever language they feel most akin to using. Pseudocode is used to convey an understanding rather than getting bogged down with any specific language so pseudocode having any FORMAL structure is just an oxymoron. It's great when you trying to convey a point to a group of programers who are all writing in different languages.


What are the types of pseudocode?

There are no different TYPES as I'm aware of at all. Pseudocode is nothing in particular. It's just a way of mapping out an algorithm of some kind without going into specific details about how it will be performed in any specific programming language. The nature of how one may write down their own particular brand of psedocode is heavily based on whatever language they feel most akin to using. Pseudocode is used to convey an understanding rather than getting bogged down with any specific language so pseudocode having any FORMAL structure is just an oxymoron. It's great when you trying to convey a point to a group of programers who are all writing in different languages.


What is the difference between pseudocode and trace table?

pseudocode is a sentence-like representation of a piece of code while a trace table is a technique used to test a algorithms.


Which piece of pseudocode represents incrementing the loop control called rep?

There is no standard for pseudocode. Pseudocode is generally expected to be intuitively understood by its target audience, but it doesn't need similarity with natural language or familiar programming language. Therefore, all the following are pseudocode examples to increment a variable called rep: rep = rep + 1 add 1 to rep increment rep ++rep next rep