Google Fresher's latest Interview Questions  

Google telephonic Interview

  1. Asked about my project. Prepare well to answer any type of questions that may arise in your project.They will just ask to explain about any one of the projects listed in your resume.
  2. In a plane, n points are given i.e. the input is (x1,y1), (x2,y2)... (xn,yn). Now given these n points.Find the maximum number of collinear points.
    Solution:
    The duality algorithm would work. Find the point of intersection with maximum no of lines incident on it in the dual plane. It works in O(n^2).
  3. Write the code for finding the min of n number.
    I gave:
    

    for(i=0;i{
    if( a[i] {
    min = a[i] ---- eq(i)
    }
    }

    Given that n numbers are from random sampling how many times (probability) does the line (i) be executed


    Solution:

    min=a[0];
    
    for(i=1;i{
    if( a[i] {

    min = a[i]; -------eq(i)
    }

    }

    Once the variable min is initialized,the probability of a[i] <>

Google Interview Round 2:


  1. What is Bottom up parsing and what is top down parsing?

    Solution:


    Bottom-up parsing is a strategy for analyzing unknown data relationships that attempts to identify the most fundamental units first, and then to infer higher-order structures from them. It attempts to build trees upward toward the start symbol. It occurs in the analysis of both natural languages and computer languages.


    Top-down parsing is a strategy of analyzing unknown data relationships by hypothesizing general parse tree structures and then considering whether the known fundamental structures are compatible with the hypothesis. It occurs in the analysis of both natural languages and computer languages. Please refer to these links for much better information.


    http://en.wikipedia.org/wiki/Bottom-up_parsing


    http://en.wikipedia.org/wiki/Top-down_parsing


  2. What is a symbol table?

    Solution:
    In computer science, a symbol table is a data structure used by a language translator such as a compiler or interpreter, where each identifier in a program's source code is associated with information relating to its declaration or appearance in the source, such as its type, scope level and sometimes its location.
    Check out
    http://en.wikipedia.org/wiki/Symbol_table



  3. There is a portal with two billion users registered. If you store all the 2 billion users in a conventional databases it will take more time to retrieve the data about a particular user when that user tries to login. How do you handle this situation to make sure that the user gets the response quickly.


    Solution:
    Every row has a primary key. Suppose the primary key for this
    particular database is the name of the user then we can sort the names based
    on alphabets and do secondary indexing based on the starting alphabet . If
    the data is uniformly distributed we can go for multilevel indexing or
    hashing.Similarly if we have a registration number as the primary key then
    we can sort the table based on registration number and then do indexing
    either secondary level or multilevel or apply hashing techniques based on
    the distribution of data. Many efficient algorithms are available for
    indexing and hashing.



  4. There are 8 identical balls. One of them is defective. It could be either heavier of lighter. Given a common balance how do you find the defective ball in least number of weighings.


    Solution:
    Weigh 3 balls against 3 others.
    Case A: If, on the first weighing, the balls balance, then the defective is among the 2 remaining balls and can be determined using 2 weighings making it a total of 3.

    Case B:

    Step1: If, on the first weighing, the balls don't balance.
    If the balls do not balance on the first weighing, we know that the odd ball is one of the 6 balls that was weighed. We also know that the group of 2 unweighed balls are normal, and that one of the sides, let's say Side A, is heavier than the other (although we don't know whether the odd ball is heavy or light).
    Step 2 : Take 2 balls from the unweighed group and use them to replace 2 balls on Side A (the heavy side). Take the 2 balls from Side A and use them to replace 2 balls on Side B (which are removed from the scale).

    I. If the scale balances, we know that one of the 2 balls removed from the scale was the odd one. In this case, we know that the ball is also light. We can proceed with the third weighing amd determine the lighter of the 2 balls ,hance the defective.

    II. If the scale tilts to the other side, so that Side B is now the heavy side, we know that one of the three balls moved from Side A to Side B is the odd ball, and that it is heavy. We proceed with the third weighing and determine the heavier one ,the defective.

    III. If the scale remains the same, we know that one of the two balls on the scale that was not shifted in our second weighing is the odd ball. We also know that the unmoved ball from Side A is heavier than the unmoved ball on Side B (though we don't know whether the odd ball is heavy or light).




    Step 3 (for Case B): Weigh the ball from Side A against a normal ball. If the scale balances, the ball from Side B is the odd one, and is light. If the scale does not balance, the ball from Side A is the odd one, and is heavy.



  5. You have all the English words with you. you would like to manage a dictionary so that you can look up when ever you have doubt. Which data structure would you like to use and why?


    Solution:
    Dozens of different data structures have been proposed for implementing dictionaries including hash tables, skip lists, and balanced/unbalanced binary search trees -- so choosing the right one can be tricky. Depending on the application, it is also a decision that can significantly impact performance. In practice, it is more important to avoid using a bad data structure than to identify the single best option available.As the frequency of look ups for a word is also important,weighted binary search tree with weights in proportion to the frequency of lookups and determining the depth, can be effective.


  6. Asked me about all the details of hash table and heaps.


  7. Write code for finding number of zeros in n!


    Solution:

    A zero in n! typically occurs when a multiple of 5 gets multiplied to an even number.We use this simple yet effective information to solve this problem.In the first n natural numbers,those divisible by 5 are always less than the no of even numbers.So it all boils down to the power of 5 in the prime factorization of n! .
    This simple formula works for finding it floor(n/5)+floor(n/25)+floor(n/125)+......

    function zeros(int n)
    {
    int count=0,k=1;
    while(n>=pow(5,k))
    {
    count+=n/pow(5,k);
    k++;
    }
    return count;
    }

    this count is the number of o's in n!.




Google Interview Round 3 :




  1. Write C++ class for the game Connect Four. [Connect Four (also known as Plot Four, Four In A Row, and Four In A Line) is a two-player board game in which the players take turns in dropping discs into a seven column grid with the objective of getting four of one's own discs in a line.]


  2. Given a stack and an input string of 1234.At any point you can do anyone of the follow
    i. take the next input symbol and Enque.
    
    ii. you can pop as many as you can. When ever you
    pop an element it will be printed
    (you cannot pop from an empty stack)

    How many such permutations are possible on an input of size N?


    Solution:
    It is Nth catalan number.For a detailed solution look at question5 of Stacks and Queues



  3. Give an example of one permutation that this data structure cannot generate.
    For Example:
    

    1234 is input.

    First push all 1,2,3,4 on to stack and pop all.
    output will be 4321.

    It means that this data structure can generate 4321.


    Solution:
    3124
    for a detailed solution please look at question7 of the post
    Stacks and Queues



  4. Question 2 was pretty easy right? Now do again the same question but the data structure this time around is a Deque.
    Input: 12345
    
    Data Structure: Deque ( Doubly Que )

    Note: Deque is a data structure into which you can do enque
    and deque from both sides.Some thing like this
    __________________________________
    enque ---> <----enque dequeue <---- ----->dequeue
    __________________________________



    Solution:
    It is N!. Guess why?(no constraints).Convince yourself by proving that every permutation can be generated by a set of valid operations.This prove can be using the principle of strong mathematical induction.So for this specific input the answer is 120.


  5. Classic Egg Puzzle Problem You are given 2 eggs.You have access to a 100-store building. Eggs can be very hard or very fragile means it may break if dropped from the first floor or may not even break if dropped from 100 th floor.Both eggs are identical.You need to figure out the highest floor of a 100-store building an egg can be dropped without breaking. Now the question is how many drops you need to make. You are allowed to break 2 eggs in the process.


    Solution:
    Let "d" be the number of drops required to find out the max floor.we need to get the value of d.

    let's say if we drop from height d then if it breaks then we have d-1 floors to check for the second egg . so max of "d" drops, so first we will drop it from height "d" if it doesn't break at a height "d" then we are left with "d-1" drops,so lets drop it from d + 'd-2' + 1 height suppose if it break there then you are left with 'd-2' drops.
    and so on until that sum is less than 100, it's like a linear search,

    in equations,

    (1+(d-1))+ (1+(d-2)) + .... >= 100

    here we need to find out d

    from the above equation

    d(d + 1)/2 >= 100


    from above d is 14





Google Interview Round 4 :




  1. Given n non overlapping intervals and an element. Find the interval into which this element falls.


    Solution:
    we can extend binary search to intervals.(Assuming the intervals are sorted)
    consider interval [a,b].
    if (a-x)(b-x) <=0
    then x belongs to [a,b].
    else
    if x>a
    element can be present only in the intervals to its right.
    so select the middle interval among them to it's right
    and repeat the procedure.
    else
    element can be present only in the intervals to its left.
    so select the middle interval among them to it's left
    and repeat the procedure.

    The complexity of this problem is log(N) where N is the number of sorted non-overlapping intervals.


  2. Worst case is take all intervals one at a time and see whether the element lies in the interval or not.It will take O(n). So please give a solution that will do better than O(n).


  3. Now given that the n intervals are overlapping then how do you solve? The interviewer was concentrating more on the complexities (running, memory ..)


    Solution:
    If the above intervals are overlapping ,then they can be merged in O(N) and then the exact intervals can be resolved later.Otherwise ,we can identify one correct interval and then linear search on its left and right neighbourhood to find the other solutions.




  4. Write code for Random Sort?
    Algorithm  is explained:
    

    Given an input array of size n. Random sort is sampling
    a new array from the given array and check whether the
    sampled array is sorted or not. If sorted return else
    sample again. The stress was on the
    code.




Google Interview Round 5: This is Manager Round




  1. Tell me an achievement that you have done in your non academics


  2. Tell me about one of your project


  3. Take a feature of C++ and tell me how you have implemented it in one of your project


  4. By taking one of your project as example tell me how you have taken care of software engineering where you would have handled more data


  5. There is a routine already written to find the subtraction of two sets ( set A - set B) . Write test cases for testing it.Tell me how do you test the test cases you have written?


  6. There is a printed book. The page numbers are not printed. Now the printing of page numbers is being done separately. If the total number of digits printed is 1095 then how many pages does the book have?


    Solution: Well people,this is too simple a question ..so do give it a try..(no malice,too simple).Any queries then do shoot a comment.

Read More...
AddThis Social Bookmark Button

8086 Questions  

1)8086 microprocessor can address how many memory location?

20 power of 2 18 power of 2 32 power of 2 8 power of 2

2) Which of the flags is not regarded as control flag?

Trap flag Sign flag Interrupt flag Direction flag

3) An instruction which takes 4 clock cycles, then how many seconds it will take to execute?

0.4µs 0.8µs 1.6 µs 8µs

4) DAS and DAA instruction uses which of the following flag ….

parity flag control flag Auxiliary flag conditional flag

5) On 8086 processor chip which pin is labeled as CLK

