Time Left - 15:00 mins

NIELIT STQC 2021 Quiz-14

Attempt now to get your rank among 211 students!

Question 1

Calculate the expectation of a discrete random variable , for which the probability function is given as

Question 2

If every two elements of a poset are comparable then the poset is called ________

Question 3

Find the probability of getting  in  of a unbiased coin.

Question 4

The number of articulation point of the following graph is:

Question 5

Scheduling is done so as to ____________

Question 6

In which of the following cases non – preemptive scheduling occurs?

Question 7

Which of the following procedure is suitable to find the longest path from a given vertex to any other given vertex in a directed acyclic graph (weighted) with few negative edge weights.

Question 8

Which engineering involves working backward through the original design process.

Question 9

A ------- is a computer program that can invade computer and perform a variety of functions ranging from annoying(e.g. popping up messages as a joke) to dangerous (e.g. deleting files or destroying your hard disk).

Question 10

What is the output of C program with structures.?

int main()

{

    struct ship

    {

        char color[10];

    }boat1, boat2;

    strcpy(boat1.color,"RED");

    printf("%s ",boat1.color);

    boat2 = boat1;

    strcpy(boat2.color,"YELLOW");

    printf("%s",boat1.color);

    return 0;

}

  • 211 attempts
  • 1 upvote
  • 2 comments
Jul 10GATE & PSU CS