answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: How many character in 16 bit integer?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the range of a 16 bit signed integer?

0 - 65535


Explain word in 16 bit word computer?

A word in a computer is the native integer for that computer. In a 16 bit computer, a word is a 16 bit integer.


How many bytes take an integer variable in C under windows?

A plain integer variable in C under windows is 2 bytes in 16 bit windows, and 4 bytes in 32 bit windows.


What is the largest integer that can be represented using a 16 bit number?

65,535


What is the largest decimal number that a two byte integer can represent?

There are 8 bits in a byte, so a two byte integer would be 16 bits. The largest 16 bit integer possible would be 11111111111111112, which is 65535 in base 10.


What is the maximum count of decimal of a 5-bit binary counter?

A 5-bit binary counter, interpreted as an unsigned integer, has a range of 0 to 31. Interpreted as a two's complement signed integer, it has a range of -16 to +15.


What does a char store?

In JavaA char in Java is a 16-bit integer, which maps to a subset of Unicode.In C A char in C is an 8-bit integer, which maps to standard ASCII.Note that in both Java and in C you can use a char value like a normal integer type: char c = 48;


What is the range of positive and negative numbers that can be represented by a 16 bit integer?

From (-215) to (215 -1). In decimal -32768 to 32767.


What is the Largest 16 bit positive number?

For an unsigned integer, that would be 216-1. For a signed integer in 2's complement notation, the largest number would be 215-1.


How many factors are there in 16?

16 has five positive integer factors. They are 1, 2, 4, 8, and 16.


Is -16 an integer or a rational number?

-16 is both a negative integer and a rational number


Why c takes integer 2 bytes java takes integer 4 byte and net takes integer 4 byte?

Because you are using a compiler (TurboC, most likely) which was developed some 25 years ago, for a 16-bit platform.