answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What happens if you assign an integer value to a variable that is too large for the verible to hold?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Math & Arithmetic

What is the term used for undefined terms?

We often call "undefined terms" variables. Their value is not known; it can vary. And thus the name we assign them is variable.


How do you solve a consecutive integer?

The following is an example of consecutive integer problems.Example 1: Consecutive Integer ProblemThe sum of the least and greatest of 3 consecutive integers is 60. What are the values of the 3 integers?Solution:Step 1: Assign variables : Let x = least integer x+ 1 = middle integer x + 2 = greatest integerTranslate sentence into an equation.Sentence: The sum of the least and greatest is 60.Rewrite sentence: x + (x + 2) = 60Step 2: Solve the equationCombine like terms 2x + 2 = 60Isolate variable x2x =58Step 3: Check your answer 29 + 29 + 2 = 60The question wants all the 3 consecutive numbers: 29, 30 and 31Answer: The 3 consecutive numbers are 29, 30 and 31.pato c napano


How do you write a function rule in algebra?

A function is any rule to assign a value (for example) to a variable "y", depending on the value of variable "x". Such a rule can be written in different ways; in algebra, it is common to write some equation, preferably one that is already solved for "y", such as: y = x2 + 3


What is plus 2 plus x cubed?

figure out what x means and then multiply x by x then add the product of that and 2 and voila you get your answer


Why are none of the measures of variability appropriate for a nominal variable?

A nominal variable is where you assign a number to a category. Imagine a variable called "animal" where 1=sheep, 2=cow, 3=dog, etc. Calculating the average, standard deviation or other continuous measures of "animal" in this context wouldn't make any sense. That is, an average "animal" of, say, 4.567 with standard deviation of 1.234 doesn't mean anything. You could, however, calculate a mode, which is the most frequently occurring category.

Related questions

In many languages it is an error to assign a real number to an integer variable True or False?

true


What happens if you assign a negative number to an unsigned variable?

You will get something like MAX_INT - number you are trying to assign.


What is the difference between Declaration and Assignment?

Declaration is basically defining data type and length and assignment is to assign the value. Below is the declaration -- var a integer /* this means we are declaring a variable a as integer data type */ a= 5 /* this is assignment,we are assigning 5 to variable a */


What is variable definition in c language?

variable definition means to declare the variable with its value. for example:- int i=10; this statement is a combination of declaration of integer i and assign its value to it,so it is a definition statement Note: assigning a value is not essential.


What happens by the 'scanf' statement in C programming language?

By using the scanf statement in c,we can take the values at run time . for ex a is a variable of type int so, we can assign the value of a using scanf at run time as follows. scanf("%d",&a); here %d is the conversion specifier for integer type.


What is the algebraic expression for 12 divided by a number?

You have to assign some variable to "some number", for example "x". Then your expression becomes 12 / x.You have to assign some variable to "some number", for example "x". Then your expression becomes 12 / x.You have to assign some variable to "some number", for example "x". Then your expression becomes 12 / x.You have to assign some variable to "some number", for example "x". Then your expression becomes 12 / x.


How do you assign value of one variable to another variable in unix?

If you are asking about shell usage, just assign the value as follows: first=5 second=2 first=$second


How can a variable be used in JAVA?

A variable is just a memory location of a valuea variable is accessed by a namesuppose of the integer type u got a variable aSoDECLARATION-int a;and then store any integer value to a.a=4;or take input from user.then perform any arithmetic function on a.a+5;returns 9;there are different variables but the essential concept behind variables is the same!


How do you assign a variable in C?

name = value example: x=1


Which axis of a graph would you assign the independent variable?

The horizontal axis.


Can you assign value to variable without using picture clause in mainframes?

No. In COBOL, any variable must be declared with PIC statement.


Which operator is use to find address of a variable?

The dereference operator. In C, we use the * operator for this. Note that the * symbol has several meanings in C (multiplication, pointer declaration and pointer dereferencing). The meaning is determined from the context in which it is used. int x, y; /* integer variables */ int* p; /* pointer variable (pointer to int) */ x = 42; /* assign a value to the x variable */ p = &x; /* assign the address of the x variable to the pointer variable p */ y = *p; /* assign the value pointed to by p (42) to the variable y */