2023 2024 Student Forum > Management Forum > Main Forum

 
  #2  
8th October 2014, 12:00 PM
Super Moderator
 
Join Date: Apr 2013
Re: TCS aptitude question papers

As you want the TCS aptitude question papers so here I am providing you

TCS C Aptitude: Questions

1. The C language terminator is
(a) semicolon (b) colon (c) period (d) exclamation mark

2. What is false about the following -- A compound statement is
(a) A set of simple statements (b) Demarcated on either side by curlybrackets
(c) Can be used in place of simple statement (d) A C function is not a compound statement.

3. What is true about the following C Functions
(a) Need not return any value (b) Should always return an integer
(c) Should always return a float (d) Should always return more than one value

4. Main must be written as
(a) The first function in the program (b) Second function in the program
(c) Last function in the program (d) Any where in the program

5. Which of the following about automatic variables within a function is correct ?
(a) Its type must be declared before using the variable (b) They are local
(c) They are not initialized to zero (d) They are global


6. Write one statement equivalent to the following two statements: x=sqr(a);return(x); Choose from one of the alternatives
(a) return(sqr(a)); (b) printf("sqr(a)");
(c) return(a*a*a); (d) printf("%d",sqr(a));

7. Which of the following about the C comments is incorrect ?
(a) Comments can go over multiple lines
(b) Comments can start any where in the line
(c) A line can contain comments with out any language statements
(d) Comments can occur within comments

8. What is the value of y in the following code?
x=7;
y=0;
if(x=6) y=7;
else y=1;
(a) 7 (b) 0 (c) 1 (d) 6

9. Read the function conv() given below
conv(int t)
{
int u;
u=5/9 * (t-32);
return(u);
}
What is returned
(a) 15 (b) 0 (c) 16.1 (d) 29

10. Which of the following represents true statement either x is in the range of 10 and 50 or y is zero
(a) x >= 10 && x <= 50 || y = = 0 (b) x<50
(c) y!=10 && x>=50 (d) None of these


11. Which of the following is not an infinite loop ?
(a) while(1)\{ ....} (b) for(;{...}
(c) x=0; (d) # define TRUE 0
do{ /*x unaltered within the loop*/ ...
.....}while(x = = 0); while(TRUE){ ....}

12. What does the following function print?
func(int i)
{
if(i%2)return 0;
else return 1;
}
main()
{
int =3;
i=func(i);


i=func(i);
printf("%d",i);
}
(a) 3 (b) 1 (c) 0 (d) 2

13. How does the C compiler interpret the following two statements
p=p+x;
q=q+y;

(a) p= p+x; (b) p=p+xq=q+y; (c) p= p+xq; (d) p=p+x/q=q+y;
q=q+y; q=q+y;
For questions 14,15,16,17 use the following alternatives:
a. int b. char c. string d. float

14. '9'

15. "1 e 02"

16. 10e05

17. 15

18. Read the following code
# define MAX 100
# define MIN 100
if(x>MAX)
x=1;
else if(x<MIN)
x=-1;
x=50;
if the initial value of x=200,what is the value after executing this code?
(a) 200 (b) 1 (c) -1 (d) 50

19. A memory of 20 bytes is allocated to a string declared as char *s then the following two
statements are executed:
s="Entrance"
l=strlen(s);
what is the value of l ?
(a)20 (b)8 (c)9 (d)21

20. Given the piece of code
int a[50];
int *pa;
pa=a;
To access the 6th element of the array which of the following is incorrect?
(a) *(a+5) (b) a[5] (c) pa[5] (d) *(*pa + 5}

21. Consider the following structure:

struct num nam
{
int no;
char name[25];
}
struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nichol as"}};
.....
.....
printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1);
What does the above statement print?
(a) 8,9 (b) 9,9 (c) 8,8 (d) 8, unpredictable value

22. Identify the in correct expression
(a)a=b=3=4; (b)a=b=c=d=0; (c)float a=int b= 3.5; (d)int a; floatb;a=b=3.5;

23. Regarding the scope of the varibles;identify the incorrect statement:
(a) automatic variables are automatically initialized to 0 (b) static variables are areautomatically initialized to 0
(c) the address of a register variable is not accessible (d) static variables cannot be initialized with any expression

24. cond 1?cond 2?cond 3?:exp 1:exp 2:exp 3:exp 4; is equivalent to which of the following?
(a) if cond 1
exp 1;
else if cond 2
exp 2;
else if cond 3
exp 3;
else exp 4;

(b) if cond 1
if cond 2
if cond 3
exp 1;
else exp 2;
else exp 3;
else exp 4;

(c) if cond 1 && cond 2 && cond 3
exp 1 |exp 2|exp 3|exp 4;

(d) if cond 3
exp 1;
else if cond 2 exp 2;
else if cond 3 exp 3;
else exp 4;

25. The operator for exponentiation is
(a) ** (b) ^ (c) % (d) not available

26. Which of the following is invalid

(a) a+=b (b) a*=b (c) a>>=b (d) a**=b

27. What is y value of the code if input x=10
y=5;
if (x==10)
else if(x==9)
else y=8;
(a)9 (b)8 (c)6 (d)7

28. What does the following code do?
fn(int n, int p, int r)
{
static int a=p;
switch(n)
{
case 4:a+=a*r;
case 3:a+=a*r;
case 2:a+=a*r;
case 1:a+=a*r;
}
}
(a) computes simple interest for one year (b) computes amount on compoundinterest for 1 to 4 years
(c) computes simple interest for four year (d) computes compound interest for 1year

29.
a=0;
while(a<5)
printf("%d\n",a++);
How many times does the loop occurs?
(a) infinite (b)5 (c)4 (d)6

30. How many times does the loop iterated ?
for(i=0;i=10;i+=2)
printf("Hi\n");
(a)10 (b) 2 (c) 5 (d) None of these

31. What is incorrect among the following
A recursive function
(a) calls itself (b) is equivalent to a loop
(c) has a termination condition (d) does not have a return value at all

32. Which of the following go out of the loop if expn 2 becoming false
(a) while(expn 1)\{...if(expn 2)continue;} (b) while(!expn
1)\{if(expn 2)continue;...}
(c) do{..if(expn 1)continue;..}while(expn 2); (d) while(!expn
2)\{if(expn 1)continue;..\}

