Question

For the following multiplication, write the hex values for the two operands encoded as 7 signed...

For the following multiplication, write the hex values for the two operands encoded as 7 signed numbers and for the result as a 2.14 number:

-0.7421875 x 0.8671875 = -0.64361572265625

What is the decimal result of the following multiplication if these hex numbers are signed 2.6 numbers?

0xA4 x 0x70 =

Homework Answers

Answer #1

For hexadecimal multiplication,here first I convert each hexa into decimal then I have done ​​​​​​​​​​​please thumb up

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
EE 263 Homework Assignment 1    Perform the following conversions: Convert 51 (decimal) to binary and...
EE 263 Homework Assignment 1    Perform the following conversions: Convert 51 (decimal) to binary and to hex Convert 0xD1 (hexadecimal) to binary and to decimal Convert 0b11001001 (binary) to hex and to decimal Find the 2’s complement of the following 4-bit numbers 1101 0101 Perform the following 4-bit unsigned operations. For each, indicate the 4-bit result and the carry bit, and indicate if the answer is correct or not. 5 + 8 2 + 12 13 – 7 4...
Assume a computer is using signed magnitude base 2 representation to store 8-bit values. Further, assume...
Assume a computer is using signed magnitude base 2 representation to store 8-bit values. Further, assume you have a program which can display the contents of 1-byte memory locations. However, the program displays hex (as a shorthand) instead of binary. What decimal values are represented by the following: (a) C3 (b) 6E Repeat the above, but assume the numbers are stored as 8-bit 2’s complement base 2.
a) I want the answers to the following parts in hex a. What is [A+4]? b....
a) I want the answers to the following parts in hex a. What is [A+4]? b. What is [B+4]? c. What is [D+4] 7) Using one byte of storage (8 bits)or 16 bits if needed, what is the binary two’s complement representation of each of the following decimal numbers? a. -111 b. -126
6. What is the orbit of 2 in the group Z_7 under multiplication modulo 7? Is...
6. What is the orbit of 2 in the group Z_7 under multiplication modulo 7? Is 2 a generator? 7. What is the residue of 101101 modulo 1101 using these as representations of polynomials with binary coefficients? 8. List all irreducible polynomials with binary coefficients of degree 4 or less. (Hint: produce a times table that shows the minimum number of products needed.) Show these as binary numbers (omitting the indeterminant) and as decimal numbers (interpreting the binary number into...
Suppose you roll, two 6-sided dice Write any probability as a decimal to three place values...
Suppose you roll, two 6-sided dice Write any probability as a decimal to three place values and the odds using a colon. Determine the following: 1. The probability that you roll a sum of seven (7) 2. The odds for rolling a sum of four (4) is 3. The odds against the numbers on both dice being the same is Suppose you have a bag with the following marbles: four (4) red, six (6) pink, two (2) green, and seven...
For each of the following propositions, write in all comparisons that make it always true among...
For each of the following propositions, write in all comparisons that make it always true among the four possibilities: < > == != If none are guaranteed to hold, please indicate that explicitly by marking it with an X. Assume the variables are declared with int x,y; and initialized to some unknown values. You may assume that int’s are 32 bits wide, char’s are 8 bits wide and that right shift is arithmetical on signed numbers and logical on unsigned...
1.) Perform the following multiplication using Booth’s algorithm: (You will receive full credit only if you...
1.) Perform the following multiplication using Booth’s algorithm: (You will receive full credit only if you show all your work)      13 x -13 (a) 27/4 Using paper pencil approach and (b) simulate how a machine does this job 2.)Perform the following division as directed: (a) 27/4 using non-restoring division algorithm // we need 4 quotient bits. (b) Using Newton-Raphson algorithm find 1/d when d=0.84 // show the results of the first 3 iterations 3.) A real-time computer system has...
Write a Java swap method that could swap values of two integer variables. Do not use...
Write a Java swap method that could swap values of two integer variables. Do not use any predefined method. Also write a method call that swaps the values of the following two variables. int first = 7, second = 5;
Write spim program and execute it on mars. Your program reads two integer values x and...
Write spim program and execute it on mars. Your program reads two integer values x and y. Write a function called sum that gets x and y passed as parameters and return the sum of odd values between x and y inclusive. In addition write another function called even that gets x and y as parameters and returns the count of all even numbers between x and y inclusive. Also in main print the quotient and remainder of diving y...
(Write in C++) Write a program that reads in two numbers and, if the input is...
(Write in C++) Write a program that reads in two numbers and, if the input is valid, outputs 2 times the product of the integers that lie between the two values (including the values themselves). If either number is not an integer, or if the first number is not less than the second number, just output an error message. The sample runs below should give the idea. User inputs are in bold. Important Notes: Your program should use a loop...