The simplified function in product of sums of Boolean function F(W, X, Y,

Z) = Σ(0, 1, 2, 5, 8, 9, 10) is

(A) (W' + X') (Y' + Z') (X' + Z)

(B) (W' + X') (Y' + Z') (X' + Z')

(C) (W' + X') (Y' + Z) (X' + Z)

(D) (W' + X') (Y + Z') (X' + Z)

1 Answer

Answer :

(A) (W' + X') (Y' + Z') (X' + Z)

Related questions

Description : Simplified Boolean equation for the following truth table is: (A) F = yz’ + y’z (B) F = xy’ + x’y (C) F = x’z + xz’ (D) F = x’z + xz’ + xyz 

Last Answer : (C) F = x’z + xz’ 

Description : The dual of a Boolean expression is obtained by interchanging (A) Boolean sums and Boolean products (B) Boolean sums and Boolean products or interchanging 0's and 1's (C) Boolean sums and Boolean products and interchanging 0's & 1's (D) Interchanging 0's and 1's

Last Answer : (C) Boolean sums and Boolean products and interchanging 0's & 1's

Description : The Karnaugh map for a Boolean function is given as The simplified Boolean equation for the above Karnaugh Map is (A) AB + CD + AB’ + AD (B) AB + AC + AD + BCD (C) AB + AD + BC + ACD (D) AB + AC + BC + BCD

Last Answer : (B) AB + AC + AD + BCD

Description : The simplified form of a Boolean equation (AB’+AB’C+AC)(A’C’+B’) is : (A) AB’ (B) AB’C (C) A’B (D) ABC

Last Answer : (A) AB’

Description : When simplified with Boolean Algebra (x + y)(x + z) simplifies to (A) x (B) x + x(y + z) (C) x(1 + yz) (D) x + yz

Last Answer : Ans: D When simplified with Boolean Algebra (x + y)(x + z) simplifies to x + yz [(x + y) (x + z)] = xx + xz + xy + yz = x + xz + xy + yz (Qxx = x) = x(1+z) + xy + yz = x + xy + yz {Q(1+z) = 1} = x(1 + y) + yz = x + yz {Q(1+y) = 1}]

Description : A Boolean operator Ө is defined as follows: 1Ө1=1, 1Ө0=0, 0Ө1=0 and 0Ө0=1 What will be the truth value of the expression (xӨy)Өz = xӨ(yӨz)? (A) Always false (B) Always true (C) Sometimes true (D) True when x, y, z are all true

Last Answer : (B) Always true

Description : A pushdown automation M = (Q, Σ, Γ, δ, q0, z, F) is set to be deterministic subject to which of the following condition(s), for every q ∈ Q, a ∈ Σ ∪ {λ} and b ∈ Γ (s1) δ(q, a, b) contains at most one ... ) must be empty for every c ∈ Σ (A) only s1 (B) only s2 (C) both s1 and s2 (D) neither s1 nor s2

Last Answer : (C) both s1 and s2

Description : A Boolean function F defined on the three input variables x, y and z is 1 if and only if number of 1(one) input is even. -Technology

Last Answer : This answer was deleted by our moderators...

Description : The sum of products expansion for the function F(x, y, z) = (x + y)z’ is given as (A) x’y’z + xyz’ + x’yz’ (B) xyz + xyz’ + xy’z’ (C) xy’z’ + x’y’z’ + xyz’ (D) xyz’ + xy’z’ + x’yz’

Last Answer : (D) xyz’ + xy’z’ + x’yz’ Explanation: Use Boolean identities to expand the product and simplify. F(x, y, z)=(x + y)z’  =xz’+yz’ Distributive law  =x1z’+1yz’ Identity law  =x(y+y’)z’+(x+x’)yz’ Unit property =xyz’+xy’z’+xyz’+x’yz’ Distributive law  =xyz’+xy’z’+x’yz’ Idempotent law 

