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 the official to be spoken to on duty.

B She was spoken to by the official on duty.

C The official on duty was spoken to by her

D The official was spoken to by her on duty.

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 No error

B Error: RValue required

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

D Error: LValue required in strcpy

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 parity generation

C advanced zero control

D ripple blanking

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

A upper, lower, digit

B positive, negative, byte

C odd, even, bit

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 comparator

B multiplexer

C encoder

D demultiplexer

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

A hexadecimal

B binary

C binary coded decimal

D seven-segment code

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 HIGH, count up control line

B HIGH, anode

C LOW, count down 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 the flip-flops only with gates

D all flip-flops and gates

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

A presetting all the flip-flops

B presetting one flip-flop and clearing all the others

C clearing all the flip-flops

D clearing one flip-flop and presetting 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