Question

4. If a 6-bit binary number is used to represent an analog value in the range...

4. If a 6-bit binary number is used to represent an analog value in the range from -63 to 126, what is the accuracy of the system? In other words, if the binary number is incremented by one, how much change does it represent in the analog value?

Homework Answers

Answer #1

The range of the analog value is -63 to 123 i.e. total (123+63+1)= 190 analog value is to be represented.(1 is added for the 0). Now the binary number is 6. I.e. a 6 bit binary number can represent 26 values i.e. 64 numbers can be represented by a 6 bit binary number...

therefore the accuracy of this system is

(total value can be represented/ total value is to be represented)× 100

=>(64/190) ×100

=> 33.69%

in other words, if the binary number is incremented by 1,the corresponding change in analog number will be

190/64 = 2.968

so the accuracy is (change in binary/ change in analog)

=>(1/2.968) ×100= 33.69%

If you have any doubt,you can ask me in the comment box... Thank you...

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
Question 1 a) A binary system uses 8-bits to represent an analog value ranging from 120...
Question 1 a) A binary system uses 8-bits to represent an analog value ranging from 120 ounces to 700 ounces, determine the resolution of the system and interprete your result. AP 8 makrs b) Determine the number of bits that would be needed for the above resolution to improve to better than 0.01 ounces per increment. Interpret your results. AN 7 c) Use the binary coded decimal (BCD) representation of integers to represent each of the following integers. i) 2194...
An 10-bit successive approximation A/D (Analog-to-digital) converter has the following specs: Minimum analog to digital conversion...
An 10-bit successive approximation A/D (Analog-to-digital) converter has the following specs: Minimum analog to digital conversion time 3×10^-3 second with the analog input voltage range: 0 to +6 volts. The A/D is used with a laser micrometer sensor that provides analog position feedback in the range of 0-0.02 m mapping linearly to the voltage of 0-1 volt with precision (accuracy) of 60 μm. a) What is the maximum frequency that can be sampled without aliasing (Hz)? b) What is the...
Concern the following 16-bit floating point representation: The first bit is the sign of the number...
Concern the following 16-bit floating point representation: The first bit is the sign of the number (0 = +, 1 = -), the next nine bits are the mantissa, the next bit is the sign of the exponent, and the last five bits are the magnitude of the exponent. All numbers are normalized, i.e. the first bit of the mantissa is one, except for zero which is all zeros. 1. How many significant binary digits do numbers in this representation...
6. What decimal number does the bit pattern 0xBF800000 represent if it is: A two's complement...
6. What decimal number does the bit pattern 0xBF800000 represent if it is: A two's complement integer An unsigned integer A floating point number assuming the IEE 754 single precision format PLEASE EXPLAIN AND SHOW WORK
If the word length is 4 binary bits (including sign), what decimal number does 1001 represent...
If the word length is 4 binary bits (including sign), what decimal number does 1001 represent in a. in sign and magnitude? b. in 2’s complement?
Adder Start out by picking 2 positive six bit binary numbers that are less than 3210,...
Adder Start out by picking 2 positive six bit binary numbers that are less than 3210, written in 2's complement notation. The eventual goal is to add these two numbers. 1) Look at the LSB bit of the numbers, and using logic gates (NANDs, NORs, etc.) design a circuit that correctly gives the right output for any possible combination of bits in the LSB place. 2) Now look at the next column to the left (next to LSB). In this...
QUESTION 1 During a single clock tick, how many 64-bit values can be written to an...
QUESTION 1 During a single clock tick, how many 64-bit values can be written to an input of a register file with 8 64-bit registers (i.e. an 8x64 register file)? QUESTION 2 Suppose you are designing a processor that contains a register file with 32 32-bit registers (i.e. a 32x32 register file). What is the minimum number of bits required in order to select which register is being written to? QUESTION 3 If the decimal value, 30, is shifted to...
1. (4 pts) Consider all bit strings of length six. a) How many begin with 01?...
1. (4 pts) Consider all bit strings of length six. a) How many begin with 01? b) How many begin with 01 and end with 10? c) How many begin with 01 or end with 10? d) How many have exactly three 1’s? 2. (8 pts) Suppose that a “word” is any string of six letters. Repeated letters are allowed. For our purposes, vowels are the letters a, e, i, o, and u. a) How many words are there? b)...
1. The memory units that follow are specified by the number of words times the number...
1. The memory units that follow are specified by the number of words times the number of bits per word. How many address lines and input/output data lines are needed in each case? (a) 8K X 16 (b) 2G X 8 (c) 16M X 32 (d) 256K X 64 2. Give the number of bytes stored in each memory unit in question 1. 3. Word number 563 decimal in the memory shown in Fig. 7.3 (see Mano-Ch7.pdf) contains the binary...
This assignment involves using a binary search tree (BST) to keep track of all words in...
This assignment involves using a binary search tree (BST) to keep track of all words in a text document. It produces a cross-reference, or a concordance. This is very much like assignment 4, except that you must use a different data structure. You may use some of the code you wrote for that assignment, such as input parsing, for this one. Remember that in a binary search tree, the value to the left of the root is less than the...