Nta Ugc Net KEY TO SUCCESS in Computer Science
Nta Ugc Net KEY TO SUCCESS in Computer Science
A MAN OF MOUNTAIN
Small story
• Dashrath Manjhi (14 January 1929[– 17
August 2007[), also known as Mountain Man,
[3]
was a laborer in Gehlaur village, near Gaya
in Bihar, India, who carved a path 110 m long
(360 ft), 9.1 m (30 ft) wide and 7.7 m (25 ft)
deep through a ridge of hills using only a
hammer and chisel. After 22 years of work,
Dashrath shortened travel 55 km to 15 km
NTA UGC NET EXAM SYLLABUS
Microprocessor
• Addressing Modes: Types (D-19)(J-19)(D-18)
• Micro instructions and programming:
Match(D-19), Assemply program(J-19)(D-18)
• Memory Hierarchy (structure:) Address and
data line(J-19), no of bits(D-19), (D-18)
• Others: Flags(D-18), RISC (D-19),Interrupts
Artificial Intelligence
Artificial Neural Network(ANN):
• Learning algorithm: classification algm (D-19),
• Activation function: Sigmoid(J-19)
• Neural Network structure: SOM(J-19)
Fuzzy logic:
fuzzy operations(D-19), Operator(J-19)
Defuzzification methods (J-19)
Alpha cut (J-19)
Genetic Algorithm (J-19)
Programming and CG
Programming
HTML (D-19)(D-18)
Java (D-19)(J-19)(D-18)
C program (D-19)(J-19)(D-18)
CPP (D-19)(J-19)(D-18)
XML (J-19)
Programming and CG
Computer Graphics:
• Clipping (D-19)
• Raster System (D-19)
• Look Up Table: (D-18)
• 2D: Transforms(D-18)
• 3D:Projection(D-18),(J-19)
Software Engineering
• Software process model: Agile model(D-19), (D-
18) basic model (J-19)
• Flow graph: (region, Cyclometic complexity)
(5Q)(D-19)
• Software configuration management: (J-19)
• Coupling and Cohesion:(J-19)(D-18)
• Software Testing: (J-19)
• Software Requirement Specification(SRS):(D-18)
Software Engineering
• Risk Management (J-19)
• Software Reengineering (D-18)
• Software maintenance (D-18)
• Software availability (D-18)
• Software maturity index (problem)(D-18)
NTA UGC NET Latest Questions
Solving on OS
OS Problem on Semaphore
(Q.1)A counting semaphore is initialized to 8. 3 wait() operations
and 4 signal() operations are applied. Find the current value of
semaphore variable (NTA NET DEC-19)
A. 9
B. 5
C.1
D. 4
Explanation: Wait(decrease or minus ), Signal(increase or plus)
=8-3+4
=5+4
=9
Workout
Q.2 At a particular time of computation, the value of
a counting semaphore is 7. Then 20 P (wait)
operations and 15 V (signal) operations are
completed on this semaphore. What is the resulting
value of the semaphore ?(NTA NET J-19)
a) 28
b) 12
c) 2
d) 42
Solution
Explanation
Given:
Initial semaphore value =7
After 20P operation and 15V operation the value
=7-20+15
=2
Answer: B
OS Problem on Dead Lock
Q.3 Suppose a system has 12 magnetic tape drives and at time
t0 ,three processes are allotted tape drives out of their need as
given below. Process Maximum Needs Current Needs
P0 10 5
P1 4 2
P2 9 2
P1 4 2 2
P2 9 2 7
total 9
Effective access time = Hit Ratio (TLB Access time + Memory access time)]
+Miss Ratio (TLB Access time+2*Memory access time)]
=0.8*(20+80) + 0.2(20+2*80)
=0.8(100)+0.2(180)
=80+36
=116 ns
Answer b.
workout
Q.6 Consider a paging hardware with a TLB. Assume that
the entire page table and all the pages are in the
physical memory. It takes 10 milliseconds to search the
TLB and 80 milliseconds to access the physical memory.
If the TLB hit ratio is 0.6, the effective memory access
time (in milliseconds) is (GATE/UGC NET)
(A) 120
(B) 122
(C) 124
(D) 118
Explanation:
Given:
Hit Ratio=60% (60/100=0.6)
Main Memory Access time= 80 ns
TLB Access Time=10 ns
Miss Ratio=1-HitRatio (60%)(0.4)
Effective access time = Hit Ratio (TLB Access time + Memory access time)]+Miss
Ratio (TLB Access time+2*Memory access time)]
=0.6*(10+80) + 0.4(10+2*80)
=0.6(90)+0.4(170)
=54+68
=122 ms
Answer:(B)
NTA UGC NET Latest Questions Solving on
Computer System Architecture
Microprocessor Problem
Q.7 A Non-pipelined system takes 30ns to process a task. The
same task can be processed in a four-segment pipeline with a
clock cycle of 10ns. Determine the speed up of the pipeline for
100 tasks.(NTA NET DEC-19)
a) 3
b) 4
c) 3.91
d) 2.91
Explanation:
Given:
Non pipeline process time(tn)=30ns
4 segment Pipeline process time(tp) =10ns
Segment(k)=4
Total number of task (n) =100
Speed=Non pipeline/pipeline
S=ntn / (n+k-1)tp
= 100*30/(100+4-1)*10
= 3000 / 1030
= 2.91
Workout
Q.8) A nonpipeline system takes 50 ns to process a task.
The same task can be processed in a six segment
pipeline with a clock cycle of 10 ns. determine the
speed up ratio of the pipeline for 100 tasks.(GATE)
a. 3.76
b. 4.76
c. 5.76
d. 2.76
Explanation:
Given:
Non pipeline process time(tn)=50ns
6 segment Pipeline process time(tp) =10ns
Segment(k)=6
Total number of task (n) =100
Speed=Non pipeline/pipeline
S=ntn / (n+k-1)tp
= 100*50/(100+6-1)*10
= 5000 / 1050
= 4.76
Microprocessor Memory Problem
Q.9) A processor can support a maximum memory of 4
GB where memory is word addressable and a word is 2
bytes. What will be the size of the address bus of the
processor? (NTA NET DEC-19)
a) At least 28 bits
b) At least 2 bytes
c) At least 31 bits
d) Minimum 4 bytes
Explanation:
Given:
Maximum memory size= 4GB ( 22 230 =232)
Word size=2 bytes
Number of words =maximum memory/word size
Number of words = 232 / 2 = 231
So, we require 31 bits for the address bus of the
processor
workout
Q.10) A processor can support a maximum memory of
16 GB where memory is word addressable and a word
is 4 bytes. What will be the size of the address bus of
the processor?
a) At least 32 bits
b) At least 2 bytes
c) At least 30 bits
d) Minimum 6 bytes
Explanation:
Given:
Maximum memory size= 16GB ( 24 230 =234)
Word size= 4 bytes (22)
Number of words = maximum memory/word size
Number of words = 234 / 22 = 232
So, we require 32 bits for the address bus of the
processor
Answer: A
DLF-Number System
Q.11) Given following equation:
(142)b + (112)b-2 = (75)8. Find base b.(NTA NET D-19)
a) 3
b) 5
c) 7
d) 6
Explanation:
Option-A: Definitely wrong. Because 142 having 4 in a number but base is 3 only. So, eliminate it.
Option-B: 5 given: (142)b + (112)b-2 = (75)8.
L.H.S Step-1: Converting (142)5 to base 10.
2*50=2
4*51=20
1*52=25
Adding all to get (47)10
Step-2: Converting (112)3 to base 10.
2*30=2
1*31=3
1*32=9
Adding all to get (14)10
47+14=61(L.H.S)
R.H.S
Step-3: find (75)8 .
5*80=5
7*81=56
5+56=61(R.H.S) L.H.S=R.H.S Answer: Option B
Ans:(75)8
https://
www.netcomputerscience.com/p/ugc-net-comp
uter-science-solved.html
https://gateoverflow.in/
Contact
Mobile: 9790085836
Thanks to ALL