22 18 19 20

6) When MN/MX is asserted low then 8086 is in which mode

minimum neutral zero maximum

7) Which of the following is an illegal instruction?

(a) MoV Ax, 30000 (b) iNc Al, 1 (c) aNd bx, bx (d) add ax, 30

8) Given that the subprogram putc displays the character in al, the effect of the following

instructions: mov al, ‘a’

add al, 2

call putc

is to (a) display 2 (b) display c (c) display a (d) display a blank

9) Given that the bl register contains ‘B’, the effect of the following instruction

or bl, 0010 0000

is to (a) clear bl (b) store ‘b’ in bl (c) store 0010 0000 in bl (d) leave bl unchanged

10) Which of the following is an illegal 8086 instruction…?

(a) ret 2 (b) push al (c) aDd bx, 25000 (d) and ax, dx

11) The net effect of calling the following subprogram in terms of program behaviour:

Subprog: push ax

add ax, 10

ret

is to (a) leave ax unchanged (b) add 10 to ax (c) cause the program to behave in an unpredictable manner (d) do nothing

12) An interrupt instruction

(a) Causes an unconditional transfer of control

(b) Causes a conditional transfer of Control

(c) Modifies the status register

(d) Is an I/O instruction

13) When a program is translated by the MASM assembler, the machine code is stored in a file with the extension………..

