image not found

Oops! That page can't be found.


Directions to Solve

Each sentences below consist of a word or a phrase which is bold. It is followed by four words or phrases. Select the word or pharse which is closes to the OPPOSITE in meaning of the bold word or phrase.

Q1: The minister gave a public speech on the controversial subject to precipitate the matter.

A aggravate

B create

C defer

D push

Q2:
Point out the error in the program
#include<stdio.h>
#define SI(p, n, r) float si; si=p*n*r/100;
int main()
{
    float p=2500, r=3.5;
    int n=3;
    SI(p, n, r);
    SI(1500, 2, 2.5);
    return 0;
}

A 26250.00 7500.00

B Nothing will print

C
Error: Multiple declaration of si

D Garbage values

Q3: Which statement below best describes a Karnaugh map?

A A Karnaugh map can be used to replace Boolean rules.

B The Karnaugh map eliminates the need for using NAND and NOR gates.

C Variable complements can be eliminated by using Karnaugh maps.

D Karnaugh maps provide a visual approach to simplifying Boolean expressions.

Q4:
For a two-input XNOR gate, with the input waveforms as shown below, which output waveform is correct?

A a

B b

C c

D d

Q5: A certain BCD-to-decimal decoder has active-HIGH inputs and active-LOW outputs. Which output goes LOW when the inputs are 1001?

A 0

B 3

C 9

D None. All outputs are HIGH.

Q6:
Solve the network in the figure given below for X.

A A + BC + D

B ((A + B)C) + D

C D(A + B + C)

D (AC + BC)D

Q7: A full-adder has a Cin = 0. What are the sum () and the carry (Cout) when A = 1 and B = 1?

A  = 0, Cout = 0

B  = 0, Cout = 1

C  = 1, Cout = 0

D  = 1, Cout = 1

Q8:
What type of logic circuit is represented by the figure shown below?

A XOR

B XNOR

C XAND

D XNAND

Q9:
The device shown here is most likely a ________.

A comparator

B multiplexer

C demultiplexer

D parity generator

Q10: The design concept of using building blocks of circuits in a PLD program is called a(n):

A hierarchical design.

B architectural design.

C digital design.

D verilog.