Showing posts with label cbse net all solved papers. Show all posts
Showing posts with label cbse net all solved papers. Show all posts

Sunday, September 6, 2020

UGC-NET Computer Science Previous Year Question Papers

 UGC-NET NOVEMBER 2017 QUESTIONS WITH EXPLANATION 

CBSE-NET NOVEMBER 2017 QUESTIONS WITH EXPLANATION 

NTA-NET NOVEMBER 2017 QUESTIONS WITH EXPLANATION 

Q:15 With respect to CRT, the horizontal retrace is defined as:

(A) The path an electron beam takes when returning to the left side of the CRT.

(B) The path an electron beam takes when returning to the right side of the CRT.

(C) The technique of turning the electron beam off while retracing.

(D) The technique of turning the electron beam on/off while retracing.


Answer: (A)

Explanation: In computer graphics Horizontal Retrace is defined as: The path an electron beam takes when returning to the left side of the CRT.

Raster Scan and Random Scan Display in Computer Graphics

The scanning process sweeps the beam from left to right across the screen. At the end of the scanline the beam is moved to the start of the next (horizontal retrace). After the last scanline the beam is returned to the start position. (Vertical retrace).
So, option (A) is correct.

UGC-NET Computer Science Previous Year Question Papers

 UGC-NET NOVEMBER 2017 QUESTIONS WITH EXPLANATION 

CBSE-NET NOVEMBER 2017 QUESTIONS WITH EXPLANATION 

NTA-NET NOVEMBER 2017 QUESTIONS WITH EXPLANATION 


Q:14 Which of the following is not true in case of Oblique Projections?
(A) Parallel projection rays are not perpendicular to the viewing plane.
(B) Parallel lines in space appear parallel on the final projected image.
(C) Used exclusively for pictorial purposes rather than formal working drawings.
(D) Projectors are always perpendicular to the plane of projection.


Answer: (D)

Explanation: 

 

(A) → Parallel projection rays are not perpendicular to the viewing plane. TRUE
(B) → Parallel lines in space appear parallel on the final projected image. TRUE
(C) → Used exclusively for pictorial purposes rather than formal working drawings. TRUE

(D) → Projectors are always perpendicular to the plane of projection. False

The projectors in oblique projection intersect the projection plane at an oblique angle to produce the projected image, as opposed to the perpendicular angle used in orthographic projection. 

So, option (D) is correct.

UGC-NET Computer Science Previous Year Question Papers

 UGC-NET NOVEMBER 2017 QUESTIONS WITH EXPLANATION 

CBSE-NET NOVEMBER 2017 QUESTIONS WITH EXPLANATION 

NTA-NET NOVEMBER 2017 QUESTIONS WITH EXPLANATION 

Q:11 Given two relations R1(A, B) and R2(C, D), the result of following query

Select distinct A, B
from R1, R2

is guaranteed to be same as R1 provided one of the following condition is satisfied.
(A) R1 has no duplicates and R2 is empty.
(B) R1 has no duplicates and R2 is non – empty.
(C) Both R1 and R2 have no duplicates.
(D) R2 has no duplicates and R1 is non – empty.


Answer: (B)

Explanation: Select A,B
From R1, R2 :
In this query first we will take Cartesian product of R1, R2 (R2 must be non empty)for this 0- R2 then select distinct A,B from Cartesian product of R1, R2 (for A,B being distinct there should not any duplicate A,B).
And
Select A,B
From R2
For this query A,B → No duplicate A,B.
By combining condition for both query we will get the right condition.
So, option (B) is correct.

Friday, August 28, 2020

UGC-NET Computer Science Previous Year Question Papers

UGC-NET NOVEMBER 2017 QUESTIONS WITH EXPLANATION 

CBSE-NET NOVEMBER 2017 QUESTIONS WITH EXPLANATION 

NTA-NET NOVEMBER 2017 QUESTIONS WITH EXPLANATION 


Q:10 Consider a relation R (A, B, C, D, E, F, G, H), where each attribute is atomic, and following functional dependencies exist.

CH → G
A → BC
B → CFH
E → A
F → EG

The relation R is __________ .
(A) in 1NF but not in 2NF
(B) in 2NF but not in 3NF
(C) in 3NF but not in BCNF
(D) in BCNF


Answer: (A)

Explanation: If we find closure of A:

A+ → All atribute except D.
Similarly for other keys we can find closure, but D can’t be derived from any key and it must be added to all keys to be derived from. That’s why this relation is in 1NF, since there is partial dependency so, this relation is not in 2NF.
So, option (A) is correct.