(a) .lis

(b) .obj

(c) .exe

(d) .out

14) The effect of the following instructions…

push ax

add ax, 4

pop bx

mov cx, ax

push bx

pop ax

on the ax register is

(a) leave it with its original value (b) add 4 to it (c) clear it (d) double it

15) To copy the hexadecimal number A to the bh register you write

(a) mov 0bh, ah (b) mov bh, 0ah (c) mov bh, ah (d) mov bh, [ah]

16) The word size of an 8086 processor is

(a) 8 bits (b) 16 bits (c) 32 bits (d) 64 bits

17) Pipelining improves CPU performance due to

(a) Reduced memory access time (b) increased clock speed

(c) The introduction of parallelism (d) additional functional units

18) Given that dl contains 'x' which of the following will cause 'x' to be displayed:

(a) mov ah, 1h (b) mov ah, 2h (c) mov ah, 2h (d) mov ah, 0h

int 21h int 20h int 21h int 21h

19) Which of the following will terminate a program and return to MS-DOS:

(a) mov ax, 4c00h (b) mov ax, 4c00h (c) mov dx, 4c00h (d) mov ax, 9h

int 20h int 21h int 21h int 22h

20)if AL=10000110, BH=01010111 , consider the instruction

SUB AL, BH

DAS

The output is ..

