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: EXPAND

A Convert

B Condense

C Congest

D Conclude

Q2:
Point out the error in the program (in Turbo-C).
#include<stdio.h>
#define MAX 128

int main()
{
    const int max=128;
    char array[max];
    char string[MAX];
    array[0] = string[0] = 'A';
    printf('%c %c\n', array[0], string[0]);
    return 0;
}

A None of above

B Error: unknown max in declaration/Constant expression required

C Error: invalid array string

D No error. It prints A A

Q3: X-ray, MRI, and ultrasound systems in hospitals are examples of analog systems.

A True

B False

Q4: Greater accuracy and precision are possible with digital techniques.

A True

B False

Q5: With an OR gate, the output is HIGH only when both inputs are HIGH.

A False

B True

Q6: The time interval on the leading edge of a pulse between 10% and 90% of the amplitude is the rise time.

A True

B False

Q7: Telecommunications systems do not use digital techniques.

A True

B False

Q8: The real world is mainly analog.

A True

B False

Q9: Binary means having two states or values.

A False

B True

Q10: Four bits equal one byte.

A True

B False