33. Consider the following program
main()
{
unsigned int i=10;
while(i>=0)
{
printf("%u",i)
i--;
}
}
How many times the loop will get executed
(a)10 (b)9 (c)11 (d) infinite

34.Pick out the odd one out
(a) malloc() (b) calloc() (c) free() (d) realloc()

35.Consider the following program
main()
{
int a[5]={1,3,6,7,0};
int *b;
b=&a[2];
}
The value of b[-1] is
(a) 1 (b) 3 (c) -6 (d) none

36. # define prod(a,b)=a*b
main()
{
int x=2;
int y=3;
printf("%d",prod(x+2,y-10));
}
the output of the program is
(a) 8 (b) 6 (c) 7 (d) None

37.Consider the following program segment
int n,sum=1;
switch(n)
{
case 2:sum=sum+2;
case 3:sum*=2;
break;
default:sum=0;
}
If n=2, what is the value of sum
(a) 0 (b) 6 (c) 3 (d) None of these

38. Identify the incorrect one
1.if(c=1)
2.if(c!=3)
3.if(a<b)then
4.if(c==1)

(a) 1 only (b) 1&3 (c) 3 only (d) All of the above

39. The format specified for hexa decimal is
(a) %d (b) %o (c) %x (d) %u

40. Find the output of the following program
main()
{
int x=5, *p;
p=&x
printf("%d",++*p);
}
(a) 5 (b) 6 (c) 0 (d) none of these

41.Consider the following C code
main()
{
int i=3,x;
while(i>0)
{
x=func(i);
i--;
}
int func(int n)
{
static sum=0;
sum=sum+n;
return(sum);
}
}
The final value of x is
(a) 6 (b) 8 (c) 1 (d) 3

42. Int *a[5] refers to
(a) array of pointers (b) pointer to an array (c) pointer to apointer (d) none of these

Latest Sample Placement Paper Of TCS For Year-2009-10 (Aptitude, English)

1. (38 x 142) ÷ (4096) =?

1) 337.25 -Answer
2) 269.8
3) 490
4) 84.3125
5) None of these

2. 3 + 33.3 + 3.03 + 333 =?

1) 666
2) 636.33
3) 372.33 -Answer
4) 672.66
5) None of these

3. (17.52)2 =?

1) 280.9504
2) 290.5904
3) 306.9504 -Answer
4) 280.5904
5) None of these

4. (37% of 2370) – (41% of 2105) =?

1) 13.85 -Answer
2) 12.56
3) 13.10
4) 12.15
5) None of these

Directions (Q. 5-14):

In the following passage there are blanks, each of which has been numbered.
These numbers are printed below the passage and against each five words are suggested, one of which fits the blank appropriately. Find out the appropriate words.
It is a 5 that Communists are opposed toeconomic reforms. The fact of the life is that Communists are the most 6 fighters for economic reforms, the reforms that lead to self-reliant and democratic economic development
with social justice. To term the market-oriented changes as reform is a 7. The development strategy 8 under Structural Adjustment and dictated by the World Bank, IMF and WTO is a strategy for the 9 development of capitalism under which the working people, who are the main productive force, are made 10, kept unemployed, thrown out of jobs, and so on. It has no social relevance. In the phase of globalization, no country can develop in 11 and entry of the foreign capital can not be12 altogether. Integration with world economy has to ensure the free and speedy 13 of the national economy. Foreign capital has to be allowed in the areas where we really need huge investment, which our resources cannot meet, and where we need technology, not available in the country. Economic14 should not mean license for plunder by MNCs.

5.
1) problem
2) mysticism
3) curiosity
4) misconception -Answer
5) mistake

6.
1) liberal
2) demanding
3) strident -Answer
4) detrimental
5) horrible

7.
1) misnomer -Answer
2) terrible
3) danger
4) tragedy
5) shame

8.
1) reached
2) verified
3) assembled
4) hurled
5) envisaged -Answer

9.
1) westernised
2) unfettered -Answer
3) gross
4) accumulated
5) astounding


10.
1) labourers
2) culprit
3) redundant -Answer
4) escapists
5) icons

11.
1) unison
2) liberalisation
3) coalition
4) association
5) isolation -Answer

12.
1) forced
2) loaded
3) denied -Answer
4) stated
5) scrutinised

13.
1) development -Answer
2) empowerment
3) unity
4) mobilisation
5) cohesion

14.
1) growth
2) potential
3) strategy
4) reforms -Answer
5) vitality
Directions (Q. 15-24): Given below are two passages. Read them carefully and answer the questions given below them.
Certain words are given in bold to help you to locate them while answering some of the questions.

Passage – I
Americans have a variety of superstitions like walking under a ladder, a black cat crossing your path and the number 13, none of which seem to have a logical reason for being. However, there are no serious taboos attached to them. Individuals may have an array of sensitivities based on their personal beliefs. If you do offend someone inadvertently, a sincere apology will usually go a long way toward making amends. The one sensitivity that almost all Americans have is about slights to their country. Either complaining about the US or expressing an attitude that your culture is superior can cause Americans to take offence. Americans do possess a great deal of culture arrogance, and think that their way is the only right way. They think that the US is the best place on earth, otherwise why would everybody by trying to get here? Whether you agree or not, remember that you are a guest in the US and it would be rude for a guest to insult his host

15. Which of the following can be presumed about Americans regarding superstition?
1) It is a cultural custom for them to believe in superstitions.
2) They can satisfy you by placing arguments about the validity of superstitions.
3) Americans cannot justify their adherence to superstitions. -Answer
4) Americans are highly superstitious people.
5) None of these

16. If you offend an American inadvertently, a sincere apology will
1) take a long time to repair the damage.
2) not necessarily by enough to amend it.
3) be turned down.
4) succeed in making amends. -Answer
5) None of these

17. Americans feel usually offended whenever there is a(n)
1) argument posed before them. -Answer
2) rude remark against their culture. -Answer
3) threat to their sovereignty.
4) attack on their religion.
5) None of these

18. What makes the Americans feel that their country is the best in the world?
1) mad rush of people from other countries to America
2) the best facilities available there
3) their culture and custom which they feel is the best in the world
4) the economic superiority of America
5) None of these

19. What is the antonym of the word inadvertently as given in bold in the passage?
1) intentionally -Answer
2) occasionally
3) unwittingly
4) avowedly
5) adroitly