(a)29BCD (b) 39BCD (c)19BCD (d)28BCD

21) Which of the following is not part of the processor?

(a) The ALU (b) the CU (c) the registers (d) the system bus

22) Which of the following is not an MASM directive

(a) .stack (b) db (c) .model (d) call

23) The MOV reg, reg instruction requires how many clock cycles to execute?

(a) 2clock cycles (b) 4 clock cycles (c) 1 clock cycles (d) 16 clock cycles

24) The program counter

(a) Stores the address of the instruction that is currently being executed

(b) Stores the next instruction to be executed

(c) Stores the address of the next instruction to be executed

(d) Stores the instruction that is being currently executed.

25) Write a small code snippet to find whether a number is a power of 2 or not?

Read More...
AddThis Social Bookmark Button

8085 Questions  

1) How many T-states does the following instruction take?

a) XRA reg

b) XRA mem

2) Which of the following instruction are 3-byte,2-byte and 1-byte.indicate.

a) ADD B

b) MOV A,B

c) LDA mem

d) MVI B,F2H

e) JMP mem

3) How many general purpose register does 8085 programming model have?

4) Why did 8085 processors have higher power/transistor dissipation than 8086 processors?(answer in one word)

5) How many operation codes and instruction does 8085 processor have?

6) How many hardware interrupts does 8085 have? Which has the highest and

lowest priority?

7) What will PCHL instruction do? How many T-states does it have?

8) A 8085 micro-processor system have one 2K ROM and one 2K RAM chip? Suggest the starting address of these chips?

9) Calculate the time required to execute the following code segment when CPU is connected o a crystal of 2 Mhz.

MVI D,04H

BACK:DCR D

JNZ BACK

10) Reg H=00H

Reg L=01H

Give the output of DCX H with the values of flag?

11) Give the addressing modes of the following instructions?

a) CMA

b) LDAX B

c) MOV M,A

12) Call a subroutine without using CALL instruction? Write the code fragment?

Read More...
AddThis Social Bookmark Button

