image not found

Oops! That page can't be found.


Directions to Solve

In the following questions choose the word which is the exact OPPOSITE of the given words.

Q1: COMMISSIONED

A Finished

B Started

C Closed

D Terminated

Q2:
What will be the output of the program (in Turbo C)?
#include<stdio.h>

int fun(int *f)
{
    *f = 10;
    return 0;
}
int main()
{
    const int arr[5] = {1, 2, 3, 4, 5};
    printf('Before modification arr[3] = %d', arr[3]);
    fun(&arr[3]);
    printf('\nAfter modification arr[3] = %d', arr[3]);
    return 0;
}

A Error: Invalid parameter

B Before modification arr[3] = 4
After modification arr[3] = 10

C Error: cannot convert parameter 1 from const int * to int *

D Before modification arr[3] = 4
After modification arr[3] = 4

Q3: Convert the fractional binary number 0000.1010 to decimal.

A 0.50

B 0.625

C 0.55

D 0.10

Q4: Digital representations of numerical values of quantities may BEST be described as having characteristics:

A that vary constantly over a continuous range of values.

B that vary in constant and direct proportion to the values they represent.

C that vary in discrete steps in proportion to the values they represent.

D that are difficult to interpret because they are continuously changing.

Q5: A common instrument used in troubleshooting a digital circuit is a(n) ________.

A pulser

B logic probe

C oscilloscope

D all of the above

Q6: The parallel transmission of digital data:

A requires only one signal line between sender and receiver.

B requires as many signal lines between sender and receiver as there are data bits.

C is less expensive than the serial method of data transmission.

D is much slower than the serial transmission of data.

Q7: Convert the fractional decimal number 6.75 to binary.

A 0110.0110

B 0110.1010

C 0110.1100

D 0111.1100

Q8: What is one relative disadvantage of serial transfer?

A It is slow.

B It can only be used over very short distances.

C It requires too many conductors.

D Its interconnect system is complex.

Q9: Which format requires fewer conductors?

A Serial

B Cannot tell

C Parallel

D Both are the same

Q10: A pulse has a period of 15 ms. Its frequency is ________.

A 15 Hz

B 66.66 Hz

C 6.66 Hz

D 666.66 Hz