UGC-NET CS 2017 Nov – III

Question 1
In 8085 microprocessor which of the following flag(s) is (are) affected by an arithmetic operation ?
Cross
AC flag Only
Cross
CY flag Only
Cross
Z flag Only
Tick
AC, CY, Z flags


Question 1-Explanation: 
AC is auxiliary-Carry flag, CY is Carry flag and Z is Zero flag. All these flags will be affected during arithmetic operation. So, option (D) is correct.
Question 2
In 8085 microprocessor the address bus is of __________ bits.
Cross
4
Cross
8
Tick
16
Cross
32


Question 2-Explanation: 
In 8085 microprocessor 16 bits are used for address bus and 65,536(216 = 65,536) different memory location are possible. So, option (C) is correct.
Question 3
In the architecture of 8085 microprocessor match the following: 1
Cross
(1)
Tick
(2)
Cross
(3)
Cross
(4)


Question 3-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.
Question 4
Which of the following addressing mode is best suited to access elements of an array of contiguous memory locations ?
Tick
Indexed addressing mode
Cross
Base Register addressing mode
Cross
Relative address mode
Cross
Displacement mode


Question 4-Explanation: 
Indexed addressing mode is best suited for accessing an array in contiguous memory location. For detailed information on addressing modes Refer:Addressing_Modes. So, option (A) is correct.
Question 5
Which of the following is correct statement ?
Cross
In memory - mapped I/O, the CPU can manipulate I/O data residing in interface registers that are not used to manipulate memory words.
Tick
The isolated I/O method isolates memory and I/O addresses so that memory address range is not affected by interface address assignment.
Cross
In asynchronous serial transfer of data the two units share a common clock.
Cross
In synchronous serial transmission of data the two units have different clocks.


Question 5-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.
Refer:I/O interface Option (B) is correct.
Question 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:

Cross

17

Tick

20

Cross

24

Cross

32



Question 6-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: 
 


F1,F2,F3 each having seven distinct micro-operation. So, 3 bits are required for each. 
Condition field has four status bits, it needs 4 bits for four different conditions. 
Branch field have four option so, it needs 2 bits for four option. 
Now there are 128 different memory location, So, there 7 bits are required for 128 different location. But BR field is used in conjunction with the address field therefore the size of the address field is 7 - 2  = 5.


Instruction Field: 
 


Total bits are 20. 
So, option (B) is correct. 
 

Question 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)
Cross
S1
Cross
S2
Cross
S3
Tick
S4


Question 7-Explanation: 
We can draw precedence graph for each schedule and for conflict serializability graph must not contain cycle. conflict Refer:Gate_CS 2014 So, option (D) is correct.
Question 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 ?
Tick
Topological order
Cross
Depth - first order
Cross
Breadth - first order
Cross
Ascending order of transaction indices


Question 8-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. Refer:GATE-CS-2016 So, option (A) is correct.
Question 9
If every non-key attribute is functionally dependent on the primary key, then the relation is in __________ .
Cross
First normal form
Tick
Second normal form
Cross
Third normal form
Cross
Fourth normal form


Question 9-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.
Example: Relation R(XYZ) with functional dependencies {X -> Y, Y -> Z, X -> Z}. Notice here Y -> Z, in question it is not mention that non prime attribute is only dependent on primary key so this FD is perfectly valid. This relation is in 2NF but not in 3NF because of every non-key attribute is transitively dependent on the primary key. Here {X} will be candidate key. So, option (B) is correct.
Question 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 __________ .
Tick
in 1NF but not in 2NF
Cross
in 2NF but not in 3NF
Cross
in 3NF but not in BCNF
Cross
in BCNF


Question 10-Explanation: 
If we find closure of A: A+ → All attribute 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.
There are 74 questions to complete.
  • Last Updated : 22 Nov, 2021

Similar Reads