Some Basic Questions on sorting and their solutions  

Some Basic Questions on sorting and their solutions


1 .In a selectionsort of n elements, how many times is the swap function called in the complete execution of the algorithm?

A. 1
B. n - 1
C. n log n
D. n^2

Solution: B. n-1


2 .Selectionsort and quicksort both fall into the same category of sorting algorithms. What is this category?

* A. O(n log n) sorts
* B. Divide-and-conquer sorts
* C. Interchange sorts
* D. Average time is quadratic.

Solution: C.Interchange sorts reason:Selection sort is not O(n log n) and not a Divide-conquer sort too and Average time of quicksort is not quadratic.

3 . Suppose that a selectionsort of 100 items has completed 42 iterations of the main loop. How many items are now guaranteed to be in their final spot (never to be moved again)?

* A. 21
* B. 41
* C. 42
* D. 43


Solution: C. 42

4 .Suppose we are sorting an array of ten integers using a some quadratic sorting algorithm. After four iterations of the algorithm's main loop, the array elements are ordered as shown here:

1 2 3 4 5 0 6 7 8 9

Which statement is correct? (Note: Our selection sort picks largest items first.)

* A. The algorithm might be either selection sort or insertion sort.
* B. The algorithm might be selectionsort, but could not be insertionsort.
* C. The algorithm might be insertionsort, but could not be selectionsort.
* D. The algorithm is neither selectionsort nor insertionsort.

Solution: C. The algorithm might be insertion sort, but could not be selection sort.

5 .Suppose we are sorting an array of eight integers using a some quadratic sorting algorithm. After four iterations of the algorithm's main loop, the array elements are ordered as shown here:

2 4 5 7 8 1 3 6

Which statement is correct? (Note: Our selectionsort picks largest items first.)

* A. The algorithm might be either selectionsort or insertionsort.
* B. The algorithm might be selectionsort, but it is not insertionsort.
* C. The algorithm is not selectionsort, but it might be insertionsort.
* D. The algorithm is neither selectionsort nor insertionsort.

Solution: C. The algorithm is not selectionsort, but it might be insertionsort.

6 .When is insertionsort a good choice for sorting an array?

* A. Each component of the array requires a large amount of memory.
* B. Each component of the array requires a small amount of memory.
* C. The array has only a few items out of place.
* D. The processor speed is fast.

Solution: C. The array has only a few items out of place.

7 What is the worst-case time for mergesort to sort an array of n elements?

* A. O(log n)
* B. O(n)
* C. O(n log n)
* D. O(n^2)

Solution : C. O(n log n)

8 What is the worst-case time for quicksort to sort an array of n elements?

* A. O(log n)
* B. O(n)
* C. O(n log n)
* D. O(n^2)

Solution: D. O(n^2)

9 .Mergesort makes two recursive calls. Which statement is true after these recursive calls finish, but before the merge step?

* A. The array elements form a heap.
* B. Elements in each half of the array are sorted amongst themselves.
* C. Elements in the first half of the array are less than or equal to elements in the second half of the array.
* D. None of the above.

Solution: B. Elements in each half of the array are sorted amongst themselves.

10 .Suppose we are sorting an array of eight integers using quicksort, and we have just finished the first partitioning with the array looking like this:

2 5 1 7 9 12 11 10

Which statement is correct?

* A. The pivot could be either the 7 or the 9.
* B. The pivot could be the 7, but it is not the 9.
* C. The pivot is not the 7, but it could be the 9.
* D. Neither the 7 nor the 9 is the pivot.

Solution: A. The pivot could be either the 7 or the 9.

11 .What is the worst-case time for heapsort to sort an array of n elements?

* A. O(log n)
* B. O(n)
* C. O(n log n)
* D. O(n^2)
Solution: C. O(n log n)

