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 not to eat rice.

C The patient was advised by the doctor that he should not 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 Address of i
Address of j

C Garbage value

D 10
223

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

A serial-in, parallel-out

B key matrix

C memory chip

D UART

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

A LOW state

B high impedance state

C float state

D float state and a high impedance state

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

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

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 an inverted feedback path

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 binary

D johnson

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

A Loading data in two of the flip-flops

B Shifting the data in all flip-flops simultaneously

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

D Momentarily disabling the synchronous SET and RESET inputs

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

A end around

B bidirectional universal

C conversion

D tri-state

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 decreases by 1.

C The output word increases by 2.

D The output word decreases by 2.

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

A power consumption meters

B digital clocks

C multiplexed displays

D frequency counters