jee

GATE Exam Sample Paper for Computer Science with Solutions

Sunday, January 19, 2014


Gate sample paper for Computer science:


1. The simplified SOP (Sum of Product) form of the Boolean expression (P + Q + R).(P + Q + R).(P + Q + R) is
(A) (PQ + R)      
(B) (P + QR)        
(C) (PQ + R)      
(D) (PQ + R)
2. Which one of the following circuits is NOT equivalent to a 2-input XNOR (exclusive NOR) gate?

logic gates
logic gates
3. The minimum number of D flip-flops needed to design a mod-258 counter is
(A) 9    
(B) 8        
(C) 512      
(D) 258
4. A thread is usually defined as a ‘light weight process’ because an operating system (OS) maintains smaller data structures for a thread than for a process. In relation to this, which of the followings is TRUE?
(A) On per-thread basis, the OS maintains only CPU register state.
(B) The OS does not maintain a separate stack for each thread.
(C) On per-thread basis, the OS does not maintain virtual memory state.
(D) On per thread basis, the OS maintains only scheduling and accounting information.
5. In an MxN matrix such that all non-zero entries are covered in a rows and b columns. Then the maximum number of non-zero entries, such that no two are on the same row or column, is
A)  £ a + b
B)  £ max {a, b}
C)  £ min {M-a, N-b}
D)  £ min {a, b}
6. The order of an internal node in a B+ tree index is the maximum number of children it can have. Suppose that a child pointer takes 6 bytes, the search field value takes 14 bytes, and the block size is 512 bytes. What is the order of the internal node?
A) 24
B) 25
C) 26
D) 27
7. The lexical analysis for a modern computer language such as Java needs the power of which one of the following machine models in a necessary and sufficient sense?
(A) Finite state automata
(B) Deterministic pushdown automata
(C) Non-Deterministic pushdown automata
(D) Turing machine
8. Let the page fault service time be 10ms in a computer with average memory access time being 20ns. If one page fault is generated for every 106 memory accesses. What is the effective access time for the memory?
(A) 21ns    
(B) 30ns    
(C) 23ns    
(D) 35ns
9. Consider a hypothetical processor with an instruction of type LW R1, 20(R2), which during execution reads a 32-bit word from memory and stores it in a 32-bit register R1. The effective address of the memory location is obtained by the addition of constant 20 and the contents of register R2. Which of the following best reflects the addressing mode implemented by this instruction for the operand in memory?
(A) Immediate Addressing                      
(B) Register Addressing
(C) Register Indirect Scaled Addressing
(D) Base Indexed Addressing
10. What does the following fragment of C-program print?
( )
char c “GATE2011″;
char *p =c;
printf (“%s”, p+p [3] – p [1]) ;
(A) GATE2011
(B) E2011  
(C) 2011
(D) 011
11. A max-heap is a heap where the value of each parent is greater than or equal to the value of its children. Which of the following is a max-heap?
B-tree
b-tree

B -tree
B-tree
12. An algorithm to find the length of the longest monotonically increasing sequence of numbers in an array A0 :n − 1 is given below. Let Li denote the length of the longest monotonically increasing sequence starting at index i in the array Initialize Ln-1 =1 For all i such that 0 £ i £ n − 2 finally the length of the longest monotonically increasing sequence is Which of the following statements is TRUE?
(A) The algorithm uses dynamic programming paradigm
(B) The algorithm has a linear complexity and uses branch and bound paradigm
(C) The algorithm has a non-linear polynomial complexity and uses branch and bound paradigm
(D) The algorithm uses divide and conquer paradigm.
13. Let P be a regular language and Q be a context free language such that Q Í P.(For example, let P be the language represented by the regular expression p*q* and Q be { n n Î } p q |n N ). Then which of the following is ALWAYS regular?
(A) P Ç Q      
(B) P – Q        
(C) X*  P      
(D) X*  Q
14. In a compiler, keywords of a language are recognized during
(A) Parsing of the program                          
(B) The code generation
(C) The lexical analysis of the program        
(D) Dataflow analysis
15. A layer-4 firewall (a device that can look at all protocol headers up to the transport layer) CANNOT
(A) Block entire HTTP traffic during 9:00pm and 5:00am
(B) Block all ICMP traffic
(C) Stop incoming traffic from a specific IP address but allow outgoing traffic to the same IP address
(D) Block TCP traffic from a specific user on a multi-user system during 9:00pm and 5:00am
16. If two fair coins are flipped and at least one of the outcomes is known to be a head, what is the probability that both outcomes are heads?
(A) 1/3      
(B) 1/4      
(C) 1/2    
 (D) 2/3