Passage – II
Population is one resource that never depletes and is a living development parameter. But it is at times interpreted as a hindering factor for development. This happens because population is both a consumer and producer. There are two schools of thought. One which treats population as a resource, and the other as a burden to the society. The truth, in fact, lies somewhere in between. The interplay of factors responsible for population growth and those for development decide the resourcefulness of population.

20. Why is it said that population is one resource that never depletes?
1) because other resources deplete
2) because population is an ever-increasing phenomenon -Answer
3) because population is seen as a resource
4) because it is an easily available commodity
5) None of these

21. Why population is at the same time treated as a resource and also as a burden to the society?
1) because population is the creator and at the same time it is also the user -Answer
2) because a less number of people are engaged in production and a large number of people are dependent on it
3) because population is not always a producer but it is always a consumer
4) when the growth of population is checked it is a resource and when it increases rapidly it is burden to the society
5) None of these

22. The resourcefulness of population can be decided by
(i) skilled manpower (ii) scale of development (iii) population control measures (iv) scale of population growth
1) All of the above
2) Only (i), (ii) and (iii)
3) Only (i) and (iii) -Answer
4) Only (ii) and (iv)
5) None of these

23.Which of the following is true in context of the passage?
1) It is not necessary that the population always grows.
2) Population is burdensome.
3) Most of the natural resources are exhaustible. -Answer
4) Population is a big consumer and a meager producer.
5) None of these

24.What will be the synonym of the word depletes as given in bold in the passage?
1) disappears
2) sustains
3) worsens
4) evades
5) reduces -Answer

25. – 65 x39 + 335 =?
1) – 849225
2) – 2200 -Answer
3) – 2870
4) 2870
5) None of these

TCS TCS Model Question Paper Given Below

TCS Questions
Note: 1 mark will be deducted for every 3 wrong answers Quantitative/aptitude test (35 questions, 80 minutes)

1. A Roman was born the first day of the 35th year before Christ and died the first day of the 35th year after Christ. How many years did he live?
(a) 70 (b) 69 (c) 71 (d) 72

2. A horse starts to chase a dog that has left the stable two hours earlier. The horse runs at an average speed of 2km/hr. It crosses a 10-metre road, two small ponds 3 metres deep, and finally runs along two small streets of 200 metres long. After traveling 6 hrs, 2hrs after sunset, it catches the dog. Compute the speed of the dog in Km/hr?
(a) 20 (b) 22 (c) 16.5 (d) 18.5

3. Adam sat with his friends in the Chinnaswamy stadium at Madurai to watch the 100 metres running race organized by the Asian Athletics Association. Five rounds were run. After every round half the teams were eliminated. Finally, one team wins the game. How many teams participated in the race?
(a) 30 (b) 32 (c) 41 (d) 54

4. If an airplane starts at point R and travels 14 miles directly north to S, then 48 miles directly east to T, what is the straight-line distance (in miles) from T to R?
(a) 25 (b) 34 (c) 50 (d) 2500

5. A scientist was researching into animal behavior in his laboratory. He was very interested in studying the behavior of bears. He travelled a mile to the north and reached the north pole.There he saw a bear. He then followed the bear for an 1 hour to the east with a speed of 2km/hr. After that he travelled south and reached his laboratory in 2 hours. What was the colour of the bear?
(a) Black (b) White (c) Red (d) Blue


6. A garrison of 3300 men has provisions for 32 days when supplied at the rate of 850 g per head. At the end of 7 days, a reinforcement arrives, and it is found that the provisions can last for 17 days more when supplied at the rate of 825 g per head. What is the strength of the reinforcement?
(a) 1700 (b) 1000 (c) 3000 (d) 2700

7. Two unemployed young men decided to start a business together. They pooled in their savings, which came to Rs. 2,000. They were both lucky, their business prospered and they were able to increase their capital by 50 per cent every three years. How much did they have in all at the end of eighteen years?
(a) Rs. 22,781.25 (b) Rs. 24,150.25 (c) Rs. 28,140.50 (d) Rs. 18,000

8. A man divides Rs.8600 among 5 sons, 4 daughters and 2 nephews. If each daughter receives four times as much as each nephew, and each son receives five times as much as each nephew, how much does each aughter receive?
(a) Rs.800 (b) Rs.600 (c) Rs.200 (d) Rs.700

9. A train starts full of passengers. At the first station, it drops one-third of the passengers and takes 280 more. At the second station, it drops one-half of the new total and takes 12 more. On arriving at the third station, it is found to have 248 passengers. Find the number of passengers in the beginning.
(a) 240 (b) 248 (c) 280 (d) 288

10. A manufacturer undertakes to supply 2000 pieces of a particular component at Rs.25 per piece. According to his estimates, even if 5% fail to pass the quality tests, then he will make a profit of 25%. However, as it turned out, 50% of the components were rejected. What is the loss to the manufacturer?
(a) Rs.12000 (b) Rs.13000 (c) Rs.14000 (d) Rs.15000

11. In Tnagar many buildings were under residential category. for buildings they number as 1 to 100. For shops, corporation numbered between 150 and 200 only prime numbers. howmany time 6 will appear in building numbering?
(a) 10 (b) 20 (c) 8 (d) 19

12. 6 persons standing in queue with different age group, after two years their average age will be 43 and seventh person joined with them. hence the current average age has become45. find the age of seventh person?
(a) 69 (b) 70 (c) 40 (d) 45

13. 3, 22 , 7, 45, 15, ? , 31
(a) 45 (b) 90 (c) 91 (d) 35

14. Which is the smallest no divides 2880 and gives a perfect square?
(a) 1 (b) 2 (c) 5 (d) 6

15. One grandfather has three grandchildren, two of their age difference is 3, eldest child age is 3 times youngest childs age and eldest childs age is two times of sum of other two children. What is the age of eldest child?
(a) 5 (8) 10 (c) 8 (d) 15

16. It is dark in my bedroom and I want to get two socks of the same color from my drawer, which contains 24 red and 24 blue socks. How many socks do I have to take from the drawerto get at least two socks of the same color?
(a) 2 (b) 3 (c) 48 (d) 25

17. 23 people are there, they are shaking hands together, how many hand shakes possible, if they are in pair of cyclic sequence.
(a) 22 (b) 23 (c) 44 (d) 46