Description : Compute the value of adding the following two fuzzy integers: A = {(0.3,1), (0.6,2), (1,3), (0.7,4), (0.2,5)} B = {(0.5,11), (1,12), (0.5,13)} Where fuzzy addition is defined as μA+B(z) = maxx+y=z (min(μA(x), μB( ... ,18)} (D) {(0.3,12), (0.5,13), (0.6,14), (1,15), (0.7,16), (0.5,17), (0.2,18)}

Last Answer : (D) {(0.3,12), (0.5,13), (0.6,14), (1,15), (0.7,16), (0.5,17), (0.2,18)} 

Description : An artificial neurons receives n inputs x1, x2,...,xn with weights w1,w2,...,wn attached to the input links. The weighted sum ............... is computed to be passed on to a non-linear filter ϕ called activation function to release the output. (A) Σ wi (B) Σ xi (C) Σ wi + Σ xi (D) Σ wi . Σ xi

Last Answer : (D) Σ wi . Σ xi

Description : Suppose the function y and a fuzzy integer number around -4 for x are given as y=(x-3)2+2 Around -4={(2,0.3), (3,0.6), (4,1), (5,0.6), (6,0.3)} respectively. Then f(Around - 4) is given by: (A) {(2,0.6), (3,0.3), ... 6), (3,1), (6,0.6), (11,0.3)} (D) {(2,0.6), (3,0.3), (6,0.6), (11,0.3)}

Last Answer : (C) {(2,0.6), (3,1), (6,0.6), (11,0.3)}

Description : A three dimensional array in C' is declared as int A[x][y][z]. Here, the address of an item at the location A[p][q][r] can be computed as follows (where w is the word length of an integer): (A) &A[0][0][0]+w(y*z*q+z*p+r) (B) &A ... *q+r) (C) &A[0][0][0]+w(x*y*p+z*q+r) (D) &A[0][0][0]+w(x*y*q+z*p+r)

Last Answer : Answer: B

Description : In java, string is a ............. A) primitive data type B) abstract data type C) combination of boolean D) None of the above

Last Answer : B) abstract data type

Description : Which of the following control expressions are valid for an if statement? A) An integer expression B) A Boolean expression C) Either A or B D) Neither A nor B

Last Answer : B) A Boolean expression

Description : Which of the following control expressions are valid for an if statement? A) An integer expression B) A Boolean expression C) Either A or B D) Neither A nor B

Last Answer : B) A Boolean expression

Description : In java, ............. can only test for equality, where as ............ can evaluate any type of the Boolean expression. A) switch, if B) if, switch C) if, break D) continue, if

Last Answer : A) switch, if

Description : Which of the following control expressions are valid for an if statement? A) an integer expression B) a Boolean expression C) either A or B D) Neither A nor B

Last Answer : B) a Boolean expression

Description : Consider the following statements : (a) Boolean expressions and logic networks correspond to labelled acyclic digraphs. (b) Optimal Boolean expressions may not correspond to simplest networks. (c) Choosing essential blocks first in a Karnaugh map ... (b) only (C) (a) and (b) (D) (a), (b) and (c)

Last Answer : (D) (a), (b) and (c) 

Description : The magnitude of principal stresses due to complex stresses is (a) (1/2)[ (σ x + σ y ) ± ((σ x –σ y ) 2 + 4 τ 2 )) 0.5 ] (b) (1/2)[ (σx + σy) ± (1/2)((σx –σy) 2 + 4 τ 2 )) 0.5 ] (c) (1/2)[ (σx + σy) ± ((1/2)(σx –σy) 2 + 4 τ 2 )) 0.5 ]

Last Answer : (a) (1/2)[ (σ x + σ y ) ± ((σ x –σ y ) 2 + 4 τ 2 )) 0.5 ]

Description : How many times does the following code segment execute int x=1, y=10, z=1; do{y--; x++; y-=2; y=z; z++} while (y>1 && z

Last Answer : A) 1

Description : An object dropped from rest near the Earth's surface will fall how far in the first second: w) 4.9 meters x) 9.8 meters y) 16.0 meters z) 32 meters

Last Answer : ANSWER: W -- 4.9 METERS

Description : An object is projected vertically upward near the surface of the earth. At the very top of its path, the object's velocity is zero, and its acceleration is: w) 0 x) 9.8 meters per second squared DOWNWARD y) 9.8 meters per second squared UPWARD z) depends on the mass of the object

Last Answer : ANSWER: X -- 9.8 METERS PER SECOND SQUARED DOWNWARD

Description : Which command is used to concatenate all files beginning with the string 'emp' and followed by a non-numeric characters? A. cat emp[!0-9] B. more [emp][!0-9] C. cat emp[x-z]

