NET JUNE 2015 PAPER-2 SOLVED PART-3


Pages: 1 2 3 4 5


  1. Consider the given graph:

Its Minimum Cost Spanning Tree is ………………

Answer: B

Explanation.

Kruskal algo arrange weights in ascending order.

6-1->10
3-4->12
2-7->14
2-3->16
7-4->18
4-5->22
7-5->24
5-6->25
1-2->28.
put all the nodes in ascending order so that it does not form a circuit.untill all the nodes are traversed.
so nodes are.
6-1,3-4,2-7,2-3,4-5,5-6,1-2. it avoids 7-4 and 7-5 to avoid the circuit.


  1. The inorder and preorder Traversal of binary Tree are dbeafcg and abdecfg respectively. The post-order Traversal is …………

(A) dbefacg (B) debfagc

(C) dbefcga (D) debfgca

Answer: D

EXPLANATION

A

/ \

B C

/ \ / \

D E F G


  1. Level order Traversal of a rooted Tree can be done by starting from root and performing:

(A) Breadth First Search (B) Depth first search

(C) Root search (D) Deep search

Answer: A


  1. The average case occurs in the Linear Search Algorithm when:

(A) The item to be searched is in some where middle of the Array

(B) The item to be searched is not in the array

(C) The item to be searched is in the last of the array

(D) The item to be searched is either in the last or not in the array

Answer: A

Explanation.
let there are n elements to be searched linearly.
1st element will take 1 search.
2nd element will take 2 search.


n th element will take n search.

Average search will take. (1+2+3—–n)/n
= n(n+1)/2n hence approximately n/2.
when item is not there it will search whole list.
last element will take n search time.
Hence option A is the correct


  1. To determine the efficiency of an algorithm the time factor is measured by:

(A) Counting micro seconds

(B) Counting number of key operations

(C) Counting number of statements

(D) Counting kilobytes of algorithm

Answer: B


  1. Which of the following protocols is an application layer protocol that establishes, manages and terminates multimedia sessions?

(A) Session Maintenance Protocol

(B) Real – time Streaming Protocol

(C) Real – time Transport Control Protocol

(D) Session Initiation Protocol

Answer: D


  1. Match the following port numbers with their uses:

List – I List – II

(a) 23 (i) World wide web

(b) 25 (ii) Remote Login

(c) 80 (iii) USENET news

(d) 119 (iv) E-mail

(a) (b) (c) (d)

(A) (iv) (i) (ii) (iii)

(B) (ii) (i) (iv) (iii)UGC net study material

(C) (ii) (iv) (iii) (i)

(D) (ii) (iv) (i) (iii)

Answer: D


  1. Which of the following is not associated with the session layer ?

(A) Dialog control

(B) Token management

(C) Semantics of the information transmitted

(D) Synchronization

Answer: C


  1. What is the size of the ‘total length’ field in IPv 4 datagram ?

(A) 4 bits (B) 8 bits

(C) 16 bits (D) 32 bits

Answer: C


  1. Which of the following is/are restriction(s) in classless addressing ?

(A) The number of addresses needs to be a power of 2.

(B) The mask needs to be included in the address to define the block.

(C) The starting address must be divisible by the number of addresses in the block.

(D) All of the above

Answer: D


Pages: 1 2 3 4 5


Leave a comment