18. There are 10 reading spots in a room. Each reading spot has a round table. Each round table has 4 chair. If different no of persons are sitting at each reading spot. And if there are 10 persons inside the room then how many reading spots donot have atleast a single reader.
(1) 5 (2) 6 (3) 7 (4) None

19. Middle earth is a fictional land inhabited by Hobbits, Elves, dwarves and men. The Hobbits and the Elves are peaceful creatures who prefer slow, silent lives and appreciate nature and art. The dwarves and the men engage in physical games. The game is as follows .
A tournol is one where out of the two teams that play a match, the one that loses get eliminated. The matches are played in different rounds where in every round , half of the teams get eliminated from the tournament. If there are 8 rounds played in a knock-out tournol how many matches were played?
(a) 257 (b) 256 (c) 72 (d) 255

20. There are two water tanks A and B, A is much smaller than B. While water fills at the rate of one litre every hour in A, it gets filled up like 10, 20, 40, 80, 160... in tank B. ( At the end of first hour, B has 10 litres, second hour it has 20, and so on). If tank B is 1/32 filled after 21 hours, what is the total duration required to fill it completely?
(a) 26 hrs (b) 25 hrs (c) 5 hrs (d) 27 hrs

21. A man jogs at 6 mph over a certain journey and walks over the same route at 4 mph. What is his average speed for the journey?
(a) 2.4 mph (b) 4 mph (c) 4.8 mph (d) 5 mph

22. A pizza shop, there were 2 kinds of pizzas available. But now they have introduces 8 new types, a person buy two different type pizzas of new type in how many ways he can select?28
(a) 24 (b) 43 (c) 56 (d) 58

23. A box of 150 packets consists of 1kg packets and 2kg packets. Total weight of box is 264kg. How many 2kg packets are there?
(a) 100 (b) 114 (c) 200 (d) 208

24. A man, a woman, and a child can do a piece of work in 6 days. Man only can do it in 24 days. Woman can do it in 16 days and in how many days child can do the same work?
(a) 8 (b) 14 (c) 16 (d) 18

25. A bus started from bus stand at 8.00a m and after 30 min staying at destination, it returned back to the bus stand. The destination is 27 miles from the bus stand. The speed of the bus 50 percent fast speed. At what time it returns to the bus stand.
(a) 11a.m (b) 12a.m (c) 10a.m (d) 10.30p.m


26. 2 oranges, 3 bananas and 4 apples cost Rs.15. 3 oranges, 2 bananas, and 1 apple costs Rs 10. What is the cost of 3 oranges, 3 bananas and 3 apples?
(a) Rs10 (b) Rs15 (c) Rs20 (d) Rs25

27. If on an item a company gives 25% discount, they earn 25% profit. If they now give 10% discount then what is the profit percentage.
(a) 40% (b) 55% (c) 35% (d) 30%

28. Two trains move in the same direction at 50 kmph and 32 kmph respectively. A man in the slower train observes the 15 seconds elapse before the faster train completely passes by
him. What is the length of faster train?
(a) 100m (b) 75m (c) 120m (d) 50m

29. A man spends half of his salary on household expenses, 1/4th for rent, 1/5th for travel expenses, the man deposits the rest in a bank. If his monthly deposits in the bank amount 50,
what is his monthly salary?
(a) Rs.500 (b) Rs.1500 (c) Rs.1000 (d) Rs. 900

30. It was Sunday on Jan 1, 2006. What was the day of the week Jan 1, 2010
(a) Sunday (b) Saturday (c) Friday (d) Wednesday

31. In how many different ways can the letters of the word 'LEADING' be arranged in such a way that the vowels always come together?
(a) 360 (b) 480 (c) 720 (d) 5040

32. The captain of a cricket team of 11 members is 26 years old and the wicket keeper is 3 years older. If the ages of these two are excluded, the average age of the remaining players isone year less than the average age of the whole team. What is the average age of the team?
(a) 23 years (b) 24 years (c) 25 years (d) None of these

33. Six bells commence tolling together and toll at intervals of 2, 4, 6, 8 10 and 12 seconds respectively. In 30 minutes, how many times do they toll together?
(a) 4 (b) 10 (c) 15 (d) 16

34. The difference of two numbers is 1365. On dividing the larger number by the smaller, we get 6 as quotient and the 15 as remainder. What is the smaller number?
(a) 240 (b) 270 (c) 295 (d) 360

35. In a flight of 600 km, an aircraft was slowed down due to bad weather. Its average speed for the trip was reduced by 200 km/hr and the time of flight increased by 30 minutes. The duration of the flight is:
(a) 1 hour (b) 2 hours (c) 3 hours (d) 4 hours
  #3  
28th November 2014, 11:26 AM
Unregistered
Guest
 
TCS Aptitude Question Papers

Here I am looking for the previous year question paper of TCS Aptitude can you please provide me?
  #4  
28th November 2014, 12:13 PM
Super Moderator
 
Join Date: Apr 2013
Re: TCS Aptitude Question Papers

Tata Consultancy Services Limited (TCS) is an Indian multinational information technology (IT) services

Question Papers of TCS Aptitude

1) 23 people are there, they are shaking hands together, How many hand shakes possible, if they are in pair of cyclic sequence ?

2) 10 men and 10 women are there, they dance with each other, is there possibility that 2 men are dancing with same women and vice versa.

3) B is taller than j and 3 pillars. P is shorter than B and 2 pillars is j shorter/taller than P?

4) In school there are some bicycles and 4wheeler wagons. One Tuesday there are 58 wheels in the campus. How many bicycles are there?

5) Which is the smallest no divides 2880 and gives a perfect square?

a) 1 b) 2 c) 5 d) 6

6) Rearrange and categorize the word ‘RAPETEKA’?

7) Key words in question (Fibonacci series, infinite series, in the middle of the question one number series is there. I got the series 3 12 7 26 15 b?

8) What is the value of [(3x+8Y)/(x-2Y)]; if x/2y=2?

9) There are two pipes A and B. If A filled 10 liters in hour B can fills 20 liters in same time. Likewise B can fill 10, 20, 40, 80,160. If B filled in (1/16) th of a tank in 3 hours, how much time will it take to fill completely?

10) There is a toy train that can make 10 musical sounds. It makes 2 musical sounds after being defective. What is the probability that same musical sound would be produced 5 times consecutively?

11) 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?

12) 3, 15, x, 51, 53,159,161. Find X

