Ans .

B/C/D


  1. Explanation : The function of an IC (integrated circuit) chip is to replace many separate electronic components which could possibly have been used to build a particular electronic circuit. Most of those separate components are replaced by just one tiny IC chip that has been manufactured ("fabricated" is the correct technical word) to include extremely miniature circuits which imitate the behavior of all those separate components.





Ans .

A


  1. Explanation : Stack is used to store critical data duriing subroutines and interrupt.





Ans .

C


  1. Explanation : CS is Code Segment.





Ans .

B


  1. Explanation : The code segment register is used for addressing a memory location in the code segment of memory, where executable program is stored.





Ans .

D


  1. Explanation : An integrated circuit or monolithic integrated circuit (also referred to as an IC, a chip, or a microchip) is a set of electronic circuits on one small flat piece (or "chip") of semiconductor material, normally silicon.





Ans .

B


  1. Explanation : By atomic , either all the effects of the transaction are reflected in the database, or none are (after rollback).





Ans .

C


  1. Explanation : It is an abstraction through which relationships are treated as higher level entities Aggregation. (In ER diagram, aggregation is used to represent a relationship as an entity set.





Ans .

B


  1. Explanation : IS – Intent to get S lock(s) at finer granularity.





Ans .

B


  1. Explanation : Strong entities E1 and E2 are represented as separate tables. In addition to that many-to-many relationships(R2) must be converted as seperate table by having primary keys of E1 and E2 as foreign keys. One-to-many relaionship (R1) must be transferred to ‘many’ side table(i.e. E2) by having primary key of one side(E1) as foreign key( this way we need not to make a seperate table for R1). Let relation schema be E1(a1,a2) and E2( b1,b2). Relation E1( a1 is the key) Relation E2( b1 is the key, a1 is the foreign key, hence R1(one-many) relationship set satisfy here ) Relation R2 ( {a1, b1} combined is the key here , representing many-many relationship R2 )





Ans .

B


  1. Explanation : In domain relational calculus we create variable for every column.





Ans .

C


  1. Explanation : To insert an element, we need to search for its place first. The search operation may take O(n) for a skewed tree.





Ans .

A


  1. Explanation : Since,it is a layer 4 firewall,it cannot block application layer protocol like HTTP. Transport layer has port number and port number of http is 80 and thus firewall can block http traffic





Ans .

A


  1. Explanation : Lexical analysis is the first step in compilation. In lexical analysis, program is divided into tokens. Lexical analyzers are typically based on finite state automata.





Ans .

B


  1. Explanation : Minimum spanning tree for 2 nodes would be (v1) _ (v2) Total weight 3 Minimum spanning tree for 3 nodes would be (v1) _ (v2) | (v3) Total weight= 3 + 4 = 7 Minimum spanning tree for 4 nodes would be (v1) _ (v2) _ (v4) | (v3) Total weight= 3 + 4 + 6 = 13 Minimum spanning tree for 5 nodes would be (v1) _ (v2) _ (v4) | (v3) | (v5) Total weight= 3 + 4 + 6 + 8 = 21 Minimum spanning tree for 6 nodes would be (v1) _ (v2) _ (v4) _ (v6) | (v3) | (v5) Total weight= 3 + 4 + 6 + 8 + 10 = 31 We can observe from above examples that when we add kth node, the weight of spanning tree increases by 2k-2. Let T(n) be the weight of minimum spanning tree. T(n) can be written as T(n) = T(n-1) + (2n-2) for n > 2 T(1) = 0, T(2) = 0 and T(2) = 3 The recurrence can be written as sum of series (2n – 2) + (2n-4) + (2n-6) + (2n-8) + …. 3 and solution of this recurrence is n^2 – n + 1.





Ans .

D


  1. Explanation : If the graph is planar, then it must follow below Euler’s Formula for planar graphs v - e + f = 2 v is number of vertices e is number of edges f is number of faces including bounded and unbounded 10 - 15 + f = 2 f = 7 There is always one unbounded face, so the number of bounded faces = 6





Ans .

B


  1. Explanation : There can be total 6C4 ways to pick 4 vertices from 6. The value of 6C4 is 15. Note that the given graph is complete so any 4 vertices can form a cycle. There can be 6 different cycle with 4 vertices. For example, consider 4 vertices as a, b, c and d. The three distinct cycles are cycles should be like this (a, b, c, d,a) (a, b, d, c,a) (a, c, b, d,a) (a, c, d, b,a) (a, d, b, c,a) (a, d, c, b,a) and (a, b, c, d,a) and (a, d, c, b,a) (a, b, d, c,a) and (a, c, d, b,a) (a, c, b, d,a) and (a, d, b, c,a) are same cycles. So total number of distinct cycles is (15*3) = 45.





Ans .

C


  1. Explanation : The transform at the heart of JPEG compression standard for digital images is descrete cosine transform.





Ans .

B


  1. Explanation : The main idea for using Spanning Trees is to avoid loops.





Ans .

B


  1. Explanation : The maximum window size for data transmission using the selective reject protocol with n -bit frame sequence number is 2^(n-1).