12.Suppose you are given a sorted list of N elements followed by f(N) randomly ordered elements.How would you sort the entire list if
* A. f(N)=O(1)
* B. f(N)=O(logN)
* C. f(N)=O(N^1/2)
* D. How large can f(N) be for the entire list still to be sortable in O(N) time?
Solution:
A. f(N)=O(1) In this case insertion sort would be the best ,giving the time complexity of O(N)

B. f(N)=O(log N) Merge sort is the best option with a time complexity of O(N)

C.f(N)=O(N^1/2) Merge sort is the best option with a time complexity of O(N)

D.complexity = f(N)log f(N) + N +f(N)
Clearly f(N) is O(N) for the complexity to be of O(N)

Now O(N) is an over estimate on the upper bound of f(N) ,which is quite clear from the first term in the above expression.

Now let f(N) is of the form k.N^(1/p ).Then with some simplification we get

f(N)log(f(N)) is O(N ^(2/p)) and now to restrict the whole expression to O(N)
we need to restrict p to p >= 2

But f(N)is O(N^(1/p)) which means f(N) can at most be of size N^1/2 .

13.Prove that any algorithm that find an element X in a sorted list of N elements requires Omega(log N) comparisons.

Solution:The search essentially becomes a search for X in a binary decision tree and this requires Omega(log N) comparisons.

14.Prove that sorting N elements with integer keys in the range 1 < Key < M
takes O(M + N) time using bucket sort.

Solution: Putting the elements in to their corresponding buckets is of O(N).Then iteration of the buckets and printing the corresponding keys as many times as their frequency is of O(M+N).Hence the total complexity.

15.Suppose you have an array of N elements,containing only 2 distinct keys, true and false.Give an O(N) algorithm to sort the array.

Solution:Use bucket sort with 2 buckets.

16.Prove that any comparison based algorithm to sort 4 elements requires at least 3 comparisons and at the max comparisons
Solution:The binary decision tree has maximum distance of 3 and a maximum distance of 5 ,from the root to the leaf.As each edge corresponds to a comparison,we need minimum of 3 and maximum of 5 comparisons to sort 4 elements.

17. In how many ways can 2 sorted arrays of combined size N be merged?
Solution:Still up for debate.Any answers? :)

18.Show that binary insertion may reasonably be expected to be an O(n log n) sort.
Solution:Binary insertion sort employs binary search to find the right place to insert new elements, and therefore performs ceil (log(n!)) comparisons in the worst case, which is Θ(n log n). The algorithm as a whole still takes Θ(n2) time on average due to the series of swaps required for each insertion, and since it always uses binary search, the best case is no longer Ω(n) but Ω(n log n).


19.You are given two sets of numbers Xi and Yj , where i and j run from 1 to N.
Devise an algorithm to find the M largest values of Xi −Yj . This algorithm should
not be quadratic in N, though it is permitted to be quadratic in M.
You should regard N as being of the order of 20,000 and M as being of the order
of 1,000.
Solution:Use an order-statistic algorithm to find the Mth largest number in X,partition around that number and sort the M largest numbers.Repeat this for Y but sorting the M smallest numbers.This can be done in O(N+M log(M))Now with each of these sub-arrays having M elements,find the difference between each element of X and Y.We have M difference elements for each Xi in sorted order and in total M^2 differences.Use merge sort repeatedly to merge these portions .This is of complexity M^2.Hence the procedure.

20.If 1024 numbers are drawn randomly in the range 0–127 and sorted by binary
insertion, about how many compares would you expect?
Solution:We have 3 comparisons coming in to the picture ab, a=b.The overall number of comparisons won't change and it is still of the O(N log N). strictly speaking log(N!) comparisons.

Read More...
AddThis Social Bookmark Button

NUMERICAL ABILITY::WIPRO  

NUMERICAL ABILITY
from wipro paper 2

1. 420% OF 7.79 = ?


2. 3427 / 16.53 = ?


3. 10995 /95 = ?



4. 43+557-247 =?