13) A hollow space on earth surface is to be filled. Total cost of filling is Rs20000. The cost of filling per mt3 is Rs 225 .how many times a size of 3 mt3 soil is required to fill the hollow space?

14) There are different things like p,q,r,s,t,u,v. We can take p and q together. If r and s are taken together then t must has to be taken. u and v can be taken together.v can be taken with p or s. every thing can be taken together except.
a) p b) t c) v d) s

15) There are 11 boys in a family. Youngest child is a boy. Probability is 1 that of all are boys out of?
a) 2 b) 2 C) 2048 d) 1024



16) Given a collection of points P in the plane, a 1-set is a point in P that can be separated from the rest by a line, .i.e the point lies on one side of the line while the others lie on the other side.The number of 1-sets of P is denoted by n1(P). The minimum value of n1(P) over all configurations P of 5 points in the plane in general position(.i.e no three points in P lie on a line) is:
a) 3 b) 5 c) 2 d)1

17) The citizens of planet nigiet are 8 fingered and have thus developed their decimal system in base 8.A certain street in nigiet contains 1000 (in base 8) buildings numbered 1 to 1000.How many 3s are used in numbering these buildings?
a) 54 b) 64 c) 265 d) 192

18) Given 3 lines in the plane such that the points of intersection form a triangle with sides of length 20, 20 and 30, the number of points equidistant from all the 3 lines is
a) 1 b) 3 c) 4 d) 0

19) Hare in the other. The hare starts after the tortoise has covered 1/5 of its distance and that too leisurely3. A hare and a tortoise have a race along a circle of 100 yards diameter. The tortoise goes in one direction and the. The hare and tortoise meet when the hare has covered only 1/8 of the distance. By what factor should the hare increase its speed so as to tie the race?
a) 37.80 b) 8 c) 40 d) 5

20) Here 10 programers, type 10 lines with in 10 minutes then 60 lines can type within 60 minutes. How many programmers are needed?
a) 16 b) 6 c) 10 d) 60

21) Alice and Bob play the following coins-on-a-stack game. 20 coins are stacked one above the other. One of them is a special (gold) coin and the rest are ordinary coins. The goal is to bring the gold coin to the top by repeatedly moving the topmost coin to another position in the stack.Alice starts and the players take turns. A turn consists of moving the coin on the top to a position i below the top coin (0 = i = 20). We will call this an i-move (thus a 0-move implies doing nothing). The proviso is that an i-move cannot be repeated; for example once a player makes a 2-move, on subsequent turns neither player can make a 2-move. If the gold coin happens to be on top when it’s a player’s turn then the player wins the game. Initially, the gold coins the third coin from the top. Then

a) In order to win, Alice’s first move should be a 1-move.
b) In order to win, Alice’s first move should be a 0-move.
c) In order to win, Alice’s first move can be a 0-move or a 1-move.
d) Alice has no winning strategy.

22) For the FIFA world cup, Paul the octopus has been predicting the winner of each match with amazing success. It is rumored that in a match between 2 teams A and B, Paul picks A with the same probability as A’s chances of winning. Let’s assume such rumors to be true and that in a match between Ghana and Bolivia, Ghana the stronger team has a probability of 2/3 of winning the game. What is the probability that Paul will correctly pick the winner of the Ghana-Bolivia game?
a) 1/9 b) 4/9 c) 5/9 d) 2/3

23) 36 people {a1, a2, …, a36} meet and shake hands in a circular fashion. In other words, there are totally 36 handshakes involving the pairs, {a1, a2}, {a2, a3}, …, {a35, a36}, {a36, a1}. Then size of the smallest set of people such that the rest have shaken hands with at least one person in the set is
a) 12 b) 11 c) 13 d) 18

24) After the typist writes 12 letters and addresses 12 envelopes, she inserts the letters randomly into the envelopes (1 letter per envelope). What is the probability that exactly 1 letter is inserted in an improper envelope?
a) 1/12 b) 0 c) 12/212 d) 11/12

25) A can do a work in 15 days and B in 20 days. If they work on it together for 4 days, then the fraction of the work that is left is:
a) 1/4 b) 1/10 c) 7/15 d) 8/15

26) If VXUPLVH is written as SURMISE, what is SHDVD ?

27) If DDMUQZM is coded as CENTRAL then RBDJK can be coded as ———

28) In the word ECONOMETRICS, if the first and second , third and forth ,forth and fifth, fifth and sixth words are interchanged up to the last letter, what would be the tenth letter from right?

29) Find the result of the following __expression if, M denotes modulus operation, R denotes round-off, T denotes truncation: M(373,5)+R(3.4)+T(7.7)+R(5.8)

30) Find the missing number in the series: 2, 5, __ , 19 , 37, 75.
  #5  
24th February 2015, 01:10 PM
Unregistered
Guest
 
Re: TCS aptitude question papers

Hello friend my self Diya, here I am searching the TCS Aptitude Question Paper so can any one please provide me the same?
  #6  
24th February 2015, 04:57 PM
Super Moderator
 
Join Date: Apr 2013
Re: TCS aptitude question papers

Hello Diya, as per your request here I am sharing the TCS Aptitude Question Paper with you

1) If log 0.317=0.3332 and log 0.318=0.3364 then find log 0.319 ?
Sol) log 0.317=0.3332 and log 0.318=0.3364, then
log 0.319=log0.318+(log0.318-log0.317) = 0.3396

2) A box of 150 packets consists of 1kg packets and 2kg packets. Total weight of box is 264kg. How many 2kg packets are there ?
Sol) x= 2 kg Packs
y= 1 kg packs
x + y = 150 .......... Eqn 1
2x + y = 264 .......... Eqn 2
Solve the Simultaneous equation; x = 114
so, y = 36
ANS : Number of 2 kg Packs = 114.

3) My flight takes of at 2am from a place at 18N 10E and landed 10 Hrs later at a place with coordinates 36N70W. What is the local time when my plane landed?
6:00 am b) 6:40am c) 7:40 d) 7:00 e) 8:00
Sol) The destination place is 80 degree west to the starting place. Hence the time difference between these two places is 5 hour 20 min. (=24hr*80/360).
When the flight landed, the time at the starting place is 12 noon (2 AM + 10 hours).
Hence, the time at the destination place is 12 noon - 5:20 hours = 6: 40 AM

