answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What can an integer variable store?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you turn a positive integer into a negative integer in programming?

Store the absolute value of the desired integer in a variable. Multiply the absolute value by two. Substract the new integer by the old integer.


Write a line of code that asks the python user to input an integer greater than 0 and store this value in a variable and display its value?

integer = input("Please input an integer greater than 0: ") print(integer)


What is the code required to convert an integer variable to a string variable in Java?

There are several different methods to convert an integer variable to a string variable in Java. For example, one can use the following code to convert an integer variable to a string variable: Integer.toString(number)


(variable) = 34?

Integer


What data type would you use for the value 40?

Integers- Used to store Numbersfor exampleDim X As IntegerX = 10lblDisplay.Text = "The Integer value store in the variable is" & x


How you can modify an integer variable value in a function?

with an assignment: variable = value variable += value variable /= -3; ...


What are variable raised to whole number powers?

They are the integer powers of that variable.


Is the value 3 a string variable?

No, it is an integer. You can save an integer value to a string variable but, in this case the value is explicitly stated to be 3.


How do you declare an integer?

datatype variable name;


If a variable has possible values -2 6 and 17 then this variable is?

If a variable has possible values -2 6 and 17 then this variable is an Integer.


What is difference between an integer variable and floting point variable?

The set of the possible values.


Can you declare printf for integer variable?

printf is declared in stdio.hFormat specifier for an integer value is %d.