PREVIOUS YEAR SOLVED PAPERS - November 2017 Paper 3

Avatto > > UGC NET COMPUTER SCIENCE > > PREVIOUS YEAR SOLVED PAPERS > > November 2017 Paper 3

46. Consider the method mcq ( ):

Cancel reply

Your email address will not be published. Required fields are marked *


Cancel reply

Your email address will not be published. Required fields are marked *


47. A simple stand - alone software utility is to be developed in ’C’ programming by a team of software experts for a computer running Linux and the overall size of this software is estimated to be 20,000 lines of code. Considering (a, b) = (2.4, 1.05) as multiplicative and exponention factor for the basic COCOMO effort estimation equation and (c, d) = (2.5, 0.38) as multiplicative and exponention factor for the basic COCOMO development time estimation equation, approximately how long does the software project take to complete ?

  • Option : B
  • Explanation :
    20000 LOC = 20k LOC
    Ef fort = a * (KLOC)b PM
    Tdev = c * (Ef fort)d Months
    Ef fort = 2.4*(20)1.05 PM = 55.756 PM
    Tdev = 2.5*(55.756)0.38 Months = 11.52 Months
Cancel reply

Your email address will not be published. Required fields are marked *


Cancel reply

Your email address will not be published. Required fields are marked *


48. In Software Configuration Management (SCM), which of the following is a use-case supported by standard version control systems?
(a) Managing several versions or releases of a software
(b) Filing bug reports and tracking their progress
(c) Allowing team members to work in parallel
(d) Identifying when and where a regression occurred

  • Option : A
  • Explanation :
    Managing several versions or releases of a software is manged by SCM Filing bug reports and tracking their progressis not manged by SCM Allowing team members to work in parallel is manged by SCM Identifying when and where a regression occurred is manged by SCM So, option (A) is correct.
Cancel reply

Your email address will not be published. Required fields are marked *


Cancel reply

Your email address will not be published. Required fields are marked *


49. Consider the following four processes with the arrival time and length of CPU burst given in milliseconds :

ProcessArrival TimeBurst Time
P108
P214
P329
P435
 The average waiting time for preemptive SJF scheduling algorithm is __________.

  • Option : A
  • Explanation :
    First we will make gantt chart of given process then we will calculate turn around time and waiting time of individual process.
    Nov2017 cs
    Now we have to calculate average waiting time for schedule:
    avg waiting time = wt(P1 + P2 + P3 + P4 )/number of process.
    ie. (9 + 0 + 15 + 2) / 4
    = 26 / 4
    = 6.5
    So, option (A) is correct.
Cancel reply

Your email address will not be published. Required fields are marked *


Cancel reply

Your email address will not be published. Required fields are marked *


50. Consider a virtual page reference string 7, 0, 1, 2, 0, 3, 0, 4, 2, 3, 0, 3, 2, 1, 2, 0, 1, 7, 0, 1 Suppose a demand paged virtual memory system running on a computer system such that the main memory has 3 page frames. Then __________ page replacement algorithm has minimum number of page faults.

  • Option : D
  • Explanation :
    Nov2017 cs
    1. In FIFO algorithm 15 page fault will occur.
    Nov2017 cs
    2. In LIFO algorithm 11 page fault will occur.
    Nov2017 cs
    3. In LRU algorithm 12 page fault will occur.
    Nov2017 cs
    4.In optimal algorithm 9 page fault will occur.
    So, option (D) will be correct.
Cancel reply

Your email address will not be published. Required fields are marked *


Cancel reply

Your email address will not be published. Required fields are marked *


Related Quiz.
November 2017 Paper 3