
What are the decimal equivalents of the following values (assume positional notation and unsigned integer formats)?...
What is the range of decimal values that can be represented by: a) 6-bit unsigned integer? b) 6-bit signed integer?
Translate 0xabcdef12 into decimal. You may simply assume that it is an unsigned integer..
ints) The following questions pertain to machine numbers (a) (2 points) For an 8-bit unsigned integer, what is the decimal equivalent of 10010101? (b) (3 points) For an S-bit signed integer, what is the decimal equivalent for the 2's compliment of 11010101? (c) (5 points) Consider an 8-bit floating point number like the one in Homework A2 (one sign bit, three exponent bits, and four assignable mantissa bits), what is the floating point number that associates with 01101 1001?
ints)...
The left-shift operator can be used to pack two character values
into an unsigned integer variable. Write a program that inputs two
characters from the keyboard and passes them to function
packCharacters. To pack two characters into an unsigned integer
variable, assign the first character to the unsigned variable,
shift the unsigned variable left by 8- bit positions and combine
the unsigned variable with the second character using the bitwise
inclusive OR operator. The program should output the characters in...
1. For the following number of bits, what is the range of unsigned and signed decimal values that can be represented? a. 12-bits b. 10-bits
What is the minimum bit-machine among the following is enough to store the unsigned integer 247: (a) 4-bit (b) 32-bit (c) 8-bit (d) 16-bit Explain your answer
write down the maximum and minimum hexidecimal and decimal values achievable for each of the following data types in C: uin8_t unsigned 8 bit integer int8_t signed 8 bit integer uin16_t unsigned 16 bit integer int32_t signed 32 bit integer explain everything
5. What is the decimal equivalent of the largest binary integer that can be obtained with a) 11 bits unsigned signed b) 25 bits? unsigned signed 6. Perform the following conversion by using base 2 instead of base 10 as the intermediate base for the conversion: a) (673.6)8 to hexadecimal b) (E7C.B)16 to octal
Convert the following Hexadecimal values to their Decimal equivalents: 33 9C FD 12 40
What is 345 as an unsigned decimal number? It is 34 with subscript of 5. Not 345! a. 8 b. 23 c. 34 d. 51 e. None of the above