UGC-NET Computer Science Previous Year Question Papers

 UGC-NET NOVEMBER 2017 QUESTIONS WITH EXPLANATION 

CBSE-NET NOVEMBER 2017 QUESTIONS WITH EXPLANATION 

NTA-NET NOVEMBER 2017 QUESTIONS WITH EXPLANATION


Q: 9 If every non-key attribute is functionally dependent on the primary key, then the relation is in __________ .

(A) First normal form
(B) Second normal form
(C) Third normal form
(D) Fourth normal form


Answer: (B)

Explanation: Conditions for various normal forms:

  1. 1 NF – A relation R is in first normal form (1NF) if and only if all underlying domains contain atomic values only.
  2. 2 NF – A relation R is in second normal form (2NF) if and only if it is in 1NF and every non-key attribute is fully dependent on the primary key.
  3. 3 NF – A relation R is in third normal form (3NF) if and only if it is in 2NF and every non-key attribute is non-transitively dependent on the primary key.
  4. BCNF – A relation R is in Boyce-Codd normal form (BCNF) if and only if every determinant is a candidate key.

 

UGC-NET Computer Science Previous Year Question Papers

  UGC-NET NOVEMBER 2017 QUESTIONS WITH EXPLANATION 

CBSE-NET NOVEMBER 2017 QUESTIONS WITH EXPLANATION 

NTA-NET NOVEMBER 2017 QUESTIONS WITH EXPLANATION 

GATE 2016 SET-2 Q:32

Topic: DBMS

Q: 8 Suppose a database schedule S involves transactions T1, T2, ………….,Tn. Consider the precedence graph of S with vertices representing the transactions and edges representing the conflicts. If S is serializable, which one of the following orderings of the vertices of the precedence graph is guaranteed to yield a serial schedule ?

(A) Topological order
(B) Depth – first order
(C) Breadth – first order
(D) Ascending order of transaction indices


Answer: (A)

Explanation: For a schedule, we can check its serializability by drawing a precedence graph and find its topological order, precedence graph of schedule must not contain any cycle to be conflict free.

Cycle in precedence graph tells that schedule is not conflict serializable. DFS and BFS traversal of graph are possible even if graph contains cycle. And hence DFS and BFS are also possible for non serializable graphs. But Topological sort of any cyclic graph is not possible. Thus topological sort guarantees graph to be serializable . Option D is not valid because in a transaction with more indices might have to come before lower one. Also two non- conflicting schedule can occur simultaneously.

So, option (A) is correct.

UGC-NET Computer Science Previous Year Question Papers

 UGC-NET NOVEMBER 2017 QUESTIONS WITH EXPLANATION 

CBSE-NET NOVEMBER 2017 QUESTIONS WITH EXPLANATION 

NTA-NET NOVEMBER 2017 QUESTIONS WITH EXPLANATION 


Question 65 GATE-CS-2014-(Set-1) | Question 65 2014 GATE

Q:7 Consider the following four schedules due to three transactions (indicated by the subscript) using read and write on a data item X, denoted by r(X) and w(X) respectively. Which one of them is conflict serializable ?

S1: r1(X); r2(X); w1(X); r3(X); w2(X)

S2: r2(X); r1(X); w2(X); r3(X); w1(X)

S3: r3(X); r2(X); r1(X); w2(X); w1(X)

S4: r2(X); w2(X); r3(X); r1(X); w1(X)

(A) S1
(B) S2
(C) S3
(D) S4


Answer: (D)

Explanation: We can draw precedence graph for each schedule and for conflict serializability graph must not contain cycle.
conflict


So, option (D) is correct.

UGC-NET Computer Science Previous Year Question Papers

 UGC-NET NOVEMBER 2017 QUESTIONS WITH EXPLANATION 

CBSE-NET NOVEMBER 2017 QUESTIONS WITH EXPLANATION 

NTA-NET NOVEMBER 2017 QUESTIONS WITH EXPLANATION 

Q:6 A micro-instruction format has micro-ops field which is divided into three subfields F1, F2, F3 each having seven distinct micro-operations, condition field CD for four status bits, branch field BR having four options used in conjunction with address field ADF. The address space is of 128 memory locations. The size of micro-instruction is:

(A) 17
(B) 20
(C) 24
(D) 32


Answer: (B)

