I assume you mean "stored". In each case, a total of 2 to the power 13 different numbers can be stored.
8 (assuming unsigned numbers - i.e., you don't reserve a bit for the sign).
Nobody knows what you are talking about, but if you mean what the biggest number is in a byte, it is 255 or 127. The former is only for unsigned, while the latter is the maximun if the byte is signed. If you mean how many numbers can be represented, it is 256 or 128. Again, the former is if it is unsigned and the latter is if it is signed.
Binary bits are necessary to represent 748 different numbers in the sense that binary bits are represented in digital wave form. Binary bits also have an exponent of one.
256 in total - including zero.
With 4 bits, you can represent 2^4 or 16 different numbers. This is because each bit can have 2 possible values (0 or 1), so with 4 bits you have 2 x 2 x 2 x 2 = 16 possible combinations. These numbers range from 0 to 15 in decimal representation.
8 bits if unsigned, 9 bits if signed
8 (assuming unsigned numbers - i.e., you don't reserve a bit for the sign).
2 power n
Nobody knows what you are talking about, but if you mean what the biggest number is in a byte, it is 255 or 127. The former is only for unsigned, while the latter is the maximun if the byte is signed. If you mean how many numbers can be represented, it is 256 or 128. Again, the former is if it is unsigned and the latter is if it is signed.
Whenever a computer program uses integers - for example, in a game, to store a player's score, but also for many other situations - this will internally be stored as a binary number. This number may be signed or unsigned. Some programming languages, such as Java, only use signed numbers. In other cases, the programmer may decide to use either signed or unsigned numbers, depending on his needs.
The primitive data types in C include:[signed|unsigned] char[signed|unsigned] short[signed|unsigned] int[signed|unsigned] long[signed|unsigned] long longfloatdoublelong doubleEnumerations (enum) and arrays may also be considered to be primitive types.
There are 16 decimal numbers that can be represented by 4-bits.
The maximum value represented in a 32-bit unsigned word is 232-1 = 4,294,967,295, so you can represent all numbers with 9 decimal places and some numbers with 10 decimal places in 32-bits. log(232-1) = 9.632959861 is the true answer.
11 bits (which actually allows -1024 to 1023)
1000
Binary bits are necessary to represent 748 different numbers in the sense that binary bits are represented in digital wave form. Binary bits also have an exponent of one.
The number of data lines required in a 16-bit microprocessor is 16, in the internal view, but could be something else, such as 8, in the external view. In the 8086/8088, the processor is 16 bits, and its internal data bus is 16 bits. The 8086 provides 16 bits on the external bus, but the 8088 provides 8 bits, even though they are the same internal processor - the 8088 simply uses two memory cycles to move one word. The largest number that can be represented on a 16 bit bus depends on the interpretation of that number. An unsigned 16 bit number ranges from 0 to 65535, so 65535 is the largest value when unsigned. A 16 bit two's complement signed number ranges from -32768 to +32767, so +32767 is the largest value when signed.