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.
An integer is a whole number. There are lots of other numbers, such as fractions or rationals, and irrational numbers (such as the square root of 2)
The difference between a positive integer and a negative integer is ALWAYS positive.Suppose X and Y are positive so that -Y is negative,The the difference two numbers, A and B is A - B so the difference between X and (-Y) is X - (-Y) which equals X + Y. The sum of two positive numbers is always positive.
natural numbers can not be negative. integers can be both positive and negative.
Not necessarily. The difference between a = 7 & b = 7 is 0, and that is not a natural number.
yes!!!! s far as i know
Nothing
an integer is a whole number
sometimes
The difference between any numbers is always positive.
Numeric data are numbers (like age, cost, etc.), while non-numeric data are not numbers (like name, address, etc.).
There are no differences.
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
Numeric array has numbers(+integers) that represent the values Associative array has strings that represent the values
The same
x > 16
Signed integer is any integer that carries negative sign while unsigned integer is any integer that carries positive sign
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.