answersLogoWhite

0


Best Answer

const type, for instance (const double = 1.1; this you cannot change during run)

User Avatar

Wiki User

16y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: In programming what values do not change?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Distinguish between integer programming problem and linear programming problem?

Integer programming is a subset of linear programming where the feasible region is reduced to only the integer values that lie within it.


Does int mean interface in programming language?

No. In most programming languages int is a keyword used to represent integer numeric values.


What are variables in programming?

In computer programming, variables refer to a particular location in the memory that holds a value. Variables are equivalent to their assigned values.


Do laws change values or do values change laws?

In fact, laws can be establish because of values. People creat laws depending on the values of their society, so values change laws.


How do you hold values in C programming?

You hold values by storing them in variables. If you need to hold values between executions, store them in non-volatile memory, such as a disk file.


What is an array in programming?

A type construction: one or more values with the same type and name.


What is an array in C-programming?

A type construction: one or more values with the same type and name.


How is computer programming related to algebra?

Computer Programming is all about algebra. In algebra, you solve for variables like x and y in their simplest form, in programming, the variables can pass on values or accept values and give you the result.For eg:Find the area of a square with side 'a' units.In algebra: Area=a2.In Programming, the program can find the area by taking input from the user.float area,a;couta;area=a*a;cout


Can vector store string values in java programming?

A Vector can store any objects, so yes.


What is the definition of array length in the Java programming language?

When programming in Java language, you will need to use container objects to hold your specific values and these are called Arrays. The amount of values held in these containers is called the Array Length. This is generated once an Array is created and the length becomes locked.


What is the scientific definition of slope?

Change in y values over change in x values. Rise over run.


How do you get decimal values in shell programming?

use $((2#<decimal value>)) eg. $((2#101001)) will return 41