Time Left - 10:00 mins

Campus Recruitment Tech Quiz- 26

Attempt now to get your rank among 153 students!

Question 1

Consider a CSMA/CD with frame size is 20 KB and transmission rate is 10 Mbps, then maximum length of the cable (km) required, if signal speed is 15 km/sec ________. (Upto 2 decimal places)

Question 2

Which of the following is not a transaction state?

Question 3

The height of a binary tree is the maximum number of edges in any root to leaf path. The maximum number of nodes in a binary tree of height h is

Question 4

Which of the following is not correct for virtual function in C++ ?

Question 5

What will be the output of the following C code?

#include <stdio.h>

int x = 5;

void main()

{

int x = 3;

m();

printf("%d", x);

}

void m()

{

x = 8;

n();

}

void n()

{

printf("%d", x);

}

  • 153 attempts
  • 0 upvotes
  • 1 comment
Jun 16GATE & PSU CS