4) A plane moves from 9°N40°E to 9°N40°W. If the plane starts at 10 am and takes 8 hours to reach the destination, find the local arrival time ?
Sol) Since it is moving from east to west longitide we need to add both
ie,40+40=80
multiply the ans by 4
=>80*4=320min
convert this min to hours ie, 5hrs 33min
It takes 8hrs totally . So 8-5hr 30 min=2hr 30min
So the ans is 10am+2hr 30 min
=>ans is 12:30 it will reach

5) The size of the bucket is N kb. The bucket fills at the rate of 0.1 kb per millisecond. A programmer sends a program to receiver. There it waits for 10 milliseconds. And response will be back to programmer in 20 milliseconds. How much time the program takes to get a response back to the programmer, after it is sent? Please tell me the answer with explanation. Very urgent.
Sol) see it doesn't matter that wat the time is being taken to fill the bucket.after reaching program it waits there for 10ms and back to the programmer in 20 ms.then total time to get the response is 20ms +10 ms=30ms...it's so simple....

6) A file is transferred from one location to another in 'buckets'. The size of the bucket is 10 kilobytes. Each bucket gets filled at the rate of 0.0001 kilobytes per millisecond. The transmission time from sender to receiver is 10 milliseconds per bucket. After the receipt of the bucket the receiver sends an acknowledgement that reaches sender in 100 milliseconds. Assuming no error during transmission, write a formula to calculate the time taken in seconds to successfully complete the transfer of a file of size N kilobytes.
(n/1000)*(n/10)*10+(n/100)....as i hv calculated...~~!not 100% sure

7) A fisherman's day is rated as good if he catches 9 fishes, fair if 7 fishes and bad if 5 fishes. He catches 53 fishes in a week n had all good, fair n bad days in the week. So how many good, fair n bad days did the fisher man had in the week
Ans:4 good, 1 fair n 2 bad days
Sol) Go to river catch fish
4*9=36
7*1=7
2*5=10
36+7+10=53...
take what is given 53
good days means --- 9 fishes so 53/9=4(remainder=17) if u assume 5 then there is no chance for bad days.
fair days means ----- 7 fishes so remaining 17 --- 17/7=1(remainder=10) if u assume 2 then there is no chance for bad days.
bad days means -------5 fishes so remaining 10---10/5=2days.
Ans: 4 good, 1 fair, 2bad. ==== total 7 days.

x+y+z=7--------- eq1
9*x+7*y+5*z=53 -------eq2
multiply eq 1 by 9,
9*x+9*y+9*z=35 -------------eq3
from eq2 and eq3
2*y+4*z=10-----eq4
since all x,y and z are integer i sud put a integer value of y such that z sud be integer in eq 4 .....and ther will be two value y=1 or 3 then z = 2 or 1 from eq 4

for first y=1,z=2 then from eq1 x= 4
so 9*4+1*7+2*5=53.... satisfied
now for second y=3 z=1 then from eq1 x=3
so 9*3+3*7+1*5=53 ......satisfied
so finally there are two solution of this question
(x,y,z)=(4,1,2) and (3,3,1)...

8) Y catches 5 times more fishes than X. If total number of fishes caught by X and Y is 42, then number of fishes caught by X?
Sol) Let no. of fish x catches=p
no. caught by y =r
r=5p.
r+p=42
then p=7,r=35

9) Three companies are working independently and receiving the savings 20%, 30%, 40%. If the companies work combinely, what will be their net savings?
suppose total income is 100
so amount x is getting is 80
y is 70
z =60
total=210

but total money is 300
300-210=90
so they are getting 90 rs less
90 is 30% of 300 so they r getting 30% discount

10) The ratio of incomes of C and D is 3:4.the ratio of their expenditures is 4:5. Find the ratio of their savings if the savings of C is one fourths of his income?
Sol) incomes:3:4
expenditures:4:5
3x-4y=1/4(3x)
12x-16y=3x
9x=16y
y=9x/16
(3x-4(9x/16))/((4x-5(9x/16)))
ans:12/19

11) If G(0) = -1 G(1)= 1 and G(N)=G(N-1) - G(N-2) then what is the value of G(6)?
ans: -1
bcoz g(2)=g(1)-g(0)=1+1=2
g(3)=1
g(4)=-1
g(5)=-2
g(6)=-1

12) If A can copy 50 pages in 10 hours and A and B together can copy 70 pages in 10 hours, how much time does B takes to copy 26 pages?
Sol) A can copy 50 pages in 10 hrs.
A can copy 5 pages in 1hr.(50/10)
now A & B can copy 70 pages in 10hrs.
thus, B can copy 90 pages in 10 hrs.[eqn. is (50+x)/2=70, where x--> no. of pages B can copy in 10 hrs.]
so, B can copy 9 pages in 1hr.
therefore, to copy 26 pages B will need almost 3hrs.
since in 3hrs B can copy 27 pages.

13) what's the answer for that :
A, B and C are 8 bit no's. They are as follows:
A -> 1 1 0 0 0 1 0 1
B -> 0 0 1 1 0 0 1 1
C -> 0 0 1 1 1 0 1 0 ( - =minus, u=union)
Find ((A - C) u B) =?

To find A-C, We will find 2's compliment of C and them add it with A,
That will give us (A-C)
2's compliment of C=1's compliment of C+1
=11000101+1=11000110
A-C=11000101+11000110
=10001001
Now (A-C) U B is .OR. logic operation on (A-C) and B
10001001 .OR . 00110011
The answer is = 10111011,
Whose decimal equivalent is 187.

14) One circular array is given(means memory allocation tales place in circular fashion) diamension(9X7) and sarting add. is 3000, What is the address of (2,3)........
Sol) it's a 9x7 int array so it reqiure a 126 bytes for storing.b'ze integer value need 2 byes of memory allocation. and starting add is 3000
so starting add of 2x3 will be 3012.

15) In a two-dimensional array, X (9, 7), with each element occupying 4 bytes of memory, with the address of the first element X (1, 1) is 3000, find the address of X (8, 5).
Sol) initial x (1,1) = 3000 u hav to find from x(8,1)so u have x(1,1),x(1,2) ... x(7,7) = so u have totally 7 * 7 = 49 elementsu need to find for x(8,5) ? here we have 5 elements each element have 4 bytes : (49 + 5 -1) * 4 = 212 -----( -1 is to deduct the 1 element ) 3000 + 212 = 3212

16) Which of the following is power of 3 a) 2345 b) 9875 c) 6504 d) 9833

