image not found

Oops! That page can't be found.


Directions to Solve

In the following questions choose the word which is the exact OPPOSITE of the given words.

Q1: ENMITY

A Unnecessary

B Likeness

C Friendship

D Important

Q2: What will be the output of the program?
#include<stdio.h>
int main()
{
    int x=1, y=1;
    for(; y; printf('%d %d\n', x, y))
    {
        y = x++ <= 5;
    }
    printf('\n');
    return 0;
}

A 2 1
3 1
4 1
5 1
6 1
7 0

B 2 2
3 3
4 4
5 5

C 2 1
3 1
4 1
5 1
6 1

D 2 1
3 1
4 1
5 1

Q3:
What function is performed by the block labeled X in the given figure?

A Power supply for the audio amplifier

B Analog-to-digital conversion

C Digital-to-analog conversion

D Audio ON/OFF control

Q4: Inaccurate A/D conversion may be due to:

A faulty sample-and-hold circuitry

B intermittent counter inputs

C linear ramp usage

D constant analog input voltage

Q5: What is the resolution, in percent, of a 12-bit DAC?

A 8.33

B 0.083

C 0.000488

D 0.049

Q6: What circuitry is on an ADC0808 IC?

A A 3-bit select input code

B All of the above

C A multiplexer

D An ADC

Q7: What is the maximum conversion time for an 8-bit successive-approximation ADC with a clock frequency of 20 kHz?

A 0.4 ms

B 6.4 ms

C 12.8 ms

D 0.05 ms

Q8: What is one advantage to using a parallel-encoded (flash) ADC?

A less expensive

B very fast conversion

C less complicated circuit

Q9: If the same analog signal is to be converted to an 8-bit resolution using a counter-ramp ADC, how many comparator circuits would be used?

A 8

B 1

C 127

D 255

Q10: What is the major advantage of the R/2R ladder D/A converter as compared to a binary-weighted D/A converter?

A It is much easier to analyze its operation.

B It has fewer parts for the same number of inputs.

C It uses only two different resistor values.

D The virtual ground is eliminated and the circuit is therefore easier to understand and troubleshoot.