17. Consider different activities related to email.
m1: Send an email from a mail client to a mail server
m2: Download an email from mailbox server to a mail client
m3: Checking email in a web browser
Which is the application level protocol used in each activity?
(A) m1:HTTP m2:SMTP m3:POP      
(B) m1:SMTP m2:FTP m3:HTTP
(C) m1: SMTP m2: POP m3: HTTP    
(D) m1: POP m2: SMTP m3:IMAP
18. A company needs to develop a strategy for software product development for which it has a choice of two programming languages L1 and L2. The number of lines of code (LOC) developed using L2 is estimated to be twice the LOC developed with L1. The product will have to be maintained for five years. Various parameters for the company are given in the table below.
Parameter Language L1 Language L2
Man years needed for developmentLOC / 10000LOC / 10000
Development Cost per yearRs. 10,00,00 Rs. 7,50,000
Maintenance time5 years 5 years
Cost of maintenance per yearRs. 1,00,000Rs. 50,000
Total cost of the project includes cost of development and maintenance. What is the LOC for L1 for which the cost of the project using L1 is equal to the cost ofthe project using L2?
(A) 4000      
(B) 5000      
(C) 4333        
(D) 4667
19. Let the time taken to switch between user and kernel modes of execution be t1 while the time taken to switch between two processes be t2. Which of the following is TRUE?
(A) t1 > t2
(B) t1 = t2
(C) t1 < t2
(D) Nothing can be said about the relation between t1 and t2
20. A company needs to develop digital signal processing software for one of its newest inventions. The software is expected to have 40000 lines of code. The company needs to determine the effort in person-months needed to develop this software using the basic COCOMO model. The multiplicative factor for this model is given as 2.8 for the software development on embedded systems, while the Exponentiation factor is given as 1.20. What is the estimated effort in person months?
(A) 234.25      
(B) 932.50        
(C) 287.80    
(D) 122.40
21. Which of the following pairs have DIFFERENT expressive power?
(A) Deterministic finite automata (DFA) and Non-deterministic finite automata (NFA).
(B) Deterministic push down automata (DPDA) and Non-deterministic push down automata (NPDA).
(C) Deterministic single-tape Turing machine and Non-deterministic single tape Turing machine.
(D) Single-tape Turing machine and multi-tape Turing machine.
22. HTML (Hyper Text Markup Language) has language elements which permit certain actions other than describing the structure of the web document. Which one of the following actions is NOT supported by pure HTML (without any server or client side scripting) pages?
(A) Embed web objects from different sites into the same page.
(B) Refresh the page automatically after a specified interval.
(C) Automatically redirect to another page upon download.
(D) Display the client time as part of the page.
23. Which of the following is NOT desired in a good Software Requirement Specifications (SRS) document?
(A) Functional Requirements
(B) Non Functional Requirements
(C) Goals of Implementation
(D) Algorithms for Software Implementation
24. A computer handles several interrupt sources of which the following are relevant for this question.
Interrupt from CPU temperature sensor
Interrupt from Mouse
Interrupt from Keyboard
Interrupt from Hard Disk
(A) Interrupt from Hard Disk    
(B) Interrupt from Mouse
(C) Interrupt from Keyboard  
 (D) Interrupt from CPU temp sensor
25. Consider a relational table with a single record for each registered student with the following attributes.
1. Registration_Number: Unique registration number for each registered student.
2. UID: Unique Identity number, unique at the national level for each citizen.
3. BankAccount_Number: Unique account number at the bank. A student can have multiple accounts or joint accounts. This attributes stores the primary account number.
4. Name: Name of the Student
5. Hostel_Room: Room number of the hostel
Which of the following options is INCORRECT?
(A) BankAccount_Number is a candidate key.
(B) Registration_Number can be a primary key.
(C) UID is a candidate key if all students are from the same country.
(D) If S is a superkey such that S UID ∩ is NULL then S ∪ UID is also a superkey
Exp: – In case two students hold joint account then BankAccount_Num will not uniquely determine other attributes.
Gate sample paper for computer science
Q. No. 26 – 51 Carry Two Marks Each
26. Which of the given options provides the increasing order of asymptotic complexity of functions f1, f2, f3 and f4?
F(1) = 2n, f(2) = n3/2
F(3) = n log n, f(4) = nlog2
 (A) f3, f2, f4, f1  
(B) f3, f2, f1, f4    
 (C) f2, f3, f1, f4      
