Consider the following C code segment: int IsPrime(n) { int i,n; for(i=2;i<= √n;i++) if(n%i == 0) { printf(“Not Prime\n”); return 0; } return 1; } Let […]
The possible number of boolean function of 3 variables X,Y and Z such that f(X,Y,Z)=f(X’,Y’,Z’) Correct Answer: B Question 15 Explanation: → Like above other input […]