image not found

Oops! That page can't be found.


Directions to Solve

In the questions below the sentences have been given in Active/Passive voice. From the given alternatives, choose the one which best expresses the given sentence in Passive/Active voice.

Q1: The doctor advised the patient not to eat rice.

A The patient was being advised by the doctor that he should not rice by the doctor.

B The patient was advised by the doctor that he should not eat rice.

C The patient was advised by the doctor not to eat rice.

D The patient has been advised not to eat rice by the doctor.

Q2:
What will be the output of the program?
#include<stdio.h>
int fun(int **ptr);

int main()
{
    int i=10;
    const int *ptr = &i;
    fun(&ptr);
    return 0;
}
int fun(int **ptr)
{
    int j = 223;
    int *temp = &j;
    printf('Before changing ptr = %5x\n', *ptr);
    const *ptr = temp;
    printf('After changing ptr = %5x\n', *ptr);
    return 0;
}

A Error: cannot convert parameter 1 from 'const int **' to 'int **'

B 10
223

C Garbage value

D Address of i
Address of j

Q3: Which type of device may be used to interface a parallel data format with external equipment's serial format?

A UART

B serial-in, parallel-out

C key matrix

D memory chip

Q4: When the output of a tri-state shift register is disabled, the output level is placed in a:

A float state and a high impedance state

B LOW state

C high impedance state

D float state

Q5: A comparison between ring and johnson counters indicates that:

A a johnson counter has an inverted feedback path

B a ring counter has an inverted feedback path

C a ring counter has fewer flip-flops but requires more decoding circuitry

D a johnson counter has more flip-flops but less decoding circuitry

Q6: A sequence of equally spaced timing pulses may be easily generated by which type of counter circuit?

A clock

B shift register sequencer

C johnson

D binary

Q7: What is meant by parallel-loading the register?

A Shifting the data in all flip-flops simultaneously

B Loading data in all four flip-flops at the same time

C Momentarily disabling the synchronous SET and RESET inputs

D Loading data in two of the flip-flops

Q8: What is a shift register that will accept a parallel input and can shift data left or right called?

A conversion

B bidirectional universal

C tri-state

D end around

Q9: What happens to the parallel output word in an asynchronous binary down counter whenever a clock pulse occurs?

A The output word increases by 1.

B The output word increases by 2.

C The output word decreases by 2.

D The output word decreases by 1.

Q10: Mod-6 and mod-12 counters are most commonly used in:

A frequency counters

B multiplexed displays

C digital clocks

D power consumption meters