Time Left - 09:00 mins

ISRO Quiz-15

Attempt now to get your rank among 232 students!

Question 1

The total number of states and transitions required to form a Moore machine that will produce residue mod 3?

Question 2

Proxy Firewall operates at which layer of OSI Model?

Question 3

A partial ordered relation is transitive, reflexive and

Question 4

Each personal computer has a _________ that manages the computer’s arithmetical, logical and control activities.

Question 5

The prime implicant which has at least one element that is not present in any other implicant is known as ___________

Question 6

Given √224r = 13r the value of radix r is

Question 7

A set of FDs is given for a relation R (A, B, C, D)

A → AB

AC → D

ABD → C

Then number of elements in {A, C}+ closure?

Question 8

What is the output of below program?

#include <stdio.h>

int foo(int* a, int* b)

{

int sum = *a + *b;

*b = *a;

return *a = sum - *b;

}

int main()

{

int i = 0, j = 1, k = 2, p;

p = i++ || foo(&j, &k);

printf("%d %d %d %d", i, j, k, p);

return 0;

}

  • 232 attempts
  • 2 upvotes
  • 2 comments
Nov 2GATE & PSU CS