answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What do you call the statement in pseudocode?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

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

Pseudocode.


Write a pseudocode statement that assigns the value 27 to the variable count?

count := 27


The pseudocode If-Then statement that assigns 0 to x if y is equal to 20?

Pseudocode is generally a very loosely defined concept. Various ways you can show your statement: if y = 20 then x = 0 if( y == 20 ) x = 0 if y is 20 then set x to 0


Write a pseudocode statement that assigns the sum of 10 and 14 to the variable total?

There are different ways of writing a pseudocode statement but the concept remains, it can be presented: /*Declare variables Total (number (3)) = 0 A (number (2)) =10 B (number (2)) =14 begin Total=A+B end


Write a pseudocode statement that declares the variable cost so it can hold real numbers?

floating-point variable cost


Write a pseudocode statement that multiplies the variable subtotal by 0.15 and assigns the result to the variable totalfee?

set totalfee = subtotal * 0.15


Examine the following pseudocode module header and then write a statement that calls the module passing 12 as an argument?

def main(): showvalue() def showvalue(): print '12' main()


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)


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.