17) The size of a program is N. And the memory occupied by the program is given by M = square root of 100N. If the size of the program is increased by 1% then how much memory now occupied ?
Sol) M=sqrt(100N)
N is increased by 1%
therefore new value of N=N + (N/100)
=101N/100
M=sqrt(100 * (101N/100) )
Hence, we get M=sqrt(101 * N)

18)
1)SCOOTER --------- AUTOMOBILE--- A. PART OF
2.OXYGEN----------- WATER ------- B. A Type of
3.SHOP STAFF------- FITTERS------ C. NOT A TYPE OF
4. BUG -------------REPTILE------ D. A SUPERSET OF
1)B 2)A 3)D 4)C

19) A bus started from bustand at 8.00a m and after 30 min staying at destination, it returned back to the bustand. the destination is 27 miles from the bustand. the speed of the bus 50 percent fast speed. at what time it returns to the bustand
this is the step by step solution:
a bus cover 27 mile with 18 mph in =27/18= 1 hour 30 min. and it wait at stand =30 min.
after this speed of return increase by 50% so 50%of 18 mph=9mph
Total speed of returnig=18+9=27
Then in return it take 27/27=1 hour
then total time in joureny=1+1:30+00:30 =3 hour
so it will come at 8+3 hour=11 a.m.
So Ans==11 a.m

20) In two dimensional array X(7,9) each element occupies 2 bytes of memory.If the address of first element X(1,1)is 1258 then what will be the address of the element X(5,8) ?
Sol) Here, the address of first element x[1][1] is 1258 and also 2 byte of memory is given. now, we have to solve the address of element x[5][8], therefore, 1258+ 5*8*2 = 1258+80 = 1338 so the answer is 1338.

21) The temperature at Mumbai is given by the function: -t2/6+4t+12 where t is the elapsed time since midnight. What is the percentage rise (or fall) in temperature between 5.00PM and 8.00PM?

22) Low temperature at the night in a city is 1/3 more than 1/2 high as higher temperature in a day. Sum of the low temperature and highest temp. is 100 degrees. Then what is the low temp?
Sol) Let highest temp be x
so low temp=1/3 of x of 1/2 of x plus x/2 i.e. x/6+x/2
total temp=x+x/6+x/2=100
therefore, x=60
Lowest temp is 40

23) In Madras, temperature at noon varies according to -t^2/2 + 8t + 3, where t is elapsed time. Find how much temperature more or less in 4pm to 9pm. Ans. At 9pm 7.5 more
Sol) In equestion first put t=9,
we will get 34.5...........................(1)
now put t=4,
we will get 27..............................(2)
so ans=34.5-27
=7.5

24) A person had to multiply two numbers. Instead of multiplying by 35, he multiplied by 53 and the product went up by 540. What was the raised product?
a) 780 b) 1040 c) 1590 d) 1720
Sol) x*53-x*35=540=> x=30 therefore, 53*30=1590 Ans

25) How many positive integer solutions does the equation 2x+3y = 100 have?
a) 50 b) 33 c) 16 d) 35
Sol) There is a simple way to answer this kind of Q's given 2x+3y=100, take l.c.m of 'x' coeff and 'y' coeff i.e. l.c.m of 2,3 ==6then divide 100 with 6 , which turns out 16 hence answer is 16short cut formula--- constant / (l.cm of x coeff and y coeff)

26) The total expense of a boarding house are partly fixed and partly variable with the number of boarders. The charge is Rs.70 per head when there are 25 boarders and Rs.60 when there are 50 boarders. Find the charge per head when there are 100 boarders.
a) 65 b) 55 c) 50 d) 45
Sol)
Let a = fixed cost and k = variable cost and n = number of boarders
total cost when 25 boarders c = 25*70 = 1750 i.e. 1750 = a + 25k
total cost when 50 boarders c = 50*60 = 3000 i.e. 3000 = a + 50k
solving above 2 eqns, 3000-1750 = 25k i.e. 1250 = 25k i.e. k = 50
therefore, substituting this value of k in either of above 2 eqns we get
a = 500 (a = 3000-50*50 = 500 or a = 1750 - 25*50 = 500)
so total cost when 100 boarders = c = a + 100k = 500 + 100*50 = 5500
so cost per head = 5500/100 = 55

27) Amal bought 5 pens, 7 pencils and 4 erasers. Rajan bought 6 pens, 8 erasers and 14 pencils for an amount which was half more than what Amal had paid. What % of the total amount paid by Amal was paid for pens?
a) 37.5% b) 62.5% c) 50% d) None of these
Sol)
Let, 5 pens + 7 pencils + 4 erasers = x rupees
so 10 pens + 14 pencils + 8 erasers = 2*x rupees
also mentioned, 6 pens + 14 pencils + 8 erarsers = 1.5*x rupees
so (10-6) = 4 pens = (2-1.5)x rupees
so 4 pens = 0.5x rupees => 8 pens = x rupees
so 5 pens = 5x/8 rupees = 5/8 of total (note x rupees is total amt paid byamal)
i.e 5/8 = 500/8% = 62.5% is the answer

28) I lost Rs.68 in two races. My second race loss is Rs.6 more than the first race. My friend lost Rs.4 more than me in the second race. What is the amount lost by my friend in the second race?
Sol)
x + x+6 = rs 68
2x + 6 = 68
2x = 68-6
2x = 62
x=31
x is the amt lost in I race
x+ 6 = 31+6=37 is lost in second race
then my friend lost 37 + 4 = 41 Rs

29) Ten boxes are there. Each ball weighs 100 gms. One ball is weighing 90 gms. i) If there are 3 balls (n=3) in each box, how many times will it take to find 90 gms ball? ii) Same question with n=10 iii) Same question with n=9
to me the chances are
when n=3
(i) nC1= 3C1 =3 for 10 boxes .. 10*3=30
(ii) 10C1=10 for 10 boxes ....10*10=100
(iii)9C1=9 for 10 boxes .....10*9=90

30) (1-1/6) (1-1/7).... (1- (1/ (n+4))) (1-(1/ (n+5))) = ?
leaving the first numerater and last denominater, all the numerater and denominater will cancelled out one another. Ans. 5/(n+5)

