Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a program in the java which takes as input an integer (positive or negative) in base 10, and returns a string representation in 32-bit

Write a program in the java which takes as input an integer (positive or negative) in base 10, and returns a string representation in 32-bit of the number in hexadecimal and binary. Use a twos-complement representation for negative numbers You can create an array of symbols 0-F to make it easier to figure out each digit. char digits[]=[0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F]; then digits[12] will return C You should convert the absolute value to binary first, then take the twos complement if the value is negative, then convert the binary to hexadecimal You may not use any built in conversion operators or print operators that can do the conversion automatically (i.e. NO printf(%x,number)).

Write a program in the java which takes as input a string representation of an unsigned hexadecimal number in 32 bits and returns the positive integer that is the base 10 equivalent. You do not need to worry about negative values for this question You can use a dictionary, or brute force to convert hex digits to numbers (i.e. write a function with a bunch of if statements or a select statement to deal with digits A-F. or store the values 0-F as keys in a dictionary with the values being the number the digit represents.

For both programs, all non-decimal numbers should be assumed to be 32-bit. When inputting or outputting binary or hex, please make sure the numbers represented are full 32-bit numbers. Do not leave off the leading 0s or 1s. Binary: 00001111110111010101111111011101 (32 digits) Hex: 0FDD5FDD (8 digits long)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

JDBC Database Programming With J2ee

Authors: Art Taylor

1st Edition

0130453234, 978-0130453235

More Books

Students also viewed these Databases questions