Explanation: Microprocessor instruction format, which is divided into three subfields F1, F2, F3 each having seven distinct micro-operations, condition field CD for four status bits, branch field BR having four options used in conjunction with address field ADF. The address space is of 128 memory locations.ie:
q8
F1,F2,F3 each having seven distinct micro-operation. So, 3 bits are required for each.
Condition field have four status, it needs 2 bits for four different condition.
Branch field have four option so,it needs 2 bits for four option.
Now there are 128 different memory location, So, there 7 bits atre required for 128 diffeent location.
Instruction Field:
q8 (1)Total bits are 20.
So, option (B) is correct.

Wednesday, August 26, 2020

UGC-NET Computer Science Previous Year Question Papers


UGC-NET NOVEMBER 2017 QUESTIONS WITH EXPLANATION 
CBSE-NET NOVEMBER 2017 QUESTIONS WITH EXPLANATION 

NTA-NET NOVEMBER 2017 QUESTIONS WITH EXPLANATION  

Q:5 Which of the following is correct statement ?

(A) In memory – mapped I/O, the CPU can manipulate I/O data residing in interface registers that are not used to manipulate memory words.
(B) The isolated I/O method isolates memory and I/O addresses so that memory address range is not affected by interface address assignment.
(C) In asynchronous serial transfer of data the two units share a common clock.
(D) In synchronous serial transmission of data the two units have different clocks.


Answer: (B)

Explanation:

  • The isolated I/O method isolates memory and I/O addresses so that memory address range is not affected by interface address assignment.
  • Memory based I/O uses same address space for memory and I/O devices.
  • In asynchronous serial transfer of data the two units do not share a common clock.
  • In synchronous serial transfer of data the two units share a common clock.
Option (B) is correct.
UGC-NET NOVEMBER 2017 QUESTIONS WITH EXPLANATION 
CBSE-NET NOVEMBER 2017 QUESTIONS WITH EXPLANATION 
NTA-NET NOVEMBER 2017 QUESTIONS WITH EXPLANATION 

Q:3 In the architecture of 8085 microprocessor match the following:

1

(A) (1)
(B) (2)
(C) (3)
(D) (4)


Answer: (B)

Explanation:

  • ALU is the arithmetic logic unit and it involves processing of input into desired output.
  • Timing and control instruction are covered in instruction unit of microprocessor.
  • There are some general purpose register in storage and interface unit.
  • While an interrupt is a signal to the processor which required attention from processor, an interrupt is serviced on the basis of priority and need.

So, option (B) is correct.

Monday, January 2, 2017

UGC-NET JULY 2016 PAPER 1 SET-A QUESTIONS WITH EXPLANATION

UGC-NET JULY 2016 PAPER 1 SET-A QUESTIONS WITH EXPLANATION


Q:: 21 As a teacher, select the best option to ensure your effective presence in the classroom.

(1) Use of peer command

(2) Making aggressive statements

(3) Adoption of well-established posture

(4) Being authoritarian

Answer :: (3)
Q:: 22 Every communicator has to experience

(1) Manipulated emotions

(2) Anticipatory excitement

(3) The issue of homophiles

(4) Status dislocation

Answer :: (2)

Q:: 23 In certain code, SELECTION is coded as QCJCARGML. The code of AMERICANS will be

(1) YKCPGAYLQ

(2) BNFSJDBMR

(3) QLYAGPCKY

(4) YQKLCYPAG

Answer :: (1)

Q:: 24 In the series
3, 11, 23, 39, 59, ..........
The next term will be
(1) 63                                          (2) 73

(3) 83                                          (4) 93

Answer :: (3)