Last Answer : A. cat emp[!0-9]

Description : In homogenous coordinate system (x, y, z) the points with z = 0 are called (A) Cartesian points (B) Parallel points (C) Origin point (D) Point at infinity

Last Answer : (D) Point at infinity

Description : The wind-chill index outside is -10 F when the wind blows at 20 mph and the air temperature is 20 F. To what temperature will a dry object cool when placed outside? w) 20 F x) 10 F y) -10 F z) -20 F

Last Answer : ANSWER: W -- 20 F

Description : If we convert ∃u ∀v ∀x ∃y (P(f(u),v, x, y) → Q(u,v,y)) to ∀v ∀x (P(f(a),v, x, g(v,x)) → Q(a,v,g(v,x))) This process is known as (A) Simplification (B) Unification (C) Skolemization (D) Resolution

Last Answer : (C) Skolemization

Description : If f(x, y) is a digital image, then x, y and amplitude values of f are (A) Finite (B) Infinite (C) Neither finite nor infinite (D) None of the above

Last Answer : (A) Finite

Description : In the following graph, discovery time stamps and finishing time stamps of Depth First Search (DFS) are shown as x/y where x is discovery time stamp and y is finishing time stamp.  It shows which of the following depth first forest? (A ... {a,b,e} {f,g} {c,d} {h} (D) {a,b,c,d} {e,f,g} {h}

Last Answer : Answer: A

Description : The end points of a given line are (0, 0) and (6, 18). Compute each value of y as x steps from 0 to 3, by using equation of straight line : (A) For x=0, y=0; x=1, y=3; x=2, y=6; x=3, y=9 (B) For x=0, y=1; x=1, y=3; x=2, ... x=1, y=3; x=2, y=6; x=3, y=9 (D) For x=0, y=0; x=1, y=3; x=2, y=4; x=3, y=6

Last Answer : Answer: A

Description : The most powerful earthquake ever recorded in North America had a Richter scale magnitude closest to w) 6.5 x) 7.5 y) 8.5 z) 9.5

Last Answer : ANSWER: Y -- 8.5

Description : What is the value returned by the function f given below when n = 100 ? int f(int n)  { if (n==0) then return n;  else return n + f(n-2);  } (A) 2550 (B) 2556 (C) 5220 (D) 5520

Last Answer : (A) 2550

Description : Which of the following equations is correct for Soderberg Criteria? a. (σ m / S ut ) + (σ a / S e ) = (1 / N f ) b. (σ m / S ut ) - (σ a / S e ) = (1 / N f ) c. (σ m / S yt ) + (σ a / S e ) = (1 / N f ) d. (σ m / S ut ) - (σ a / S e ) = (1 / N f )

Last Answer : c. (σ m / S yt ) + (σ a / S e ) = (1 / N f )

Description : The magnitude of maximum principal stress is a. Firstly (σ x +σ y )/2+ (1/2)( σ x +σ y ) +4τ 2 ) 5 b. Secondly (σ x +σ y )/2+ (1/2)( σ x -σ y ) 2 +4τ 2 ) 5 c. Thirdly (σ x +σ y )/2+ (1/2)( σ x +σ y ) 2 +4τ 2 ) 5 d. None

Last Answer : b. Secondly (σ x +σ y )/2+ (1/2)( σ x -σ y ) 2 +4τ 2 ) 5

Description : If a function is described by F = (3x + z, y 2 − sin x 2 z, xz + ye x5 ), then the divergence theorem value in the region 0

Last Answer : c) 39

Description : What is the output of the following? i = 5 while True: if i%0O9 == 0: break print(i) i += 1 a) 5 6 7 8 b) 5 6 7 8 9 c) 5 6 7 8 9 10 11 12 13 14 15 …. d) error

Last Answer : d) error

Description : hat is the output of the following? i = 5 while True: if i%0O11 == 0: Page No 12 break print(i) i += 1 a) 5 6 7 8 9 10 b) 5 6 7 8 c) 5 6 d) error

Last Answer : b) 5 6 7 8

Description : Consider a program that consists of 8 pages (from 0 to 7) and we have 4 page frames in the physical memory for the pages. The page reference string is :  1 2 3 2 5 6 3 4 6 3 7 3 1 5 3 6 3 4 2 4 3 4 5 ... to fill available page frames with pages): (A) 9 and 6 (B) 10 and 7 (C) 9 and 7 (D) 10 and 6

