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: I cannot accept your offer.

A Your offer cannot be accepted by me.

B I cannot be accepted by your offer.

C The offer cannot be accepted by me.

D Your offer cannot be accepted.

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

int main()
{
    const int x=5;
    const int *ptrx;
    ptrx = &x;
    *ptrx = 10;
    printf('%d\n', x);
    return 0;
}

A 5

B 10

C Error

D Garbage value

Q3: A ripple counter is an asynchronous counter.

A True

B False

Q4: Counters are common components in digital clocks.

A True

B False

Q5: In an asynchronous counter, each state is clocked by the same pulse.

A True

B False

Q6: An asynchronous counter differs from a synchronous counter in the method of clocking.

A True

B False

Q7: A multiplexed display circuit uses a technique called time division modulation.

A True

B False

Q8: An asynchronous decade counter increases its value by ten for each clock pulse.

A True

B False

Q9: A parallel-in, serial-out shift register enters all data bits simultaneously and transfers them out one bit at a time.

A True

B False

Q10: The modulus (mod) of a counter is the same as its maximum count (N).

A True

B False