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: She spoke to the official on duty.

A She was spoken to by the official on duty.

B The official was spoken to by her on duty.

C She was the official to be spoken to on duty.

D The official on duty was spoken to by her

Q2:
What will be the output of the program?
#include<stdio.h>
#include<stdlib.h>

union employee
{
    char name[15];
    int age;
    float salary;
};
const union employee e1;

int main()
{
    strcpy(e1.name, 'K');
    printf('%s %d %f', e1.name, e1.age, e1.salary);
    return 0;
}

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

B Error: LValue required in strcpy

C No error

D Error: RValue required

Q3: A technique that can be used in multiple-digit numerical displays to control suppression or display of leading or trailing zeros in the display is called _________.

A time division multiplexing

B advanced zero control

C parity generation

D ripple blanking

Q4: Parity systems are defined as either_____ or _____ and will add an extra _____ to the digital information being transmitted.

A odd, even, bit

B upper, lower, digit

C positive, negative, byte

D on, off, decimal

Q5: A device that uses a binary decoder to direct a digital signal from a single source to one of several destinations is a ________.

A demultiplexer

B multiplexer

C comparator

D encoder

Q6: A code in which each individual digit of a decimal number is represented by a 4-bit binary number is _________.

A seven-segment code

B hexadecimal

C binary coded decimal

D binary

Q7: The diodes in a seven-segment display where all cathodes are tied together and grounded are illuminated when a logic ____________________ is applied to the ____________________.

A LOW, count down control line

B HIGH, anode

C HIGH, count up control line

D LOW, anodes

Q8: A ripple counter's speed is limited by the propagation delay of:

A only circuit gates

B each flip-flop

C all flip-flops and gates

D the flip-flops only with gates

Q9: To operate correctly, starting a ring counter requires:

A clearing all the flip-flops

B presetting all the flip-flops

C clearing one flip-flop and presetting all the others

D presetting one flip-flop and clearing all the others

Q10: What type of register would shift a complete binary number in one bit at a time and shift all the stored bits out one bit at a time?

A SIPO

B SISO

C PIPO

D PISO