answersLogoWhite

0

numeric means pertaining to a number or numeral and integer is a special type of number such as ...-3,-2,-1,0,1,2,3... where ... means it goes on forever.

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

What the difference between a geometric and a numeric constraint?

Nothing


What date manipulation functions returns a numeric value in SQL?

In SQL, the DATEDIFF() function returns a numeric value representing the difference between two dates in terms of days. Similarly, the DATEPART() function can return a numeric value for specific parts of a date, such as year, month, or day. Additionally, the DATEDIFF_BIG() function operates like DATEDIFF() but returns a larger integer for differences that exceed the range of a standard integer.


What is difference between number and integer?

an integer is a whole number


Is the difference between a negative integer and a positive integer always a negative integer?

sometimes


Is the difference of a positive integer and a negative integer always positive?

The difference between any numbers is always positive.


What is the difference between numeric data and non-numeric data?

Numeric data are numbers (like age, cost, etc.), while non-numeric data are not numbers (like name, address, etc.).


What are the difference between integer and a whole number?

There are no differences.


What is the difference between subtracting a negative integer and adding a positive integer?

In the end, there is no difference because subtracting a negative integer is the same as adding a positive integer. 1-(-1)=2 1+1=2


What is the difference between numeric array and associative array?

Numeric array has numbers(+integers) that represent the values Associative array has strings that represent the values


What is the difference between a whole number and integer or is it the same?

The same


The difference between two integers is at least 14 The smaller integer is 2 What is the larger integer?

x > 16


What is the difference between character '1' and integer 1 in terms of C plus plus?

Characters and integers are two different types: 'char' is an 8-bit unsigned integer (normally), while 'int' is a 16, 32 or 64-bit signed integer.Ints and chars are both integer numbers internally, but their numeric values are interpreted differently: The numeric value of the integer 1 is 1 (reasonably enough :), while the numeric value of the character '1' is 49.Characters are represented in computers by using a table mapping from integers to characters. The most common mapping is ASCII, and in the ASCII table the character 1 happens to have the numeric value 49. (I assume they didn't put it on 1 because all the values below 32 were reserved for system commands like 'bell' and 'escape'.)See related link for the ASCII table.