Time Left - 10:00 mins

Campus Recruitment Tech Quiz-12

Attempt now to get your rank among 245 students!

Question 1

The following problems are solved using Divide and Conquer. Match these problems to their respective recurrence relation :

Question 2

Which of the following key is used for implementing referential integrity?

Question 3

Consider a router connecting a college’s network to the Internet applies the subnet mask 255.255.252.0 to the destination address of incoming IP packets. Find the corresponding subnet for the destination IP address of packet 159.133.7.220.

Question 4

Consider the following function.

int fun(int x)

{

int i = 0;

for (i = 0; i<x; i++)

fun (x – –);

printf(“%d”, i);

return x;

}

What will be output of the fun(2) ?

Question 5

Which among the following violates the principle of encapsulation almost always?

  • 245 attempts
  • 2 upvotes
  • 5 comments
May 19GATE & PSU CS