(D) f2, f3, f4, f1
27. Four matrices M1, M2, M3 and M4 are dimensions p × q, q × r, r × s and s × t respectively can be multiplied in several ways with different number of total scalar multiplications. For example When multiplied as ((M1 *M2) (M3* M4 )) 1 2 3 4 M ×M × M ×M the total number of scalar multiplications is pqr+rst+prt. When multiplied as ((( M1 * M2) *M3 ) *M4 )  the total number of scalar multiplications is pqr+prs+pst. If p=10, q=100, r=20, s=5 and t=80, then the minimum number of scalar multiplications needed is
(A) 248000      
(B) 44000    
(C) 19000      
(D) 25000
28. The database can be configured to do ordered indexing on Ap or hashing on Ap. Which of the following statements is TRUE?
(A) Ordered indexing will always outperform hashing for both queries
(B) Hashing will always outperform ordered indexing for both queries
(C) Hashing will outperform ordered indexing on Q1, but not on Q2
(D) Hashing will outperform ordered indexing on Q2, but not on Q1.
29. Consider the matrix as given below.
1 2 3
0 4 7
0 0 3
Which one of the following provides the CORRECT values of eigenvalues of the matrix?
(A) 1,4,3        
(B) 3,7,3      
(C) 7,3,2  
(D) 1,2,3
30. Consider an instruction pipeline with four stages (S1, S2, S3 and S4) each with combinational circuit only. The pipeline registers are required between each stage and at the end of the last stage. Delays for the stages and for the pipeline registers are as given in the figure.
Untitled
What is the approximate speed up of the pipeline in steady state under ideal conditions when compared to the corresponding non-pipeline implementation?
(A) 4.0        
(B) 2.5      
(C) 1.1    
(D) 3.0
31. Definition of a language L with alphabet {a} is given as following { nk } L = a |k > 0, and n is a positive integer constant What is the minimum number of states needed in a DFA to recognize L?
(A) k+1      
 (B) n+1      
(C) 2n+1      
(D) 2k+1
32. An 8 KB direct mapped write-back cache is organized as multiple blocks, each of size 32-bytes. The processor generates 32-bit addresses. The cache controller maintains the tag information for each cache block comprising of the following. 1 Valid bit 1 modified bit As many bits as the minimum needed to identify the memory block mapped in the cache. What is the total size of memory needed at the cache controller to store metadata (tags) for the cache?
(A) 4864 bits
(B) 6144 bits
 (C) 6656 bits
(D) 5376 bits
33. An application loads 100 libraries at start up. Loading each library requires exactly one disk access. The seek time of the disk to a random location is given as 10 ms. Rotational speed of disk is 6000 rpm. If all 100 libraries are loaded from random locations on the disk, how long does it take to load all libraries? (The time to transfer data from the disk block once the head has been positioned at the start of the block may be neglected)
(A) 0.50s      
(B) 1.50s    
(C) 1.25s    
(D) 1.00s
34. A deterministic finite automation (DFA)D with alphabet Ó = {a,b} is given below
Untitled

Which of the following finite state machines is a valid minimal DFA which accepts the same language as D?
Untitled

c


d

