answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: How do you declare a variable holding real numbers in pseudocode?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

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

floating-point variable cost


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 is long in visual basic?

Long is a kind of data type that can contain any number from 9,223,372,036,854,775,808 to 9,223,372,036,854,775,807. This means that if you declare a variable or array as a "long", then it will be able to contain these numbers.


What variable dicribes the numbers?

the variable that decribes the numbers are reallt tricky to understand but the variable is the dependent variable! (pretty sure but not completely) hope it help you!


Pseudocode for subtraction of two binary numbers?

start read a read b c=a-b print c end


What is application of arrays in C programming?

Array is used in C to store data of similar data type. Arrays are used when we want to store data in large quantities, e.g. if we want to store 100 numbers we have to declare 100 variables and remembering name of each variable is a very difficult task, here comes the array we can declare a single variable int num[100] now this variable can store 100 different or same numbers and can be accessed by referencing as num[0],num[1],num[2] and so on. So, we can say that to reduce efforts we use arrays.


What is the math term for a number a variable or a product of numbers and variables?

Term- a number, a variable, or a product of numbers and variables.


What does it mean if the mean is doubled but the standard deviation is the same?

The second set of numbers are less variable; the coefficient of variation is halved. The second set of numbers are less variable; the coefficient of variation is halved. The second set of numbers are less variable; the coefficient of variation is halved. The second set of numbers are less variable; the coefficient of variation is halved.


What two things must you normally specify in a variable declaration?

This is when you specify the name and type of the variable.Example:int number;The declaration line can also include an instantiation for that variable.Example:int number = 5;When you declare a variable or an object (particularly in OOP programming) , you set aside a chunk of memory space for the data to reside.


What is the meaning of the word variable?

Variable means something that changes. X, for example, is a variable, as it can be many different numbers.


Does a variable expression consists only of numbers?

An algebraic expression can have a mixture of numbers and variables, but it does not contain an equals sign.


What is a variable that accumulates the sum of several numbers?

A total is a variable that accumulates the sum of several numbers. Answer is based on C How to Program (6th Edition)