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 advised by the doctor that he should not eat rice.

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

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 Address of i
Address of j

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

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 memory chip

C key matrix

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 float state

C high impedance state

D float state and a high impedance 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 fewer flip-flops but requires more decoding circuitry

C a ring counter has an inverted feedback path

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 binary

B clock

C shift register sequencer

D johnson

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

A Loading data in two of the flip-flops

B Momentarily disabling the synchronous SET and RESET inputs

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

D Shifting the data in all flip-flops simultaneously

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 tri-state

D conversion

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 2.

B The output word decreases by 2.

C The output word increases by 1.

D The output word decreases by 1.

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

A digital clocks

B multiplexed displays

C frequency counters

D power consumption meters