35. The following is comment written for a C function
/* This function computes the roots of a quadratic equation a.x^2+b.x+c=0. The function stores two real roots in *root1 and *root2 and returns the status of validity of roots. It handles four different kinds of cases.
i When coefficient a is zero irrespective of discriminant
ii When discriminant is positive
iii When discrimanant is zero
iv When discrimanant is negative
Only in cases ii and iii , the stored roots are valid. Otherwise 0 is stored in the roots. the function returns 0 when the roots are valid and -1 otherwise. The functin also ensures root1>=root2. int get_QuadRoots float a, ( float b, float c, float *root1, float *root2);
* /A software test engineer is assigned the job of doing black box testing. He comes up with the following test cases, many of which are redundant.
Untitled
Which one of the following options provide the set of non-redundant tests using equivalence class partitioning approach from input perspective for black box testing?
(A) T1,T2,T3,T6  
(B) T1,T3,T4,T5        
(C) T2,T4,T5,T6      
(D) T2,T3,T4,T5
36. Database table by name Loan_Records is given below.
Borrower Bank_Manager  Loan_ Amount
RamuSunderajan10000.00
SanjayRamgopal5000.00
MaheshSunderajan7000.00
What is the output of the following SQL query?
SELECT count(*)
FROM(
(SELECT Borrower. Bank_Manager FROM Loan_Records) AS S
NATURAL JOIN
(SELECT Bank_Manager, Loan_Amount FROM Loan_Records) AS T
);
(A) 3    
(B) 9      
(C) 5    
(D) 6
37. Consider two binary operators ‘ ­ ‘ and ‘ ¯ ‘ with the precedence of operator ¯ being lower than that of the operator ­ . Operator ­ is right associative while operator ¯, is left associative. Which one of the following represents the parse tree for expression
7
Untitled
c d
38. Which of the following statements is NOT TRUE?
(A) Push Down Automata (PDA) can be used to recognize L1 and L2
(B) L1 is a regular language
(C) All the three languages are context free
(D) Turing machines can be used to recognize all the languages
39. On a non-pipelined sequential processor, a program segment, which is a part of the interrupt service routine, is given to transfer 500 bytes from an I/O device to memory. Initialize the address register Initialize the count to 500
LOOP: Load a byte from device Store in memory at address given by address register Increment the address register Decrement the count
If count != 0 go to LOOP
Assume that each statement in this program is equivalent to a machine instruction which takes one clock cycle to execute if it is a non-load/store instruction. The load-store instructions take two clock cycles to execute. The designer of the system also has an alternate approach of using the DMA controller to implement the same transfer. The DMA controller requires 20 clock cycles for initialization and other overheads. Each DMA transfer cycle takes two clock cycles to transfer one byte of data from the device to the memory. What is the approximate speedup when the DMA controller based design is used in place of the interrupt driven program based input-output?
(A) 3.4        
(B) 4.4      
(C) 5.1      
(D) 6.7
40. We are given a set of n distinct elements and an unlabeled binary tree with n nodes. In how many ways can we populate the tree with the given set so that it becomes a binary search tree?
(A) 0      
(B) 1      
(C) n!      
(D) 1/ n+1
41. Which one of the following options is CORRECT given three positive integers x, y and z, and a predicate P (x) = ¬(x = 1) Ù “y ($z (x = y * z) ⇒ (y = x) Ú (y = 1))
(A) P(x) being true means that x is a prime number
(B) P(x) being true means that x is a number other than 1
(C) P(x) is always true irrespective of the value of x
(D) P(x) being true means that x has exactly two factors other than 1 and x
42. The relation scheme Student Performance (name, courseNo, rollNo, grade) has the following functional dependencies:
A) name, courseNo -> grade
B) rollNo, courseNo -> grade
C) name -> rollNo
D) rollNo -> name
The highest normal form of this relation scheme is
43. Consider a database table T containing two columns X and Y each of type integer.
After the creation of the table, one record (X= 1, Y=l) is inserted in the table. Let MX and MY denote the respective maximum values of X and Y among all records in the table at any point in time. Using MX and MY, new records are inserted in the table 128 times with X and Y values being MX+1, 2*MY+1 respectively. It may be noted that each time after the insertion, values of MX and MY change. What will be the output of the following SQL query after the steps mentioned above are carried out?
SELECT Y FROM T WHERE X=7;
(A) 127    
(B) 255    
(C) 129
(D) 257
44. Consider a finite sequence of random values X = x1,x2,…xn . Let ìx be the mean and x s be the standard deviation of X .Let another finite sequence Y of equal length be derived from this as i i y = a* x + b, where a and b are positive constants. Let y ì be the mean and y s be the standard deviation of this sequence. Which one of the following statements is INCORRECT?
(A) Index position of mode of X in X is the same as the index position of mode of Y in Y.
(B) Index position of median of X in X is the same as the index position of median of Y in Y.
45. A deck of 5 cards (each carrying a distinct number from 1 to 5) is shuffled thoroughly. Two cards are then removed one at a time from the deck. What is the probability that the two cards are selected with the number on the first card being one higher than the number on the second card?
(A) 1/5      
(B) 4/25    
(C) 1/4      
(D) 2/5
46. Consider the following table of arrival time and burst time for three processes P0, P1 and P2.
Process Arrival time Burst Time
P0  0 ms 9 ms
P1 1 ms 4ms
P2 2 ms 9ms
The pre-emptive shortest job first scheduling algorithm is used. Scheduling is carried out only at arrival or completion of processes. What is the average waiting time for the three processes?
(A) 5.0 ms  
(B) 4.33 ms      
(C) 6.33 ms  
(D) 7.33 ms
47. Consider evaluating the following expression tree on a machine with load-store architecture in which memory can be accessed only through load and store instructions. The variables a, b, c, d and e are initially stored in memory. The binary operators used in this expression tree can be evaluated by the machine only when the operands are in registers. The instructions produce result only in a register. If no intermediate results can be stored in memory, what is the minimum number of registers needed to evaluate this expression?
(A) 2        
(B) 9  
(C) 5      
(D) 3
gate sample paper for computer science
Common Data Questions: 48 & 49
Consider the following recursive C function that takes two arguments
( )
( ) ( ) ( )
unsigned int foo unsigned int n, unsigned int r { if n 0 return n%r foo n / r, r );
else return 0;}
> +
48. What is the return value of the function foo when it is called as foo (513, 2)?
(A) 9        
(B) 8    
(C) 5      
(D) 2
49. What is the return value of the function foo when it is called as foo (345, 10) ?
(A) 345      
(B) 12      
(C) 5      
(D) 3
Common Data Questions: 50 & 51
Consider the following circuit involving three D-type flip-flops used in a certain type of counter configuration.
Untitled

50. If all the flip-flops were reset to 0 at power on, what is the total number of distinct outputs (states) represented by PQR generated by the counter?
(A) 3    
(B) 4    
(C) 5  
(D) 6
51. If at some instance prior to the occurrence of the clock edge, P, Q and R have a value 0, 1 and 0 respectively, what shall be the value of PQR after the clock edge?
(A) 000    
(B) 001  
(C) 010    
(D) 011
Gate Sample Paper for Computer science
Linked Answer Questions: Q.52 to Q.55 Carry Two Marks Each
Statement for Linked Answer Questions: 52 & 53
An undirected graph G(V,E) contains n ( n >2 ) nodes named V1 , v2 ,….v . Two nodes  vi , vj are connected if and only if 0 < i − j £ 2. Each edge (  vi ,v j ) is Assigned a weight i + j. A sample graph with n = 4 is shown below
<Untitled

52. What will be the cost of the minimum spanning tree (MST) of such a graph with n nodes?
(A)1/ 12 (11n2 – 5n)
(B)n2 – n+ 1
(C) 6n – 11
(D) 2n + 1
53. The length of the path from v5 to v6 in the MST of previous question with n = 10 is
(A) 11      
(B) 25      
(C) 31  
(D) 41
Statement for Linked Answer Questions: 54 & 55
Consider a network with five nodes, N1 to N5, as shown below
The net work uses a Distance Vector Routing protocol. Once the routes have stabilized, the distance vectors at different nodes are as following
Untitled

N1: 0, 1, 7, 8, 4
N2 : 1, 0, 6, 7, 3
N3: 7, 6, 0, 2, 6
N4 : 8, 7, 2, 0, 4
N5 : 4, 3, 6, 4, 0
Each distance vector is the distance of the best known path at that instance to nodes, N1 to N5, where the distance to itself is 0. Also, all links are symmetric and the cost is identical in both directions. In each round, all nodes exchange their distance vectors with their respective neighbors. Then all nodes update their distance vectors. In between two rounds, any change in cost of a link will cause the two incident nodes to change only that entry in their distance vectors
54. The cost of link N2-N3 reduces to 2 in (both directions). After the next round of updates, what will be the new distance vector at node, N3?
(A) (3. 2, 0, 2, 5)
(B) (3, 2, 0, 2, 6)
(C) (7, 2, 0, 2, 5)
(D) (7, 2, 0, 2, 6)
55. After the update in the previous question, the link N1-N2 goes down. N2 will reflect this change immediately in its distance vector as cost, ¥ . After the NEXT ROUND of update, what will be the cost to N1 in the distance vector of N3?
(A) 3      
(B) 9        
(C) 10    
(D) ¥
Gate sample Paper for Computer science
Q. No. 56 – 60 Carry One Mark Each
56. If Log (P) = (1/2)Log (Q) = (1/3) Log (R), then which of the following options is TRUE?
(A) P2 = Q3R2    
(B) 2 Q = PR    
(C) 2 3 Q = R P    
(D) 2 2 R = P Q
57. Choose the most appropriate word(s) from the options given below to complete the following sentence.
I contemplated________Singapore for my vacation but decided against it.
(A) To visit
(B) Having to visit
(C) Visiting
(D) For a visit
Exp: – Contemplate is a transitive verb and hence is followed by a gerund Hence the correct usage of contemplate is verb+ ing form.
58. Choose the most appropriate word from the options given below to complete the following sentence.
If you are trying to make a strong impression on your audience, you cannot do so by being understated, tentative or_____________.
(A) Hyperbolic                
(B) Restrained
(C) Argumentative          
(D) Indifferent
59. Choose the word from the options given below that is most nearly opposite in meaning to the given word: Amalgamate
(A) Merge    
 (B) Split    
 (C) Collect    
(D) Separate
60. Which of the following options is the closest in the meaning to the word below: Inexplicable
(A) Incomprehensible      
(B) Indelible
(C) Inextricable              
 (D) Infallible
Q. No. 61 – 65 Carry Two Marks Each
61. P, Q, R and S are four types of dangerous microbes recently found in a human habitat. The area of each circle with its diameter printed in brackets represents the growth of a single microbe surviving human immunity system within 24 hours of entering the body. The danger to human beings varies proportionately with the toxicity, potency and growth attributed to a microbe shown in the figure below
Untitled

A pharmaceutical company is contemplating the development of a vaccine against the most dangerous microbe. Which microbe should the company target in its first attempt?
(A) P    
(B) Q    
(C) R    
(D) S
62. The variable cost (V) of manufacturing a product varies according to the equation V= 4q, where q is the quantity produced. The fixed cost (F) of production of same product reduces with q according to the equation F = 100/q. How many units should be produced to minimize the total cost (V+F)?
(A) 5      
(B) 4    
(C) 7      
(D) 6
63. A transporter receives the same number of orders each day. Currently, he has some pending orders (backlog) to be shipped. If he uses 7 trucks, then at the end of the 4th day he can clear all the orders. Alternatively, if he uses only 3 trucks, then all the orders are cleared at the end of the 10th day. What is the minimum number of trucks required so that there will be no pending order at the end of the 5th day?
(A) 4          
(B) 5        
(C) 6          
(D) 7
64. A container originally contains 10 litres of pure spirit. From this container 1 litre of spirit is replaced with 1 litre of water. Subsequently, 1 litre of the mixture is again replaced with 1 litre of water and this process is repeated one more time. How much spirit is now left in the container?
(A) 7.58 litres      
(B) 7.84 litres    
(C) 7 litres    
 (D) 7.29 litres
65. Few school curricula include a unit on how to deal with bereavement and grief, and yet all students at some point in their lives suffer from losses through death and parting.
Based on the above passage which topic would not be included in a unit on bereavement?
(A) How to write a letter of condolence
(B) What emotional stages are passed through in the healing process
(C) What the leading causes of death are
(D) How to give support to a grieving friend
Answers:-
(1)B                        (2)D                 (3)A                  (4)A                   (5)A
(6)C                       (7)A                   (8)B                 (9)D                   (10)C
(11)B                     (12)A                (13)C                (14)C                  (15)A
(16)A                     (17)C               (18)B                (19)C                  (20)A
(21)B                     (22)D               (23)D                (24)D                 (25)A
(26)A                     (27)C               (28)C                (29) A                 (30)B
(31)B                    (32)D                (33)B                (34)A                  (35)C
(36)C                    (37)B                (38)C                (39)A                 (40)D
(41)A                    (42)A                (43)A                 (44)D                 (45)A
(46)A                    (47)D                (48)D                (49)B                 (50)B
(51)D                   (52)B                 (53)C                (54)A                  (55)C
(56)B                    (57)C                (58)B                 (59)B                 (60)A
(61)D                    (62)A                (63)C                 (64)D                 (65)C

Free Career Predictions

0 comments:

Post a Comment

Related Posts
Jee Main MBA CBSE GATE Results Exam Results IIT JEE IIT CAT Class 10 Results AIEEE UPSC JEE Advanced Study Abroad B Schools Business Schools Class 12 Results GATE Exam IAS JEE MBA College MBA Institutes BSEB CBSE Results JCECEB JEE Main 2014 JEE Main 2015 Jharkhand MBA Entrance Top MBA Colleges UGC NET University University Rank University Ranking World University World University Ranking XAT AIIMS Bank Jobs CBSE Board CBSE Exam CBSE Examination Datesheet CBSE Results 2014 Civil Services Class 12th Result Entrance Exam Examination Results GATE 2013 IPS JEE (Main) MAT MBA Entrance Exam MBA Exam MBBS NET Exam XAT Entrance Exam XAT Exam AIEEE 2012 AIEEE Results AIEEE Sample Papers AIIMS Entrance AIPMT 2012 Exam AIR Force Bank PO Bank PO Exam Bank Recruitment Board Result CAT Exam CAT Preparation CBSE Board Exam CCE Class X Test Series CCE Test Series Class 12 Class XII Results Coal India Management Trainee Sample Papers Coal India Practice Test Papers Coal India Sample Papers Engineering Colleges Engineering Entrance GATE 2011 GATE 2013 Exam GATE 2014 GATE 2017 GATE Preparation HSC IBPS Exam IBPS Interview Question JEE Main 2017 JEE Main Exam JEE Main Sample Papers JEE Main Tips & Tricks Jharkhand Engineering Jharkhand Gramin Bank Recruitment Jharkhand Intermediate Results Karnataka Board MAT Exam MBA India MP Board MP HSC Exam Management Trainee Model Question Papers NATA NET NET Preparation New Delhi PSC Ranchi SSC U.P Board UP Board UP Board Result UP Exams UPSC Prelims 2014 Universities WBJEE West Bengal XAT 2012 Analysis XAT 2014 XLRI AFCAT AIEEE 2010 Solutions AIEEE 2012 Analysis AIEEE 2012 Answer AIEEE 2012 Answer Key AIEEE 2012 Application AIEEE 2012 Exam AIEEE 2012 Exam Notification AIEEE 2012 Form AIEEE 2012 Online Application AIEEE 2012 Results AIEEE 2012 Solution Key AIEEE 2012 Solutions AIEEE Answer AIEEE Answer Key AIEEE Answers Keys AIEEE Deadlines AIEEE Exam AIEEE Exam Paper Leaked AIEEE Important Dates AIEEE Offline Exam AIEEE Online Exam AIEEE Online Exam Dates AIEEE Previous Papers AIEEE Question Papers AIEEE Questions Papers AIEEE Results 2012 AIEEE Solution Key AIEEE Solutions AIEEE Solutions 2012 AIEEE Study Materials AIIMS Entrance Exam AIIMS MBBS Entrance Exam 2014 AIMA AIMPT 2015 AIPMT AIPMT 2011 Analysis AIPMT 2011 Answer Keys AIPMT 2011 Solutions Key AIPMT 2012 Analysis AIPMT 2012 Exam Notification AIPMT 2012 Final Exam Analysis AIPMT Analysis AIPMT Answer Keys AIPMT Sample Papers AIPMT Solutions. AP Intermediate Result APTET APTET Exam Results APTET Exam Results 2012 APTET Results Admission Admissions Air Force Common Admission Test All India Engineering Entrance Examination Apprentice Training Army B.Ed B.Ed Colleges B.Sc B.Sc. Agriculture B.Tech Result BCECEB DCECE Exam BHMS BPUT Jobs BPUT Vacancy BSEB Board BSEB Results BSEB Results 2012 BSEB Results 2014 Bank Accounts Bank Branches in India Bank Clerical Exam Material Bank Exam Papers Bank IT Officer Question Paper Bank Interview Bank Loans Bank PO Clerical Bank PO Exam Preparation Bank PO Interview Bank PO Study Material Bank PO Test Series Bank Po English Bank Question Papers Bank Recruitments Banks in India Bihar Bihar Board Bihar Board Class 10th Results Bihar Intermediate Results Bihar Polytechnic Result 2011 Bihar School Examination Board Brand Name Brands CAT 2012 CAT 2013 CAT 2013 Preparation CAT 2013 Schedule CAT 2015 CAT 2017 CAT 2017 Preparation CAT 2017 Tips CAT 2017 Tricks CAT Study Material CBSE Board CBSE 12th Datesheet CBSE 12th Result 2016 CBSE AIEEE CBSE Call Centre CBSE Class 10 Date Sheet 2012 CBSE Class X CBSE Class X Exam Results CBSE Class X Results CBSE Class XI2 Result 2012 CBSE Class XII Result 2011 CBSE Exam 2012 CBSE Examination CBSE Result 2011 CBSE Result 2012 CBSE Result 2016 CCE Class IX Test Series CCE Class X Results CIL Management Trainee Question Papers CIL Model Question Papers CIL Question Papers CMAT CMAT 2012 CMAT 2012 Exam CMAT Entrance Exam 2012 CPFA CSAT 2012 CSAT 2012 Answers CSIR syllabus CTET CTET 2014 CTET Result CWE CWE 2011 CWE Clerk 2011 Chemistry Books Chennai Civil Services Exam Preparation Civil Services Examination Class 10 Class 10 Result Class 10th Exam 2012 Class 12 Result Class 12th Datesheet Class X Test Series Clerical Common Written Examination 2011 Clerk Exam Clerks Coal India Sample Question Papers Colleges Combined Medical Services Examination Companies Taglines Competition Competitive Engineering Entrance Constable Currency Derivatives DCECE 2011 Results DHSE Datesheet Delhi Delhi University Download Admit card ECR East Central Railway Electrician Engineering Entrance Exam Exams in India Fitter Forestry Free AIEEE Sample Papers GATE 2011 Preparation GATE 2011 Study Material GATE 2012 Answers Key GATE 2012 Results GATE 2013 Results GATE 2014 Exam GATE 2016 GATE 2017 Answer Key GATE 2021 GATE Entrance Exam GATE Keys Solutions GATE Practice papers GATE Previous Papers GATE Question Paper GATE Questions GATE Results GATE Results 2012 Score Card GATE Sample Paper GATE Score 2012 GATE Score Card GATE Solutions GBSHSE GGB GK GNDU Application Forms GNDU Jobs GNDU Recruitments GNDU Vacancy GRE GRE English GRE General Test GRE Syllabus General Knowledge Goa Goa Board Govt Jobs Odisha Graduate Aptitude Test Engineering Results 2012 All Branches Graduate Record Examination Gurgaon Gramin Bank HSSC HSSC Exam HSTSB I.Sc IAS Exam IAS Exam Preparation IBPS IBPS Clerk Interview IBPS Clerks Exam IBPS Interview Tips IFS IFSC Codes IIFT 2011 Analysis IIFT 2011 Solutions Keys IIFT 2012 Answer Keys IIFT 2012 analysis IIM IISc IIScGATE 2014 IIT Entrance IIT Exam IIT JEE 2011 IIT JEE 2011 Analysis IIT JEE 2011 Answer Keys IIT JEE 2011 Question Papers IIT JEE 2011 Solutions IIT JEE 2012 Study Materials IIT JEE 2013 IIT JEE 2016 IIT JEE Books IIT JEE Online IIT JEE Preparation IIT JEE Preparation Books IIT Question Papers IIT Sample Papers IIT-JEE 2013 IIT-JEE Notification IMT ISEET ISM IT IT Officer ITBP Recruitment ITBP Recruitment Constable ITBP Vacancy ITI India Navy Indian Air Force Indian Forest Service Indian Police Service Indraprastha University Intermediate Result Intermediate Results 2012 JAC Result JAC Results JAC Results 2012 JCECE JCECE Answer Keys JCECE analysis JCECE solutions JCECEB Admit Card JCECEB Ranchi JCECEB Result 2011 JEE (Main) 2012 JEE (Main) 2013 JEE (Main) Notification JEE (Main) Sample Papers JEE 2017 JEE Advanced 2014 JEE Advanced 2014 Answer JEE Advanced 2014 Answer Keys JEE Advanced 2014 Cut-off Marks JEE Advanced 2014 Solutions JEE Advanced Online JEE Books JEE Entrance JEE Exam JEE Main 2013 JEE Main 2014 Answer Key JEE Main 2014 Answers JEE Main 2014 Cutoff JEE Main 2014 Cutoffs JEE Main 2014 Result JEE Main 2014 Solution Keys JEE Main 2014 solutions JEE Main 2015 Answer Keys JEE Main 2015 Institutes JEE Main Admit Card JEE Main Answer Keys JEE Main Participating Institutes JEE Main Participating Institutes 2015 JEE Main Question Papers JEE Main Study Material JEE Main Tips JEE Main Tricks JEE Main2014 JET 2012 JSS Jharkhand 12th Class Results Jharkhand Class 10th Result Jharkhand Class 12 Results Jharkhand Class XII Results Jharkhand Combined Jharkhand Combined Entrance Jharkhand Combined Entrance Exam 2011 Results Jharkhand Combined Entrance Examinations Jharkhand Engineering Answer keys Jharkhand Engineering solution keys Jharkhand Gramin Bank Jharkhand Gramin Bank Office Assistant Vacancies Jharkhand Gramin Bank Recruitment 2012 Jharkhand Results Joint Entrance Test Joint Entrance Test 2012 Junior Engineer Civil Junior Engineer Electrical Junior Engineer Mechanical KMC KSEEB Karnataka Karnataka PUC Result Karnataka Result Karnataka SSLC Exam Kasturba Medical College Kerala Board Kerala DHSE Exam MAH MAT 2012 MAT Exam Dates MAT Exam Preparation MAT Notification MBA Admission MBA Australia MBA Canada MBA Colleges Australia MBA Colleges Canada MBA Colleges India MBA Colleges Mumbai MBA Colleges UK MBA Colleges USA MBA MAT MBA MAT Exam 2012 MBA Preparation MBA UK MBA US MBA United Kingdom MCA MCA Colleges MCA Colleges Kerala MP MPBSE Machinist Madhya Pradesh Maharashtra Board Maharashtra Board Class 10th Results Maharashtra Class 10 Results Maharashtra SSC Results Manipal University Marketing Mechanic Medical Medical Entrance Test Medical Services Exam Meric Results 2012 Metric Mughalsarai Mutual Fund NATA 2013 NATA 2014 NATA Entrance Test NATA Exam NCFM NCFM Certifications NCFM Online Tests NCTE NDA NEET NEET 2017 NET 2014 NET Exam 2012 NET Preparation Materials NET Question Papers NET Study Materials NET syllabus NISM NISM Certifications NISM Online Tests NISM Series NISM Test Series NMIMS NSE NSIT National Aptitude Test in Architecture National Council for Teacher Education National Defence Academy National Eligibility Test National Olympiad Programme Numerical Aptitude ORISSA JEE 2011 Analysis ORISSA JEE 2011 Answer Keys PGDM PGT PGT Teachers PUC PUC Examination PUC Examination Result Ph.D Physics Preparation Books Pilot Pioneer Prelims 2014 Results Private Universities Private Universities India Punjab B.Ed Colleges Quantitative RBSE RINPAS RRCAT Rajasthan Rajasthan Board Rajasthan Engineering Colleges Reasoning Result SMU SNAP SNAP 2011 SNAP 2011 Analysis SNAP 2011 Exam SNAP 2011 Solutions SNAP 2013 SNAP 2013 Exam SNAP 2013 Exam Dates SSC Class X Results SSC Results 2012 SSLC Sample Paper Sample Question Papers Scientist Slogans Specialist Officers Staff Selection Commission Study Materials for NET TN Board Taglines Tamil Nadu Teachers Jobs Tips & Tricks Tips UGC NET Tips for Bank Exams Top Engineering Colleges Jharkhand Top Universities Trivandrum Turner UGC UGC CSIR UGC CSIR NET UGC CSIR NET syllabus UGC CSIR Study Materials UGC NET Exam UGC NET Syllabus UGC SLET UP UP B.Ed UP B.Ed JEE UP B.Ed JEE 2013 UP Board 10th Result UP Board 12th Result UP Class 10 Result UP Class 10th Secondary Results UP Class 12 Result UPSC Exam UPSC Exam 2012 UPSC Exam Preparation UPSC Prelims 2012 UPSC Prelims 2012 Solution Keys UPSC Prelims Exam UPSC 2014 UPSEE 2014 Answer UPSEE 2014 Answer Keys UPSEE 2014 Cutoff Marks UPSEE 2014 Solutions UPSEE 2014 UG Answer Keys UPTET UPTET 2013 Results Union Public Service Commissio University Grants Commission Uttar Pradesh Verbal Verbal Ability WB WBJEE 2014 Answer WBJEE 2014 Answer Keys WBJEE 2014 Cutoff Marks WBJEE 2014 Solutions WBJEE Answer Key WBJEE Answer Keys WBJEE Answers Key WBJEE Cut-Offs WBJEE Rank Cutoffs WBJEE Solutions WBJEE Solutions Key WBJEEM WBJEEM 2014 Welder West Bengal Engineering Wireman XAT 2012 XAT 2012 Answer Keys XAT 2012 Cut-Off XAT 2012 Exam XAT 2013 XAT 2013 Registration XAT 2014 Analysis XAT 2014 Solutions XAT 2015 XAT Exam 2013 XAT Exam 2014 XAT Exam 2015 XAT Exam Dates XAT Sample Papers XLRI EXAM 2012 bput.ac.in careerairforce.nic.in gate.iitk.ac.in GATE Score Card 2012 ggbank.org gndu.ac.in high schoolclass 10 Results itbp.gov.in nism.ac.in nseindia.com www.gndu.ac.in www.xatonline.net.in www.xlri.ac.in