UGC-NET CS 2017 Nov – III Read Discuss Courses UGC-NET CS 2017 Nov - III Please wait while the activity loads. If this activity does not load, try refreshing your browser. Also, this page requires javascript. Please visit using a browser with javascript enabled. If loading fails, click here to try again Question 1In 8085 microprocessor which of the following flag(s) is (are) affected by an arithmetic operation ? AC flag OnlyCY flag OnlyZ flag OnlyAC, CY, Z flagsUGC-NET CS 2017 Nov - III Microprocessor Discuss itQuestion 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 2In 8085 microprocessor the address bus is of __________ bits.481632UGC-NET CS 2017 Nov - III Microprocessor Discuss itQuestion 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 3In the architecture of 8085 microprocessor match the following: (1)(2)(3)(4)UGC-NET CS 2017 Nov - III Microprocessor Discuss itQuestion 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 4Which of the following addressing mode is best suited to access elements of an array of contiguous memory locations ?Indexed addressing modeBase Register addressing modeRelative address modeDisplacement modeUGC-NET CS 2017 Nov - III Computer Organization and Architecture Pipelining and Addressing modes Discuss itQuestion 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 5Which of the following is correct statement ?In memory - mapped I/O, the CPU can manipulate I/O data residing in interface registers that are not used to manipulate memory words.The isolated I/O method isolates memory and I/O addresses so that memory address range is not affected by interface address assignment.In asynchronous serial transfer of data the two units share a common clock.In synchronous serial transmission of data the two units have different clocks.UGC-NET CS 2017 Nov - III Computer Organization and Architecture CPU control design and Interfaces Discuss itQuestion 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: 17 20 24 32 UGC-NET CS 2017 Nov - III Computer Organization and Architecture Pipelining and Addressing modes Discuss itQuestion 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 7Consider 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)S1S2S3S4UGC-NET CS 2017 Nov - III Transactions and concurrency control Discuss itQuestion 7-Explanation: We can draw precedence graph for each schedule and for conflict serializability graph must not contain cycle. Refer:Gate_CS 2014 So, option (D) is correct. Question 8Suppose 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 ?Topological orderDepth - first orderBreadth - first orderAscending order of transaction indicesUGC-NET CS 2017 Nov - III Transactions and concurrency control Discuss itQuestion 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 9If every non-key attribute is functionally dependent on the primary key, then the relation is in __________ .First normal formSecond normal formThird normal formFourth normal formUGC-NET CS 2017 Nov - III Database Design(Normal Forms) Discuss itQuestion 9-Explanation: Conditions for various normal forms: 1 NF - A relation R is in first normal form (1NF) if and only if all underlying domains contain atomic values only. 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 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. 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 10Consider 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 __________ .in 1NF but not in 2NFin 2NF but not in 3NFin 3NF but not in BCNFin BCNFUGC-NET CS 2017 Nov - III ER and Relational Models Discuss itQuestion 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. 12345678 There are 74 questions to complete. You have completed questions question Your accuracy is Correct Wrong Partial-Credit You have not finished your quiz. If you leave this page, your progress will be lost. Correct Answer You Selected Not Attempted Final Score on Quiz Attempted Questions Correct Attempted Questions Wrong Questions Not Attempted Total Questions on Quiz Question Details Results Date Score Hint Time allowed minutes seconds Time used Answer Choice(s) Selected Question Text Need more practice! Keep trying! Not bad! Good work! Perfect! Last Updated : 22 Nov, 2021