31) A face of the clock is divided into three parts. First part hours total is equal to the sum of the second and third part. What is the total of hours in the bigger part?
Sol) the clock normally has 12 hr
three parts x,y,z
x+y+z=12
x=y+z
2x=12
x=6
so the largest part is 6 hrs

32) With 4/5 full tank vehicle travels 12 miles, with 1/3 full tank how much distance travels
Sol) 4/5 full tank= 12 mile
1 full tank= 12/(4/5)
1/3 full tank= 12/(4/5)*(1/3)= 5 miles

33) wind blows 160 miles in 330min.for 80 miles how much time required
Sol) 160 miles= 330 min
1 mile = 330/160
80 miles=(330*80)/160=165 min.

34) A person was fined for exceeding the speed limit by 10mph.another person was also fined for exceeding the same speed limit by twice the same if the second person was travelling at a speed of 35 mph. find the speed limit
Sol)
(x+10)=(x+35)/2
solving the eqn we get x=15

35) A sales person multiplied a number and get the answer is 3 instead of that number divided by 3. what is the answer he actually has to get.
Sol) Assume 1
1* 3 = 3
1*1/3=1/3
so he has to got 1/3
this is the exact answer

36) A person who decided to go weekend trip should not exceed 8 hours driving in a day average speed of forward journey is 40 mph due to traffic in Sundays the return journey average speed is 30 mph. How far he can select a picnic spot.

37) Low temperature at the night in a city is 1/3 more than 1/2 hinge as higher temperature in a day. Sum of the low temp and high temp is 100 c. then what is the low temp.
ans is 40 c.
Sol) let x be the highest temp. then,
x+x/2+x/6=100.
therefore, x=60 which is the highest temp
and 100-x=40 which is the lowest temp.

38) car is filled with four and half gallons of oil for full round trip. Fuel is taken 1/4 gallons more in going than coming. What is the fuel consumed in coming up.
Sol) let feul consumed in coming up is x. thus equation is: x+1.25x=4.5ans:2gallons

39) A work is done by the people in 24 min. One of them can do this work alone in 40 min. How much time required to do the same work for the second person
Sol) Two people work together in 24 mins.
So, their one day work is
(1/A)+(1+B)=(1/24)
One man can complete the work in 40mins
one man's one day work (1/B)= (1/40)
Now,
(1/A)=(1/24)-(1/40)
(1/A)=(1/60)
So, A can complete the work in 60 mins.

40) In a company 30% are supervisors and 40% employees are male if 60% of supervisors are male. What is the probability? That a randomly chosen employee is a male or female?
Sol) 40% employees are male if 60% of supervisors are male so for 100% is 26.4%so the probability is 0.264

41) In 80 coins one coin is counterfeit what is minimum number of weighing to find out counterfeit coin
Sol) the minimum number of wieghtings needed is just 5.as shown below
(1) 80->30-30
(2) 15-15
(3) 7-7
(4) 3-3
(5) 1-1

42) 2 oranges, 3 bananas and 4 apples cost Rs.15. 3 oranges, 2 bananas, and 1 apple costs Rs 10. What is the cost of 3 oranges, 3 bananas and 3 apples?
2x+3y+4z=15
3x+2y+z=10 adding
5x+5y+5z=25
x+y+z=5 that is for 1 orange, 1 bannana and 1 apple requires 5Rs.
so for 3 orange, 3 bannana and 3 apple requires 15Rs.
i.e. 3x+3y+3z=15

43) In 8*8 chess board what is the total number of squares refers
Sol) odele discovered that there are 204 squares on the board We found that you would add the different squares - 1 + 4 + 9 + 16+ 25 + 36 + 49 + 64.
Also in 3*3 tic tac toe board what is the total no of squares
Ans 14 ie 9+4(bigger ones)+1 (biggest one)
If you ger 100*100 board just use the formula
the formula for the sum of the first n perfect squares is
n x (n + 1) x (2n + 1)
______________________
6
if in this formula if you put n=8 you get your answer 204

44) One fast typist type some matter in 2hr and another slow typist type the same matter in 3hr. If both do combinely in how much time they will finish.
Sol) Faster one can do 1/2 of work in one hourslower one can do 1/3 of work in one hourboth they do (1/2+1/3=5/6) th work in one hour.so work will b finished in 6/5=1.2 hour i e 1 hour 12 min.

45) If Rs20/- is available to pay for typing a research report & typist A produces 42 pages and typist B produces 28 pages. How much should typist A receive?
Here is the answer Find of 42 % of 20 rs with respect to 70 (i.e 28 + 42) ==> (42 * 20 )/70 ==> 12 Rs

46) An officer kept files on his table at various times in the order 1,2,3,4,5,6. Typist can take file from top whenever she has time and type it.What order she cann t type.?

47) In some game 139 members have participated every time one fellow will get bye what is the number of matches to choose the champion to be held?
the answer is 138 matches
Sol) since one player gets a bye in each round,he will reach the finals of the tournament without playing a match.
therefore 137 matches should be played to detemine the second finalist from the remaining 138 players(excluding the 1st player)
therefore to determine the winner 138 matches shd be played.

48) One rectangular plate with length 8inches, breadth 11 inches and 2 inches thickness is there. What is the length of the circular rod with diameter 8 inches and equal to volume of rectangular plate?
Sol) Vol. of rect. plate= 8*11*2=176
area of rod=(22/7)*(8/2)*(8/2)=(352/7)
vol. of rod=area*length=vol. of plate
so length of rod= vol of plate/area=176/(352/7)=3.5

49) One tank will fill in 6 minutes at the rate of 3cu ft /min, length of tank is 4 ft and the width is 1/2 of length, what is the depth of the tank?
3 ft 7.5 inches

50) A man has to get air-mail. He starts to go to airport on his motorbike. Plane comes early and the mail is sent by a horse-cart. The man meets the cart in the middle after half an hour. He takes the mail and returns back, by doing so, he saves twenty minutes. How early did the plane arrive?
ans:10min:::assume he started at 1:00,so at 1:30 he met cart. He returned home at 2:00.so it took him 1 hour for the total jorney.by doing this he saved 20 min.so the actual time if the plane is not late is 1 hour and 20 min.so the actual time of plane is at 1:40.The cart travelled a time of 10 min before it met him.so the plane is 10 min early.


Quick Reply
Your Username: Click here to log in

Message:
Options




All times are GMT +5. The time now is 09:22 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
SEO by vBSEO 3.6.0 PL2

1 2 3 4