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

A Divine

B Immortal

C Spiritual

D Eternal

Q2:
Point out the error in 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', e1.name);    
    e1.age=85;
    printf('%d', e1.age);
    printf('%f', e1.salary);
    return 0;
}

A Error: LValue required in strcpy

B No error

C Error: RValue required

D Error: cannot modify const object

Q3: In a binary system there are only two symbols.

A True

B False

Q4: Using digital techniques of information storage is easy.

A True

B False

Q5: One advantage of analog circuits over digital circuits is that it's easier to store data.

A True

B False

Q6: Digital circuits cannot perform logic comparisons since the circuit can have only one of two values at any instant.

A False

B True

Q7: A digital circuit will not obey a set of logic rules.

A False

B True

Q8: Circuits that exhibit the property of memory normally revert to their original state when the input is removed.

A True

B False

Q9: A logic analyzer is used to display a timing diagram.

A False

B True

Q10: Parallel transmission is faster than serial.

A True

B False