Time Left - 08:00 mins

ISRO Quiz 2023 37

Attempt now to get your rank among 54 students!

Question 1

What is the main reason for RACE condition while synchronizing the process?

Question 2

Consider the linked list of integers represented by the following diagram.

Run the following code with the above list of integers.

Node * Prev, * nodeToDele;

Prev = Head next;

nodeToDele = (structnode*) malloc (size of (node));

nodeToDele item = 28

nodeToDele next = Prev next;

Prev next = nodeToDele;

Assume that the following structure is used to create a node in the list.

struct Node

{

int item;

Node * next;

};

Which of the following is the effect of code?

Question 3

Consider a paging hardware with a TLB . Assume that the entire page table and all the pages are in the physical memory. If the effective memory access time is 233 msec with TLB hit ratio 0.7 and search time of TLB is 12 msec, the main memory access time is ________ (in msec).

Question 4

In order to solve Postfix Expression given below , what will be the maximum Stack size?

8 2 3 /2 3 * + 5 1 * -

Question 5

Select the option in which the given figure is embedded (rotation is NOT allowed).

  • 54 attempts
  • 0 upvotes
  • 0 comments
Dec 5GATE & PSU CS