Showing posts with label cbsenet answer key computer science july 2016. Show all posts
Showing posts with label cbsenet answer key computer science july 2016. Show all posts

Saturday, December 10, 2016

UGC-NET JULY 2016 PAPER 2 QUESTIONS

UGC-NET JULY 2016 PAPER 2 QUESTIONS


Q::41. If S1 is total number of modules defined in the program architecture, S3 is the number of modules whose correct function depends on prior processing then the number of modules not dependent on prior processing is :

(1) 1 +S3/S1

(2) 1 –S3/S1

(3) 1 +S1/S3

(4) 1 –S1/S3

Answer::(2)

Q::42. The ________ model is preferred for software development when the requirements are not clear.

(1) Rapid Application Development

(2) Rational Unified Process

(3) Evolutionary Model

(4) Waterfall Model

Answer::(3)

Q::43. Which of the following is not included in waterfall model ?

(1) Requirement analysis                          (2) Risk analysis
(3) Design                                                 (4) Coding

Answer::(2)

Q::44.The cyclomatic complexity of a flow graph V(G), in terms of predicate nodes is :

(1) P + 1                               (2) P – 1
(3) P – 2                               (4) P + 2

Answer::(1)

Where P is number of predicate nodes in flow graph V(G).

Q::45. The extent to which a software tolerates the unexpected problems, is termed as :

(1) Accuracy                            (2) Reliability
(3) Correctness                        (4) Robustness

Answer::(4)

Q::46. An attacker sits between customer and Banker, and captures the information from the customer and retransmits to the banker by altering the information. This attack is called as
______.

(1) Masquerade Attack

(2) Replay Attack

(3) Passive Attack

(4) Denial of Service Attack

Answer::(2)

Q::47. Consider the following two statements :

(A) Business intelligence and Data warehousing is used for forecasting and Data mining.

(B) Business intelligence and Data warehousing is used for analysis of large volumes of sales data.

Which one of the following options is correct ?

(1) (A) is true, (B) is false.

(2) Both (A) and (B) are true.

(3) (A) is false, (B) is true.

(4) Both (A) and (B) are false.


Answer::(2)

Q::48. Pipelining improves performance by :

(1) decreasing instruction latency

(2) eliminating data hazards

(3) exploiting instruction level parallelism

(4) decreasing the cache miss rate

Answer::(3)

Q::49. Consider the following two statements :

(A) Data scrubling is a process to upgrade the quality of data, before it is moved into Data warehouse.

(B) Data scrubling is a process of rejecting data from data warehouse to create indexes.

Which one of the following options is correct ?

(1) (A) is true, (B) is false.

(2) (A) is false, (B) is true.

(3) Both (A) and (B) are false.

(4) Both (A) and (B) are true.

Answer::(1)

Q::50. Given the following statements :

(A) Strategic value of data mining is timestamping.

(B) Information collection is an expensive process in building an expert system.

Which of the following options is correct ?

(1) Both (A) and (B) are false.

(2) Both (A) and (B) are true.

(3) (A) is true, (B) is false.

(4) (A) is false, (B) is true.

Answer::(2)

                                                              
                                                       1 2 3 4 5 

UGC-NET JULY 2016 PAPER 2 QUESTIONS

UGC-NET JULY 2016 PAPER 2 QUESTIONS



Q::31.The number of strings of length 4 that are generated by the regular expression (0|∈)1+2* (3|∈), where | is an alternation character, {+, *} are quantification characters, and ∈ is the null string, is :

(1) 08                        (2) 10
(3) 11                        (4) 12

Answer::(4)

Q::32.The content of the accumulator after the execution of the following 8085 assembly language program, is :

MVI A, 42H
MVI B, 05H
UGC: ADD B
DCR B
JNZ UGC
ADI 25H
HLT

(1) 82 H                    (2) 78 H
(3) 76 H                    (4) 47 H

Answer::(3)

For Explanation Visit::
http://cbsenetmaterial.blogspot.in/2016/12/ugc-net-computer-science-july-2016_74.html

Q::33. In _______, the bodies of the two loops are merged together to form a single loop provided that they do not make any references to each other.

(1) Loop unrolling                       (2) Strength reduction
(3) Loop concatenation                (4) Loop jamming

Answer::(4)

Q::34. Which of the following is not typically a benefit of dynamic linking ?

I. Reduction in overall program execution time.

II. Reduction in overall space consumption in memory.

III. Reduction in overall space consumption on disk.

IV. Reduction in the cost of software updates.

(1) I and IV                             (2) I only
(3) II and III                           (4) IV only

Answer::(2)

Q::35. Which of the following is FALSE ?

(1) The grammar S → a Sb |bSa|SS|∈, where S is the only non-terminal symbol and ∈ is the null string, is ambiguous.

(2) SLR is powerful than LALR.

(3) An LL(1) parser is a top-down parser.

(4) YACC tool is an LALR(1) parser generator.

Answer::(2)

Q::36. Consider the reference string
                       
                       0 1 2 3 0 1 4 0 1 2 3 4

If FIFO page replacement algorithm is used, then the number of page faults with three page frames and four page frames are _______ and ______ respectively.

(1) 10, 9                                           (2) 9, 9
(3) 10, 10                                         (4) 9, 10

Answer::(4)

Q::37. Suppose there are four processes in execution with 12 instances of a Resource R in a system. The maximum need of each process and current allocation are given below :
Process Max.              Need Current              Allocation
         P1                           8                                 3
         P2                           9                                 4
         P3                           5                                 2
         P4                           3                                 1

With reference to current allocation, is system safe ? If so, what is the safe sequence ?

(1) No                                              (2) Yes, P1 P2 P3 P4
(3) Yes, P4 P3 P1 P2                           (4) Yes, P2 P1 P3 P4

Answer::(3)

Q::38. If the Disk head is located initially at track 32, find the number of disk moves required with FCFS scheduling criteria if the disk queue of I/O blocks requests are :
                        98, 37, 14, 124, 65, 67

(1) 320                                                 (2) 322
(3) 321                                                 (4) 319

Answer::(3)

Q::39. In UNIX, _________ creates three subdirectories : ‘PIS’ and two subdirectories ‘progs’ and ‘data’ from just created subdirectory ‘PIS’.

(1) mkdir PIS/progs PIS/data PIS

(2) mkdir PIS progs data

(3) mkdir PIS PIS/progs PIS/data

(4) mkdir PIS/progs data

Answer::(3)

Q::40. A scheduling Algorithm assigns priority proportional to the waiting time of a process. Every process starts with priority zero (lowest priority). The scheduler reevaluates the
process priority for every ‘T’ time units and decides next process to be scheduled. If the
process have no I/O operations and all arrive at time zero, then the scheduler implements
_________ criteria.

(1) Priority scheduling

(2) Round Robin Scheduling

(3) Shortest Job First

(4) FCFS

Answer::(2)

                                                           1 2 3 4 5 

Coding Acceleration Program

🚀 CODING ACCELERATION PROGRAM (90 DAYS) Build Strong Foundations Learn to Think Like a Programmer Get Placement Ready 💡 Learn C Progra...