Last Answer : (B) 10 and 7

Description : The sum of product expression for a Boolean function can be derived from its truth table by (a) AND operation of the product terms. (b) NOR operation of the product terms. (c) OR operation of the product terms. (d) NAND operation of the product terms.

Last Answer : C. OR operation of the product terms

Description : If A and B are two fuzzy sets with membership functions μA(x) = {0.6, 0.5, 0.1, 0.7, 0.8} μB(x) = {0.9, 0.2, 0.6, 0.8, 0.5} Then the value of μ(A∪B)’(x) will be (A) {0.9, 0.5, 0.6, 0.8, 0.8} (B) {0.6, 0.2, 0.1, 0.7, 0.5} (C) {0.1, 0.5, 0.4, 0.2, 0.2} (D) {0.1, 0.5, 0.4, 0.2, 0.3}

Last Answer : (C) {0.1, 0.5, 0.4, 0.2, 0.2}

Description : If A and B are two fuzzy sets with membership functions µA(X) = {0.2, 0.5, 0.6, 0.1, 0.9} µB(X) = {0.1, 0.5, 0.2, 0.7, 0.8} Then the value of µA∩B will be (A) {0.2, 0.5, 0.6, 0.7, 0.9} (B) {0.2, 0.5, 0.2, 0.1, 0.8} (C) {0.1, 0.5, 0.6, 0.1, 0.8} (D) {0.1, 0.5, 0.2, 0.1, 0.8}

Last Answer : (D) {0.1, 0.5, 0.2, 0.1, 0.8}

Description : What is the DeBroglie wavelength of a 1,200 kilogram corvette traveling at a rate of 25 meters per second? Planck's constant is equal to 6.62 x 10-34 Joule-seconds. w) 5.3 x 10-32 meters x) 5.9 x 10-34 meters y) 2.1 x 10-38 meters z) 1.6 x 10-40 meters

Last Answer : ANSWER: Y -- 2.1 x 10-38 METERS

Description : The equations for principal stresses are valid only when (a)σ x and σ y are both tensile (b) σ x is compressive and σ y is tensile (c) σ x is tensile and σ y is compressive (d) None

Last Answer : (a)σ x and σ y are both tensile

Description : Which of the following formulae is used to calculate tangential stress, when a member is subjected to stress in mutually perpendicular axis and accompanied by a shear stress? a. [(σ x - σ y )/2 ]sin θ - τ cos 2θ b. [(σ x - ... τ cos 2θ c. [(σ x - σ y )/2 ]sin θ - τ 2 cos θ d. None of the above

Last Answer : c. [(σ x – σ y )/2 ]sin θ – τ 2 cos θ

Description : A child weighing 50 Newtons is on a swing. He goes from a minimum height of 0.2 meters to a maximum height of 1.5 meters. His maximum speed is closest to: w) 3 meters per second x) 5 meters per second y) 7 meters per second z) 9 meters per second

Last Answer : ANSWER: X -- 5 METERS PER SECOND

Description : A girl throws a 0.1 kilogram ball at a wall. The ball hits the wall perpendicularly with a velocity of 5 meters per second and then bounces straight back with a velocity of 4 meters per second. The ... .4 kilogram-meters per second y) 0.5 kilogram-meters per second z) 0.9 kilogram-meters per second

Last Answer : ANSWER: Z -- 0.9 KILOGRAM-METERS PER SECOND 

Description : ………………. First proposed the process of normalization. A) Edgar. W B) Edgar F. Codd C) Edward Stephen D) Edward Codd

Last Answer : B) Edgar F. Codd

Description : Consider a system with seven processes A through G and six resources R through W. Resource ownership is as follows: process A holds R and wants T process B holds nothing but wants T process C holds nothing but wants S process D holds U ... No (B) Yes, A, B, C (C) Yes, D, E, G (D) Yes, A, B, F

Last Answer : (C) Yes, D, E, G

Description : For the implementation of a paging scheme, suppose the average process size be x bytes, the page size be y bytes, and each page entry requires z bytes. The optimum page size that minimizes the total overhead due to the page ... fragmentation loss is given by (A) x/2 (B) xz/2 (C) √2xz (D) (√xz)/2

Last Answer : (C) √2xz