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 Friendship

B Likeness

C Unnecessary

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

B 2 1
3 1
4 1
5 1
6 1

C 2 2
3 3
4 4
5 5

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

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

A Analog-to-digital conversion

B Digital-to-analog conversion

C Audio ON/OFF control

D Power supply for the audio amplifier

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

A linear ramp usage

B intermittent counter inputs

C constant analog input voltage

D faulty sample-and-hold circuitry

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

A 0.083

B 0.049

C 0.000488

D 8.33

Q6: What circuitry is on an ADC0808 IC?

A An ADC

B A multiplexer

C A 3-bit select input code

D All of the above

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 complicated circuit

B less expensive

C very fast conversion

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 255

B 8

C 1

D 127

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.