Skip to main content

infosys paper 2

1] First five questions on visual reasoning (very easy).
Find odd figure out

2] 5 questions on Cubes
a cube of 10 cm is painted in red color and 2cm strip by green color. This cube is divided into 125 small cubes. So, find out.

* Cube having 3 face red
* Cube having no color
* Cube having green color as a face, etc

3] 5 questions on Data sufficiency.

Each problem consists of a problem followed by two statements. Decide whether the data in the statements are sufficient to answer the question. Select your answer according to whether.

(A) Any one statement alone is sufficient to answer
(B) both statements taken together are sufficient to answer the question, but neither statement alone is sufficient
(c) each statement alone is sufficient
(D) statements 1 and 2 together are not sufficient, and additional data is needed to answer the question

(I don’t Remember Exact values)
1) What is profit?

Statement 1 20% of cp=10% of sp
Statement 2 30% of cp – 20% of sp=2.5

2) length of tangent?

Statement 1 Radius of circle is 10 cm.
Statement 2 the sides of triangle containing circle has same length, etc.

4] 5 questions on a puzzle A,B,C,D,E,F,G faculty members. In which 3 lady members & 4 phd holders. They teach 1 subject each as economics, physics, commerce, law, zoology, math.

Give some conditions.
Then find out

i) The lady having phd.
ii) Which of foll. Combination is wrong.
iii) G is teaching which sub.?, etc.

5] Next five questions on Data interpretation
Two graphs are given one has revenue and second may b sales.
calculation of profit between diff years, % profit, etc
6] 5 questions on logical relation
5 statements are given then in options group of 3 sentence is given.
Our task is to find out correct logical relation bet them.
E.g.
a) Egg has high protein
b) Breakfast should contain protein
c) Lunch should hav carbohydrates
d) Eggs are not proper for lunch
e) Human diet should be proper, etc

a) Abc b) cde c)abe, etc

In this solve figures first then puzzle, if comfortable with cubes then cubes or data sufficiency, then relations & at last solve DI coz calculations are lengthy.

(Use R.S. Aggarwal reasoning book

Don’t do any puzzles of Shakuntla devi and all, not required.)

English paper (40 questions, 35 mins) not so much difficult.

i) 10 questions on Identify the errors

ii) 10 questions on correcting underlined sentences

iii) In each question, a part of sentence is printed in italics. Below each sentence, some phrases are given which can substitute the italicized part of the sentence. If the sentence is correct as it is, the answer is 'No correction required'

E.g. He gave the I.A.S. examination in all seriousness.

A. appeared B. took C. undertook D. No Correction required

iv) 5 questions on fill in the blanks

1) IE is a ------

* Search engine
* Internet browser

2) A man unable to sleep at ni8 having a chronic disorder----

* Amnesia
* Insomnia, etc

Comments

Popular posts from this blog

Amazon Tree traversal Questions | Amazon interview Questions

The following function is supposed to calculate the maximum depth or height of a Binary tree -- the number of nodes along the longest path from the root node down to the farthest leaf node. int maxDepth( struct node* node) {     if (node==NULL)         return 0;     else     {         /* compute the depth of each subtree */         int lDepth = maxDepth(node->left);         int rDepth = maxDepth(node->right);             /* use the larger one */         if (lDepth > rDepth)             return X;         else return Y;     } } What should be the values of X and ...

TCS placement paper 13

1) Two pipes A and B fill at A certain rate B is filled at 10,20,40,80,. If 1/16 of B if filled in 17 hours what time it will take to get completely filled Ans 21 2) In a shopping mall with a staff of 5 members the average age is 45 years. After 5 years a person joined them and the average age is again 45 years. What’s the age of 6th person? 3) Find (4x+2y)/ (4x-2y) if x/2y=2 4) Find average speed if a man travels at speed of 24kmph up and 36kmph down at an altitude of 200m. Formula is 2xy/(x+y) 5) Same model as 4th question. But it is on flat surface. Formula is same 2xy/(x+y). 6) Six friends go to pizza corner there are 2 types of pizzas. And six different flavors are there they have to select 2 flavors from 6 flavors. In how many ways we can select? Ans: 6C2 7) 3, 15, x, 51, 53,159,161. Find X Ans: 17 8) 3 friends A, B, C went for week end party to McDonald’s restaurant and there they measure there weights in some order IN 7 rounds. A;B;C;A...

Amazon’s most asked interview questions

k largest(or smallest) elements in an array | added Min Heap method Question:  Write an efficient program for printing k largest elements in an array. Elements in array can be in any order. For example, if given array is [1, 23, 12, 9, 30, 2, 50] and you are asked for the largest 3 elements i.e., k = 3 then your program should print 50, 30 and 23. Recommended: Please solve it on “ PRACTICE  ” first, before moving on to the solution. Method 1 (Use Bubble k times) Thanks to Shailendra for suggesting this approach. 1) Modify Bubble Sort to run the outer loop at most k times. 2) Print the last k elements of the array obtained in step 1. Time Complexity: O(nk) Like Bubble sort, other sorting algorithms like Selection Sort can also be modified to get the k largest elements. Method 2 (Use temporary array) K largest elements from arr[0..n-1] 1) Store the first k elements in a temporary array temp[0..k-1]. 2) Find the smallest element in temp[...