Q:: 25 Two railway tickets from city A to B and three tickets from city A to C cost ` 177. Three
tickets from city A to B and two tickets from city A to C cost ` 173. The fare for city B
from city A will be `

(1) 25                                                                 (2) 27

(3) 30                                                                 (4) 33

Answer :: (4)

Q:: 26 A person walks 10 m infront and 10 m to the right. Then every time turning to his left, he walks 5, 15 and 15 m respectively. How far is he now from his starting point ?

(1) 20 m                                                              (2) 15 m

(3) 10 m                                                              (4) 5 m

Answer :: (4)

Q:: 27 A is sister of B. F is daughter of G. C is mother of B. D is father of C. E is mother of D. A is related to D as

(1) Grand daughter                                             (2) Daughter

(3) Daughter-in-law                                             (4) Sister

Answer :: (1)

Q:: 28 In the series AB, EDC, FGHI, ....?...., OPQRST, the missing term is

(1) JKLMN                                                         (2) JMKNL

(3) NMLKJ                                                         (4) NMKLJ

Answer :: (3)

Q:: 29 Among the following propositions two are related in such a way that one is the denial of
the other. Which are those propositions ? Select the correct code :
Propositions :

(a) All women are equal to men

(b) Some women are equal to men

(c) Some women are not equal to men

(d) No women are equal to men

Codes :

(1) (a) and (b)

(2) (a) and (d)

(3) (c) and (d)

(4) (a) and (c)

Answer :: (4)

Q:: 30 If the proposition ‘All thieves are poor’ is false, which of the following propositions can
be claimed certainly to be true ?
Propositions :

(1) Some thieves are poor.

(2) Some thieves are not poor.

(3) No thief is poor.

(4) No poor person is a thief.

Answer :: (2)












ugc net computer science question papers,ugc net computer science december 2014 question papers,
ugc net computer science june 2014 question papers,
ugc net computer science december 2014 question papers,
ugc net computer science june 2013 question papers,
ugc net computer science december 2013 question papers,
ugc net computer science june 2012 question papers,
ugc net computer science december 2012 question papers,
ugc net computer science june 2011 question papers,
ugc net computer science december 2011 question papers,
ugc net computer science june 2010 question papers,
ugc net computer science december 2010 question papers,
ugc net computer science june 2009 question papers,
ugc net computer science december 2009 question papers,
ugc net computer science june 2008 question papers,

ugc net computer science december 2008 question papers,cbse net all solved papers, cbse net answer key, cbse net july 2016, cbse net june 2015 paper 3 solution computer science, ugc net computer science questions with solution, 

UGC-NET JULY 2016 PAPER 1 SET-A QUESTIONS WITH EXPLANATION

UGC-NET JULY 2016 PAPER 1 SET-A QUESTIONS WITH EXPLANATION



Read the following passage carefully and answer question numbers from 11 to 16 :
In terms of labour, for decades the relatively low cost and high quality of Japanese workers
conferred considerable competitive advantage across numerous durable goods and consumerelectronics
industries (eg. Machinery, automobiles, televisions, radios). Then labour-based
advantages shifted to South Korea, then to Malaysia, Mexico and other nations. Today, China
appears to be capitalizing best on the basis of labour. Japanese firms still remain competitive in
markets for such durable goods, electronics and other products, but the labour force is no longer
sufficient for competitive advantage over manufacturers in other industrializing nations. Such
shifting of labour-based advantage is clearly not limited to manufacturing industries. Today, a huge
number of IT and service jobs are moving from Europe and North America to India, Singapore, and
like countries with relatively well-educated, low-cost workforces possessing technical skills.
However, as educational levels and technical skills continue to rise in other countries, India,
Singapore, and like nations enjoying labour-based competitive advantage today are likely to find
such advantage cannot be sustained through emergence of new competitors.
In terms of capital, for centuries the days of gold coins and later even paper money restricted
financial flows. Subsequently regional concentrations were formed where large banks, industries
and markets coalesced. But today capital flows internationally at rapid speed. Global commerce no
longer requires regional interactions among business players. Regional capital concentrations in
places such as New York, London and Tokyo still persist, of course, but the capital concentrated
there is no longer sufficient for competitive advantage over other capitalists distributed worldwide.
Only if an organization is able to combine, integrate and apply its resources (eg. Land, labour,
capital, IT) in an effective manner that is not readily imitable by competitors can such an
organization enjoy competitive advantage sustainable overtime.
In a knowledge-based theory of the firm, this idea is extended to view organizational knowledge as
a resource with atleast the same level of power and importance as the traditional economic inputs.
An organization with superior knowledge can achieve competitive advantage in markets that
appreciate the application of such knowledge. Semiconductors, genetic engineering,
pharmaceuticals, software, military warfare, and like knowledge-intensive competitive arenas
provide both time-proven and current examples. Consider semiconductors (e.g. computer chips),
which are made principally of sand and common metals. These ubiquitous and powerful electronic
devices are designed within common office buildings, using commercially available tools, and
fabricated within factories in many industrialized nations. Hence, land is not the key competitive
resource in the semiconductor industry.
Based on the passage answer the following questions :



Q:: 11 Which country enjoyed competitive advantages in automobile industry for decades ?

(1) South Korea                                (2) Japan
(3) Mexico                                        (4) Malaysia

Answer:: (2)

Q:: 12 Why labour-based competitive advantages of India and Singapore cannot be sustained in IT and service sectors ?

(1) Due to diminishing levels of skill.

(2) Due to capital-intensive technology making inroads.

(3) Because of new competitors.

(4) Because of shifting of labour-based advantage in manufacturing industries.

Answer:: (3)

Q:: 13 How can an organisation enjoy competitive advantage sustainable overtime ?

(1) Through regional capital flows.

(2) Through regional interactions among business players.

(3) By making large banks, industries and markets coalesced.

(4) By effective use of various instrumentalities.

Answer:: (4)

Q:: 14 What is required to ensure competitive advantages in specific markets ?

(1) Access to capital                                 (2) Common office buildings

(3) Superior knowledge                            (4) Common metals

Answer:: (3)

Q:: 15 The passage also mentions about the trend of

(1) Global financial flow

(2) Absence of competition in manufacturing industry

(3) Regionalisation of capitalists

(4) Organizational incompatibility

Answer:: (1)

Q:: 16 What does the author lay stress on in the passage ?

(1) International commerce                            (2) Labour-Intensive industries

(3) Capital resource management                   (4) Knowledge-driven competitive advantage


Answer:: (4)

Q:: 17 Imagine you are working in an educational institution where people are of equal status.
Which method of communication is best suited and normally employed in such a context ?

(1) Horizontal communication

(2) Vertical communication

(3) Corporate communication

(4) Cross communication

Answer:: (1)

Q:: 18 Identify the important element a teacher has to take cognizance of while addressing
students in a classroom.

(1) Avoidance of proximity

(2) Voice modulation

(3) Repetitive pause

(4) Fixed posture

Answer:: (2)

Q:: 19 What are the barriers to effective communication ?

(1) Moralising, being judgemental and comments of consolation.

(2) Dialogue, summary and self-review.

(3) Use of simple words, cool reaction and defensive attitude.

(4) Personal statements, eye contact and simple narration.

Answer:: (1)

Q:: 20 The choice of communication partners is influenced by factors of

(1) Proximity, utility, loneliness

(2) Utility, secrecy, dissonance

(3) Secrecy, dissonance, deception

(4) Dissimilarity, dissonance, deviance

Answer:: (1)








cbse net all solved papers, cbse net answer key, cbse net july 2016, cbse net june 2015 paper 3 solution computer science, ugc net computer science questions with solution, ugc net computer science question papers,ugc net computer science december 2014 question papers,
ugc net computer science june 2014 question papers,
ugc net computer science december 2014 question papers,
ugc net computer science june 2013 question papers,
ugc net computer science december 2013 question papers,
ugc net computer science june 2012 question papers,
ugc net computer science december 2012 question papers,
ugc net computer science june 2011 question papers,
ugc net computer science december 2011 question papers,
ugc net computer science june 2010 question papers,
ugc net computer science december 2010 question papers,
ugc net computer science june 2009 question papers,
ugc net computer science december 2009 question papers,
ugc net computer science june 2008 question papers,
ugc net computer science december 2008 question papers,

Sunday, January 1, 2017

UGC-NET JULY 2016 PAPER 1 QUESTIONS WITH EXPLANATION

UGC-NET JULY 2016 PAPER 1 SET-A QUESTIONS WITH EXPLANATION




Q:: 1. Select the alternative which consists of positive factors contributing to effectiveness of
 teaching :
List of factors :

(a) Teacher’s knowledge of the subject.

(b) Teacher’s socio-economic background.

(c) Communication skill of the teacher.

(d) Teacher’s ability to please the students.

(e) Teacher’s personal contact with students.

(f) Teacher’s competence in managing and monitoring the classroom transactions.

Codes :

(1) (b), (c) and (d) (2) (c), (d) and (f)

(3) (b), (d) and (e) (4) (a), (c) and (f)

Answer::(4)


Q::2 The use of teaching aids is justified on the grounds of

(1) attracting students’ attention in the class room.

(2) minimising indiscipline problems in the classroom.

(3) optimising learning outcomes of students.

(4) effective engagement of students in learning tasks.
Answer::(3)

Q:: 3 Assertion (A) :
         The purpose of higher education is to promote critical and creative
         thinking abilities among students.
 
         Reason (R) :
         These abilities ensure job placements.

Choose the correct answer from the following code :

(1) Both (A) and (R) are true and (R) is the correct explanation of (A).

(2) Both (A) and (R) are true but (R) is not the correct explanation of (A).

(3) (A) is true but (R) is false.

(4) (A) is false but (R) is true.
Answer::(2)

Q:: 4 Match the items of the first set with that of the second set in respect of evaluation system.

Choose the correct code :

Set – I                                                                    Set – II

a. Formative evaluation                                         i. Evaluating cognitive and co-cognitive
                                                                                aspects with regularity

b. Summative evaluation                                       ii. Tests and their interpretations based on a
                                                                                 group and certain yardsticks

c. Continuous and comprehensive evaluation        iii. Grading the final learning outcomes

d. Norm and criterion referenced tests                  iv. Quizzes and discussions

Codes :

      a b c d

(1) iv iii i ii

(2) i ii iii iv

(3) iii iv ii i

(4) i iii iv ii

Answer::(1)

Q:: 5 A researcher intends to explore the effect of possible factors for the organization of effective mid-day meal interventions. Which research method will be most appropriate for this study ?
(1) Historical method                            (2) Descriptive survey method
(3) Experimental method                      (4) Ex-post-facto method
Answer::(4)

Q::6 Which of the following is an initial mandatory requirement for pursuing research ?
(1) Developing a research design
(2) Formulating a research question
(3) Deciding about the data analysis procedure
(4) Formulating a research hypothesis
Answer::(2)

Q:: 7 The format of thesis writing is the same as in
(1) preparation of a research paper/article
(2) writing of seminar presentation
(3) a research dissertation
(4) presenting a workshop / conference paper
Answer::(3)

Q:: 8 In qualitative research paradigm, which of the following features may be considered critical ?
(1) Data collection with standardised research tools.
(2) Sampling design with probability sample techniques.
(3) Data collection with bottom-up empirical evidences.
(4) Data gathering to take place with top-down systematic evidences.
Answer::(3)

Q:: 9 From the following list of statements identify the set which has negative implications for
‘research ethics’ :
(i) A researcher critically looks at the findings of another research.
(ii) Related studies are cited without proper references.
(iii) Research findings are made the basis for policy making.
(iv) Conduct of practitioner is screened in terms of reported research evidences.
(v) A research study is replicated with a view to verify the evidences from other researches.
(vi) Both policy making and policy implementing processes are regulated in terms of
preliminary studies.
Codes :
(1) (i), (ii) and (iii)                                      (2) (ii), (iii) and (iv)
(3) (ii), (iv) and (vi)                                     (4) (i), (iii) and (v)
Answer::(3)

Q:: 10 In a research on the effect of child-rearing practices on stress-proneness of children in completing school projects, the hypothesis formulated is that ‘child rearing practices do influence stress-proneness’. At the data-analysis stage a null hypothesis is advanced to
find out the tenability of research hypothesis. On the basis of the evidence available, the
null hypothesis is rejected at 0.01 level of significance. What decision may be warranted
in respect of the research hypothesis ?
(1) The research hypothesis will also be rejected.
(2) The research hypothesis will be accepted.
(3) Both the research hypothesis and the null hypothesis will be rejected.
(4) No decision can be taken in respect of the research hypothesis.

Answer::(2)














ugc net computer science question papers,ugc net computer science december 2014 question papers, ugc net computer science july 2016 question papers,
ugc net computer science june 2014 question papers,
ugc net computer science december 2014 question papers,
ugc net computer science june 2013 question papers,
ugc net computer science december 2013 question papers,
ugc net computer science june 2012 question papers,
ugc net computer science december 2012 question papers,
ugc net computer science june 2011 question papers,
ugc net computer science december 2011 question papers,
ugc net computer science june 2010 question papers,
ugc net computer science december 2010 question papers,
ugc net computer science june 2009 question papers,
ugc net computer science december 2009 question papers,
ugc net computer science june 2008 question papers,
ugc net computer science december 2008 question papers,

Wednesday, December 14, 2016

UGC-NET JULY 2016 PAPER 3 QUESTIONS WITH EXPLANATION

UGC-NET JULY 2016 PAPER 3 QUESTIONS WITH EXPLANATION


Q:: 61 The region of feasible solution of a linear programming problem has a _____ property in
geometry, provided the feasible solution of the problem exists.

(1) concavity                                          (2) convexity

(3) quadratic                                          (4) polyhedron

Answer:: (2)

Q:: 62 Consider the following statements :

(a) Revised simplex method requires lesser computations than the simplex method.

(b) Revised simplex method automatically generates the inverse of the current basis
matrix.

(c) Less number of entries are needed in each table of revised simplex method than
usual simplex method.

Which of these statements are correct ?

(1) (a) and (b) only                                   (2) (a) and (c) only

(3) (b) and (c) only                                   (4) (a), (b) and (c)

Answer:: (4)

63. The following transportation problem :
                      A         B          C              Supply
  I                  50        30         220               1
 II                 90        45         170               3
III                250      200        50                 4
Demand        4           2           2

has a solution
         A     B      C
I       1
II     3       0
III            2       2
The above solution of a given transportation problem is

(1) infeasible solution                                       (2) optimum solution

(3) non-optimum solution                                (4) unbounded solution

Answer:: (2)

64. Let R and S be two fuzzy relations defined as :





Then, the resulting relation, T, which relates elements of universe x to elements of
universe z using max-min composition is given by

Answer:: (3)

Q:: 65 Compute the value of adding the following two fuzzy integers :

A = {(0.3, 1), (0.6, 2), (1, 3), (0.7, 4), (0.2, 5)}

B = {(0.5, 11), (1, 12), (0.5, 13)}

Where fuzzy addition is defined as

μA+B (z) = max
x + y = z (min (μA(x), μB(x)))
Then, f (A + B) is equal to

(1) {(0.5, 12), (0.6, 13), (1, 14), (0.7, 15), (0.7, 16), (1, 17), (1, 18)}

(2) {(0.5, 12), (0.6, 13), (1, 14), (1, 15), (1, 16), (1, 17), (1, 18)}

(3) {(0.3, 12), (0.5, 13), (0.5, 14), (1, 15), (0.7, 16), (0.5, 17), (0.2, 18)}

(4) {(0.3, 12), (0.5, 13), (0.6, 14), (1, 15), (0.7, 16), (0.5, 17), (0.2, 18)}

Answer:: (4)

Q:: 66 A perceptron has input weights W1 = – 3.9 and W2 = 1.1 with threshold value T = 0.3.
What output does it give for the input x1 = 1.3 and x2 = 2.2 ?

(1) – 2.65                                             (2) – 2.30

(3) 0                                                    (4) 1

Answer:: (3)

Q:: 67 What is the function of following UNIX command ?
           
           WC – l < a > b &

(1) It runs the word count program to count the number of lines in its input, a, writing
the result to b, as a foreground process.

(2) It runs the word count program to count the number of lines in its input, a, writing
the result to b, but does it in the background.

(3) It counts the errors during the execution of a process, a, and puts the result in
process b.

(4) It copies the ‘l’ numbers of lines of program from file, a, and stores in file b.

Answer:: (2)

Q:: 68 Which of the following statement is not correct with reference to cron daemon in UNIX O.S. ?

(1) The cron daemon is the standard tool for running commands on a pre-determined
schedule.

(2) It starts when the system boots and runs as long as the system is up.

(3) Cron reads configuration files that contain list of command lines and the times at
which they invoked.

(4) Crontab for individual users are not stored.

Answer:: (4)

Q:: 69 In Unix, files can be protected by assigning each one a 9-bit mode called rights bits. Now, consider the following two statements:

I. A mode of 641 (octal) means that the owner can read and write the file, other
members of the owner’s group can read it, and users can execute only.

II. A mode of 100 (octal) allows the owner to execute the file, but prohibits all other
access.

Which of the following options is correct with reference to above statements ?

(1) Only I is correct. (2) Only II is correct.

(3) Both I and II are correct. (4) Both I and II are incorrect.

Answer:: (3)

70. Consider the statement,

“Either – 2 ≤ x ≤ – 1 or 1 ≤ x ≤2”.

The negation of this statement is

(1) x < – 2 or 2 < x or – 1 < x < 1                   (2) x < – 2 or 2 < x

(3) – 1 < x < 1                                               (4) x ≤ – 2 or 2 < x or – 1 < x < 1

Answer:: (1)

71. Which of the following is characteristic of an MIS ?

(1) Provides guidance in identifying problems, finding and evaluating alternative
solutions, and selecting or comparing alternatives.

(2) Draws on diverse yet predictable data resources to aggregate and summarize data.

(3) High volume, data capture focus.

(4) Has as its goal the efficiency of data movement and processing and interfacing
different TPS.

Answer:: (2)

72. How does randomized hill-climbing choose the next move each time ?

(1) It generates a random move from the moveset, and accepts this move.

(2) It generates a random move from the whole state space, and accepts this move.

(3) It generates a random move from the moveset, and accepts this move only if this
     move improves the evaluation function.

(4) It generates a random move from the whole state space, and accepts this move only
     if this move improves the evaluation function.

Answer:: (3)

Q:: 73 Consider the following game tree in which root is a maximizing node and children are
visited left to right. What nodes will be pruned by the alpha-beta pruning ?

(1) I                                         (2) HI
(3) CHI                                    (4) GHI

Answer:: (2)

Q:: 74 Consider a 3-puzzle where, like in the usual 8-puzzle game, a tile can only move to an adjacent empty space. Given the initial state
 which of the following state cannot be reached ?

Answer:: (3)


Q:: 75 A software program that infers and manipulates existing knowledge in order to generate
new knowledge is known as :

(1) Data dictionary                                 (2) Reference mechanism

(3) Inference engine                                (4) Control strategy


Answer:: (3)

                                                    <<<   1   2   3   4   5   6   7   >>>

UGC-NET JULY 2016 PAPER 3 QUESTIONS WITH EXPLANATION

UGC-NET JULY 2016 PAPER 3 QUESTIONS WITH EXPLANATION


Q:: 51 Which of the following information about the UNIX file system is not correct ?

(1) Super block contains the number of i-nodes, the number of disk blocks, and the start
of the list of free disk blocks.

(2) An i-node contains accounting information as well as enough information to locate
all the disk blocks that holds the file’s data.

(3) Each i-node is 256-bytes long.

(4) All the files and directories are stored in data blocks.

Answer:: (3)

Q:: 52 Which of the following option with reference to UNIX operating system is not correct ?

(1) INT signal is sent by the terminal driver when one types <Control-C> and it is a
request to terminate the current operation.

(2) TERM is a request to terminate execution completely. The receiving process will
clean up its state and exit.

(3) QUIT is similar to TERM, except that it defaults to producing a core dump if not
caught.

(4) KILL is a blockable signal.

Answer:: (4)

Q:: 53 A multicomputer with 256 CPUs is organized as 16 × 16 grid. What is the worst case
delay (in hops) that a message might have to take ?

(1) 16                                     (2) 15
(3) 32                                     (4) 30

Answer:: (4)

Q:: 54 Suppose that the time to do a null remote procedure call (RPC) (i.e. 0 data bytes) is
1.0 msec, with an additional 1.5 msec for every 1K of data. How long does it take to read
32 K from the file server as 32 1K RPCs ?

(1) 49 msec                             (2) 80 msec

(3) 48 msec                             (4) 100 msec

Answer:: (2)

Q:: 55 Let L be the language generated by regular expression 0*10* and accepted by the
deterministic finite automata M. Consider the relation RM defined by M. As all states are
reachable from the start state, RM has _____ equivalence classes.

(1) 2                                   (2) 4

(3) 5                                   (4) 6

Answer:: (4)

Q:: 56 Let L = {0n1n|n ≥ 0} be a context free language.

Which of the following is correct ?

(1) ~L is context free and Lk is not context free for any k ≥ 1.

(2) ~L is not context free and Lk is context free for any k ≥ 1.

(3) Both ~L and Lk is for any k ≥ 1 are context free.

(4) Both ~L and Lk is for any k ≥ 1 are not context free.

Answer:: (3)

Q:: 57 Given a Turing Machine

M = ({q0, q1, q2, q3}, {a, b}, {a, b, B}, δ, B, {q3})

Where δ is a transition function defined as

δ(q0, a) = (q1, a, R)
δ(q1, b) = (q2, b, R)
δ(q2, a) = (q2, a, R)
δ(q2, b) = (q3, b, R)

The language L(M) accepted by the Turing Machine is given as :

(1) aa*b                                      (2) abab

(3) aba*b                                    (4) aba*

Answer:: (3)

Q:: 58 Consider a discrete memoryless channel and assume that H(x) is the amount of
information per symbol at the input of the channel; H(y) is the amount of information per
symbol at the output of the channel; H(x|y) is the amount of uncertainty remaining on x
knowing y; and I (x; y) is the information transmission.
Which of the following does not define the channel capacity of a discrete memoryless
channel ?

(1) max I (x; y)                                (2) max [H(y) – H(y|x)]
     p(x)                                                  p(x)

(3) max [H(x) – H(x|y)]                    (4) max H(x|y)
     p(x)                                                  p(x)

Answer:: (4)

Q:: 59 Consider a source with symbols A, B, C, D with probabilities 1/2, 1/4, 1/8,           1/8 respectively. What is the average number of bits per symbol for the Huffman code generated from above information ?

(1) 2 bits per symbol                             (2) 1.75 bits per symbol

(3) 1.50 bits per symbol                        (4) 1.25 bits per symbol

Answer:: (2)

Q:: 60 Which of the following is used for the boundary representation of an image object ?

(1) Quad Tree                                           (2) Projections

(3) Run length coding                               (4) Chain codes

Answer:: (4)

                     
                                              <<<   1   2   3   4   5   6   7   >>>

Coding Acceleration Program

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