answersLogoWhite

0

Is -1.27 an integer

Updated: 11/5/2022
User Avatar

Wiki User

7y ago

Best Answer

No because integers are whole numbers

User Avatar

Wiki User

7y ago
This answer is:
User Avatar
More answers
User Avatar

Anonymous

Lvl 1
3y ago

Yes

This answer is:
User Avatar

User Avatar

Anonymous

Lvl 1
3y ago

Yes

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Is -1.27 an integer
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you change the fraction 127 into a decimal?

127 is an integer, and as a decimal number, it is 127.


What is range of A 8 bit signed integer?

-128 to 127


What is range of A 8-bit signed integer?

-128 to 127, in two's-complement.


What is range of 8-bit signed integer?

-128 to 127, in two's-complement.


What is the highest decimal number that can be represent by 8 binary bits?

The highest unsigned integer is 255; The highest signed integer is 127.


What are the factors of 1270?

The positive integer factors of 1270 are: 1, 2, 5, 10, 127, 254, 635, 1270


What is the range of integer char float for a 16-bit computer?

Consult your limits.h and math.h. For char it will be -128..127 or 0.255 (signed and unsigned).


What is the range of integer char float for a 16 bit computer?

Consult your limits.h and math.h. For char it will be -128..127 or 0.255 (signed and unsigned).


What are characters in c language?

1. integer values between 0 and 255 (if unsigned) 2. integer values between -128 and 127 (if signed) 3. letters, digits, symbols like a-zA-Z0-9;,.?: etc


Is 1234567 a composite number?

1234567 is indeed a composite number. Other than 1 and itself, its positive integer factors are 127 and 9721.


What are the factors of 1524?

The positive integer factors of 1524 are: 1, 2, 3, 4, 6, 12, 127, 254, 381, 508, 762, 1524


How do you convert a char to an integer in Visual Basic 2010?

A char is already an integer, so there is no conversion required. A character is simply an integer that maps to a glyph in the current code page. ASCII characters are 1 byte long and have a value in the range 0 to 127 while extended ASCII characters are in the 128 to 255 range. Wide characters (UTF16 UNICODE) characters are two bytes long and cover the range 0 to 65,535, where 0 to 127 map to the standard ASCII character set. UTF8 UNICODE characters are variable width (1 to 6 bytes in length), where 0 to 127 are single-byte characters mapping to the standard ASCII set.