5. 3107*3.082= ?


6. 48.7 + 24.9 - 8.7 = ?


7.525.0/47.8 = ?



8. (135-30-14)*7 - 6 +2 = ? VTUNEWS.BLOGSPOT.COM



9. 3/8 * 5.04=?



10. 697 /219 = ?



11.8/64 +64/16 =?



12. 298 * 312 / 208 = ?



13. 0.33 *1496 /13 = ?



14.0.26 + 1/8 = ?


15. 66.17+1/3= ?


16. 2.84+1/4= ?



17. 33% OF 450 = ?


18. 907.54 / 0,3073= ?


19.There are two categories of persons in ratio A:B = 2:3.
A type earns 2.5 dollars/hr and B type 1 dollar/hr total money earned
by both is 24dollars. Then what is the total number of persons



20. Total balls are z, the number of red balls is n and the remaining
are blak balls,then the % of black balls equal to ?


21. If A = C, B = 2D what should be done to make the ratio same.
i.e.a/b = c/d


22. If P=Total number of components, Q = number of defective components
.What is the % of non defective components?


23. If the cost of an article is x , first discount given is y% of
cost, second discount given is z% of cost .
The selling price of x is


24.Which of the following are prime numbers

(a) 119
(b) 115
(c) 127
(d) none



25. A / B = C; C > D then

(a) A is always greater than D
(b) C is always greater than D
(c) B is always less than D
(d) None of these



26. If B>C and A


27. If for H hours of work the salary is S and the employee gets
x hours of medical leave, then what is the salary/hr ?



28. ( 1/6 of 596) / (0.695) = ?



29. 35-30 + 4/7 - 5 + 1 = ?



30. 10995 + 95 = ?



31. If on a salary of Rs."S" per month,one has to pay one tax of x
Rs. and a second type of tax of y Rs then % of salary taken home is?



32. B>A then which expression will be highest value

(a) A-B
(b) AB
(c) A+B
(d) Can't Say



33. K, L are men who take home a salary of x, y respectively.
The total amount taken home is




34. If out of X bulbs y bulbs are broken;The % of non broken bulbs



35. If on a salary s per month, a tax of x% of the salary and another
of r% of the salary is deducted what
is the income.



36. 0.512 * 18902358 =?


37. If the % of defective balls is 10% balls,and the number of
defective balls is 5.The number of balls is


38. 6.29% of 2.8 =?


39. 0.398 * 456= ?




40. 0 < x < 1 which is greater

(a) 1/x2
(b) 1/x
(c) x
(d) x2



41. If c = a/b; a-1 = c, what is the relation between a and b?



42. What is the sum of 7 consecutive odd numbers with 27 as the
fourth number



SERIES SECTION

Directions: In the following questions complete the series

NOTE: This section is quite tough and consists of 26 questions
to be done in 10 minutes.
Please keep track of time.

1. A C B D E F G I - I H K J L



2. A I Z B E Y C I X D I - G E N J W



3. A D G J M P - R W T S



4. A B C E F G I J K - M L O N P




5. A B F G K L P Q - T S V U W




6. J W X U V S T - Q P S E T



7. A R H X Y T D T W S T - N P T K R




8. F M B I P Z V I E V - I R Y O U


9. N Z I Y C X KW F - J F V M Y




10. A A S A S P A S P K A - R Q T S U




11. A E C P S - T R U E




12. B B P R D D L N F F I K - H Q J I K VTUNEWS.BLOGSPOT.COM




13 A Z E X I V M T - R Q N S O




14. A B D G K P - L I W U X



15. B C D A E G H I F J L M N L K N M O



16. X W E F G V U H I J K - P N S R T




17. O D J T O P Q N O E R T - Q O U V W




18. P R N U U P E J R B B - H V U N E




19.L U L M G M N F N P S - O N Q P S VTUNEWS.BLOGSPOT.COM

Read More...
AddThis Social Bookmark Button