Saturday, October 18, 2014

G K Solved  for UGC NET

   
1. Who is the first governor general of India.
Lord William Bentinck.

2. Young Bengal movement was started by.
Henry Louis Vivian Derozio.

3. The demand for 'swaraj'(self government)  was made by Indian National Congress(I.N.C.) for the first time.
At Calcutta session, 1906 under the chairmanship of Dadabhai Naoroji.

4.  The communal award was announced by
Ramsay Mcdonald 

5. Who was the PM of Britain when India got independence.
Atlee.

6. The time taken by sunlight to reach earth.
8 minutes and 16.6 seconds.

7. The hottest planet in our solar system is.
Venus

8. What is Astronomical Unit.
The Mean distance between earth and sun.

9. Which is the highest peak in Africa.
Mt. Kilimanjaro (Tanzania).

10. Intensity of shaking caused by earthquake is measured by
Mercalli scale.

11. Willy Willies are cyclones that affect
Northern Australia

12. Rowlatt act, 1919 enabled government
To suspend Habeas Corpus.(to arrest and imprison suspects without trail).

13. Khilafat movement was started by
Mohammed Ali and Shoukat Ali to agitate against the injustices done to Turkey by British.

14. Who were the important members of Cabinet mission plan.
Wavell, Patrick Lawrence and Stafford Cripps

15. Poverty and UnBritish rule in India is a book written by
Dadabhai Naoroji

16. What is the shape of Earth.
Oblate Spheroid.

17. Kalhari is a famous desert in.
Botswana(Africa).

18. Who is the leading producer of platinum in the world.
South Africa.

19. Which is the largest lake in India.
Chilka lake(orissa) 

20. India shares longest boundary with.
Bangladesh

21. Shompens are tribes of.
Andaman and Nicobar Islands.

22. NH 7 connects 
Varanasi to Kanykumari.

23. Fundamental duties adopted in our constitution was borrowed from
USSR(Soviet Union)

24. Right to free and compulsory education to children under the age group of 6-14 years was enshrined in our constitution in 
Article 21-A

25. What is a Division bench.
A bench with  two to three  Justices.

26. Who is the highest law officer in the country.
Attorney General.

27. Lee Commission recommended setting up of
Public service commission

28. What is starred question.
A starred question is to be answered orally on the floor of the House.

29. Who is the chairman of 14th Finance Commission.
Y.V. Reddy

30. Peoples plan was formulated by
M.N. Roy

TIPS ON PAPER 3 OF UGC NET COMPUTER SCIENCE


If you look the syllabus of ugc net computer science particularly for paper 3, it’s a huge ocean. So mastering over all areas is simply not an easy task. So you got to focus upon some of the conventional areas where questions are often asked.
In paper 3 you all know that there are two parts, core part and elective part. Concentrate more on core part as it contains popular subjects and also easy to learn. There are actually 14 sections.


BOOK LIST OF IMPORTANT REFEREN FOR UGC NET COMPUTER SCIENCE
1. Digital logic fundamentals  Click Here to Buy
2. Database Management System Click Here to Buy
3. Computer graphics  Click Here to Buy
5. Compiler design basics Click Here to Buy
6. Discrete Structures Click Here to Buy
7. Data communication and networks Click Here to Buy
8. Network security Click Here to Buy
9. Data structures Click Here to Buy
10. Unix basics Click Here to Buy
11. Software engineering Click Here to Buy
12. Operating systems  Click Here to Buy
13. Artificial intelligence Click Here to Buy
14. Java basics Click Here to Buy
Out of these fourteen sections, aspirants will be familiar with most of the sections. But the major fault they commit is that they don’t read books and never make notes of their own on important concepts and instead  try to rely on what they have learnt during their post-graduation and appear for the exam without focused preparation and meet failure.
Always bear in mind that when it comes to exams, you got to take it seriously and put 100% efforts as much as possible from your side and eventually you will be victorious in the exam. Nothing comes easy in life. Learn regularly for atleast two months as I have already mentioned in my previous article by  making action plans on what are the areas to be covered everyday.

How to tackle elective/optional subjects of ugc net compuer science:

As you all are aware of the fact that there are five electives namely:
1. Discrete Mathematics
2. Information coding and theory 
3. Linear and non linear programming 
4. Neural networks and fuzzy logics
5. Unix and windows Click Here to Buy
Questions on electives are mostly problem solving based one except elective 5. It is not required to master all the electives. Try to select some electives which you feel to be learnable and give more importance totheoretical aspect of electives because paper 3 is a good blend of theorotical and problem solving questions.
Elective 1, 2, 5 can be prepared with some extra effort.
Bottomline: Give more focus on core papers.
Don’t get afraid when you see big questions. Always remember the fact that big question means easy answer. All that is needed is being patient, presence of mind and thinking logically.

Let me give an example for this,

What is the output of the following
program ?
#include<stdio.h>
main( )
{
int a, b = 0;
static int c[10] =
{1, 2, 3, 4, 5, 6, 7, 8, 9, 0};
for (a=0; a<10;++a)
if ((c[a]%2)= =0) b+=c[a];
printf(“%d”,b);
}
(A) 15 (B) 25
(C) 45 (D) 20

This was actually a question asked in UGC Net computer science paper 3 exam.
When candidates see such questions, they immediately leave the question or make a guess just like that. Don’t do it.
Do you know how to solve this?  Its very simple.
An array has been declared and initialized with 10 elements.
Then we have a for loop which will execute 10 times.
Then there is a if statement which has modulus operation (modulus means the remainder part of the answer will be taken in to consideration.
 we have to get zero as the remainder, Then only even numbers will be taken in to consideration.
i.e., 2%2=0,
4%2=0,
6%2=0,
8%2=0
Then we have
b+=c[a];
which means b=b+c[a];
initially b is initialized as zero, therefore add 2+4+6+8=20
So the answer is 20.
Very simple.
So learn the question and  the answer options well.
There are greater chances that you will mark the right answer with what you have learnt and understood.  
Finally, I wish all my readers all the very best for the forthcoming UGC NET exam andI wish you all pass this exam with flying colours. Let me conclude with a quote, “Little drops of water makes a big ocean”.
Similarly, “Little amount of hard and smart work on a consistent basis helps you reach your destiny”.

OPERATING SYSTEM SYNCHRONIZATION BASICS FOR UGC NET


Synchronization : The concept of Synchronization is concerned with cooperating
processes that share some resources. Co-operating processes must
synchronize with each other when they use shared resources. Thus we can view the Synchronization as a set of constraints on the ordering of events.
 
Semaphores : A Semaphore is a protected variable whose value can be accessed and altered only by operations P and V.
 
A Semaphore Mechanism basically consists of the two primitive operations
SIGNAL and WAIT.

The Semaphore variable can assume only positive integer value. The integer
value of the Semaphore in the wait and signal operations must be executed
indivisible. That is, when one process modifies the Semaphore value, no other process can simultaneously modify that same Semaphore value.

Importance of semaphores :
(i) Semaphores can be used to deal with n process critical section problem.
As the n processes shares the semaphores, mutex (standing for mutual
exclusion), is initialized to 1.
 
(ii) Semaphores can also be used to solve various synchronization problems.
Co-operating Processes : The concurrent processes executing in the Operating
System may be either Independent Processes or Co-operating Processes.
A process is Co-operating if it can affect or is affected by the other processes
executing in the System. That means any process that shares data with other processes is a Co-operating Process.
Inter-Process Communication : Cooperating processes can communicate in a
shared-memory environment. Cooperating processes communicate with each
other via an Inter-Process-Communication (IPC) facility. IPC provides a
mechanism to allow processes to communicate and to synchronize their actions.
Inter-Process Communication is best provided by a Message System. Message
System can be defined in many different ways. An IPC facility provides at least
the two operations - send(message) and receive(message).

UGC NET GENERAL PAPER 1



1. A teacher can develop social values among students by
(a) telling them about great people
(b) developing sense of discipline
(c) behaving ideally
(d) telling them good stories
Ans.: c

2. The ideal teacher
(a) Teaches the whole curriculum
(b) Helps his students in learning
(c) Is a friend, philosopher and guide
(d) Maintains good discipline
Ans.: c

3. The aim of education should be
(a) To develop vocational skills in the students
(b) To develop social awareness in the students
(c) To prepare the students for examination
(d) To prepare the students for practical life
Ans.: d


4. If in a research variables cannot be manipulated then it is known as
(a) Experimental Research
(b) Descriptive Research
(c) Fundamental Research
(d) Exploratory Research
Ans.: b.

5. The non-verbal communication includes
(a) tone of voice
(b) facial expression
(c) Touching
(d) All of these
Ans.: d

6. Which of the following will not be a number of the series 1, 8, 27, 64, 125, ...... ?
(a) 216 (b) 512 (c) 729 (d) 1000
Ans.: a
Explanation:
1^3=1
2^3=8
3^3=27
4^3=64
5^3=125
6^3=216

7. If ENGLAND is written as 1234526 and FRANCE is written as 785291, how is GREECE coded ?
(a) 381171 
(b) 381191 
(c) 832252 
(d) 835545
Ans.: b
Explanation:
From the given statement,
G-3
R-8
E-1
E-1
C-9
E-1

8. Booting is the process that signifies which of the following ?
(a) Loading the Operating system into main memory
(b) Shutdown the computer
(c) Diagnosis the problem with the computer
(d) Loads the anti-virus
Ans.: a
9. Tropospheric ozone .
(a) protects Earth from most of the harmful UV radiation
(b) binds with hemoglobin, preventing binding with oxygen in red blood cells
(c) is produced through the interaction of heat and light, with nitrogen oxides and other carbon-containing compounds
(d) is a primary pollutant
Ans.: c

10. One of the problems that occurs as a consequence of CFC pollution is ________
(a) increasing skin cancer in humans
(b) toxins accumulating in homes
(c) damage to human red blood cells
(d) movement of toxins into lakes and rivers, which poisons fish
Ans.: a

11. When the offices of both Speaker and Deputy Speaker falls vacant –
(a) The members of Lok Sabha immediately elect a Speaker.
(b) The senior most willing member of Lok Sabha becomes the speaker.
(c) The President appoints any member of Lok Sabha as speaker.
(d) The Deputy Chairman of Rajya Sabha presides over till the next speaker is elected.
Ans.: b

12. Video conferencing is also known as :-
(a) Physical Conferencing
(b) Remote Conferencing
(c) Electronic Conferencing
(d) None of these.
Ans.: c

13. ‘Moksha’ is a Vedic term which means :
(a) Complete renunciation of worldy affairs
(b) Salvation from the cycle of birth and death.
(c) Concept of social change
(d) Way of imparting education
Ans.: b

14. The constitution is the supreme law of the land. It is protected by —
[a] The Supreme Court
 [b] The Parliament
[c] The Cabinet
[d] The Constituent Assembly
Ans.: a

15. A mutually beneficial association necessary for survival of both partners is
(a) mutualism/symbiosis
(b) commensalism
(c) amensalism
(d) both a and b.
Ans.: a

16. The power of the Supreme Court of India to decide disputes between two or more States falls under its
(A) Advisory Jurisdiction
(B) Appellate Jurisdiction
(C) Original Jurisdiction
 
(D) Writ Jurisdiction 
Ans.: b

17. In certain code TEACHER is written as VGCEJGT. The code of CHILDREN will be
(A)   EKNJFTGP 
(B)  EJKNFTGP   
(C)  KNJFGTP     
(D)  None of these
Ans.: b
Explanation:
CHILDREN=Add every character by 2
C+2=E
H+2=J
I+2=K
L+2=N
D+2=F
R+2=T
E+2=G
N+2=P

18. A person has to buy both apples and mangoes. The cost of one apple is Rs 7 whereas that of a mango is Rs 5/-. If the person has Rs 38, the number of apples he can buy is

(A)    1    (B)    2
(C)    3    (D)   4
Ans.: d
Explanation:
Note the words “apples” and “mangoes” both are plural.
Therefore, from the above options, 4 apples and 2 mangoes may be bought.
7*4=28
5*2=10

19. The mean marks obtained by a class of 40 students is 65. The mean marks of half of the students is found to be 45. The mean marks of the remaining students is

(A)    85           (B)    60
(C)    70           (D)   65
Ans.: a
Explanation:
Total score of 40 students= 40*65=2600
Total score of 20 students=45*20=900
Total score of other 20 students=(2600-900)=1700
So, Mean score of remaining 20 students is 1700/20=85

20. Which is the main objective of research ?
(A) To review the literature
(B) To summarize what is already known
(C) To get an academic degree
(D) To discover new facts or to make fresh interpretation of known facts
 Ans.: d

UGC NET COMPUTER SC. PAPER 2


1. What is the functionality of recursive foreign key.
A recursive foreign key references its own relation.

2. 5th Normal form is concerned with
Join dependency

3. Which Normal form is considered adequate for normal database design.
3NF

4. Which two files is used during operation of DBMS.
Data dictionary and transaction log


5. Which addressing mode allows relocation without any change over in code.
Indexed addressing

6. Dependency preservation is not guaranteed in
BCNF (Boyce Code Normal Form)

7. Which operator is used to compare a value to a lot of literals values that have been specified.
Like operator

8. A graph in which all nodes are of equal degree.
Regular graph

9. The length of Hamiltonian path in a connected graph is
n-1

10. A graph with one vertex and no edges is
Trivial graph

11. The negation of the statement “4 is even or -5 is negative” is
4 is odd and -5 is note negative.

12. An euler graph is one in which
All vertices are of even degree.

13. Advantage of synchronous sequential cirtcuits is
Faster operation

14. EPROM contents can be erased by exposing it to
UV rays

15. Data can be changed from special code to temporal code by using
Shift registers

16. For pure ALOHA, maximum channel utilization is
18%

17. What is bit stuffing.
Bit stuffing referes to inserting a ‘0’ in usr stream to differentiate it with a flag.

18. Wireless interconnection to PSTN are also called as
IXCs

19. Predictive modeling in data mining uses
Statistical technique

20. The scope of GIS encompasses two types of data called as
Spatial data and non spatial data

21. What are virtual data warehouse.
Virtual data warehouse provide views of operational databses that are materialized for efficient access.

22. The Microsoft system to verify Activex controls is
Authentic code

23.What is an expert system.
An expert system is an interactive computer based decision tool that uses facts and heuristics to solve difficult decision making problems based on knowledge acquired from an expert.

24. What is a neural network
It is an artificial representation of human brain that tries to simulate its learning process.

25. What is fuzzy logic.
It is a method of mimicking the ability of human reasoning usng some rules to produce an output using interpolation process.

 UGC NET COMPUTER SCIENCE


1.  A  2MB PCM(pulse code modulation) has
31 voice channels & 1 signalling channel.

2. What is Buffering.
Buffering is the process of temporarily storing the data to allow for small variation in device speeds.

3. What is a terminal emulation.
A software that allows a personal computer to pretend as a computer terminal is called as terminal emulation.


4. What is the use of program counter.
A program counter is used to store address of next instruction to be executed.

5. What is the application of FTP.
File Transfer Protocol(FTP) is used to transfer files with user authentication.

6. Piggy backing is a technique used for
Acknowledgement.

7. The 2’s complement of 10 is
10
Reason:
Transform 10 using NOT gate which means 01
Add by 1
 01
+ 1
-----
10
-----

8. Producer consumer problem is an example of
Semaphores

9. What is Agglomeration
Agglomeration is the process of grouping tasks in to larger tasks to improve performance.

10. Cycle stealing is a term related to
DMA(Direct Memory Access).

11. The logic family with least fanout is
RTL

12. IP is presented in which layer of OSI.
Network layer.

13. Context Free Languages are closed under
Union, Kleen, Closure.

14. What is a self join.
A table joined within itself.

15. What is meant by data mining.
Data Mining is the process of extracting previously non known valid and actionable information from large data to make crucial business and strategic decisions.

16. Which error detection method  uses one's complement arithmetic.
Checksum

17. The maximum channel utilization in PURE ALOHA is
18%

18. The maximum channel utilization SLOTTED ALOHA is
36%

19. A mesh topology is characterized by
Highest reliability.

20. The flow of electrons in CRT is controlled by
Control grid

21. The recursively enumerable languages are closed under
Union and intersection

22. What is mono alphabetic substitution.
 A character in the plaintext is always changed to the same character in the ciphertext, regardless of its position in the text.

23. Bresenhan’s line drawing algorithm is most sought because it uses only
Integer Arithmetic.

24. What is meant by critical fusion frequency.
The refresh rate above which a picture stops flickering and fuses into a steady image is called as critical fusion frequency.

25. A network schema allows
Many-Many relationship.