Anda di halaman 1dari 12

SAMPLE PAPER Aptitude

1. For the first qustion in the paper answer is (30).

2. Five trays cost is 0.35 each and dozen----- (ans:Rs13.75)

3. In a journey of 15 miles two third distance was travelled with 40 mph and remaining with 60
mph.How muvh time the journey takes...(ans:20 min)

4. A man walks from 9.15 to 5.15 from monday to friday and 9.00 to 12.00 on saturday.Each day
0.45 min lunch.How much time he walks in a week...(ans: 39hrs15min).

5. 12 revolutions takes 1/8 th second time.In 20 seconds how many revolutions...(ans:1920)

6. In 60 reems of paper 40 reems were utilised then what percent will remain...(ans:33.33%)

7. A started at 9.00 am with 6 mph and B started at 9.30 am with 8mph in the same direction. At
what time they will meet... (ans:11.00am)

8. In a storage stall of 5x3x2inch.How many blanks of size 2x1x1inch can be stored..(ans:15)

9. In a company 3/5 of people know shorthand 1/4th know typing and 1/5 know both. What
fraction of people do not know both.. (ans:35%)

10. A man how many bikes of Rs 14000 can buy by selling 2100 bikes of Rs500 of each (ans:75)

11. A company requires 11,500 strength.present employees are 200 women , men and 6500
unmarried To reach the target how many women required to maintain the same ratio (ans : 300)

12. What is the time required to punch 1500 cards of 50 column each at the rate of 10,000
punches per hour (ans:7hr 30min)

13. In a group of five persons A,B,C,D,and E


a)A and C are intelligent in English and Reasoning.
b)B and C are intelligent in English and General Awareness.
c)E and D are intelligent in Arithmatic and Inteview.
d)E is intelligent in Interview,reasoning and Arithe matic.
e)B and D are intelligent in Arithematic and General Awareness.

1) Who is intelligent in English,arithematic,and general awareness (ANSWER:B)


2)Who is intelligent in english and reasoning but not in general awareness (ans:A)
3)Who is intelligent in Arithematic,General Awareness and Interview (ans:D)
4)Who is intelligent in English General Awareness and Reasoning (ans:C)
5)Who is intelligent in Arithematic,Reasoning and Interview(ans:E)

14. Five persons A,B,C,D and E were travelling in a car.They were two ladies in the group. Of
them who knew the car driving one was a lady.A is brother of D.B wifeof D,drve at the begining.
E drive at the end.

1)Which of the following is a pair of brothers.(ans:A,D)


2)Who was the other lady in the group.(ans:C)
3)In the case of which the following pairs,no relationship
can be established with one else in the group (ans:C,E)
4)How was E related to A.(ans:DATA INADEQUATE)

G Thrisul Babu
15. A man said to woman " your only brother's son is my wife's
brother". How is the woman related to the man's wife...(ans:AUNT)
Technical

1. The following variable is available in file1.c

static int average_float;

all the functions in the file1.c can access the variable

2. extern int x;

Check the answer

3. Another Problem with

# define TRUE 0

some code

while(TRUE)
{
some code

}
This won't go into the loop as TRUE is defined as 0

4. A question in structures where the memebers are dd,mm,yy.


mm:dd:yy
09:07:97

5. A question with argc and argv .

Input will be

c:\TEMP.EXE Ramco Systems India

6.
main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
find the output?

7.
int x;
main()
{
int x=0;
{
int x=10;

G Thrisul Babu
x++;
change_value(x);
x++;
Modify_value();
printf("First output: %d\n",x);
}
x++;
change_value(x);
printf("Second Output : %d\n",x);
Modify_value();
printf("Third Output : %d\n",x);
}

Modify_value()
{
return (x+=10);
}

change_value()
{
return(x+=1);
}
find the output?

8.
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
find the output?

9.
main()
{
char *p1="Name";
char *p2;
p2=(char *)malloc(20);
while(*p2++=*p1++);
printf("%s\n",p2);
}
find the output?

10.
main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
find the output?

11.
#define swap1(a,b) a=a+b;b=a-b;a=a-b;
main()
{

G Thrisul Babu
int x=5,y=10;
swap1(x,y);
printf("%d %d\n",x,y);
swap2(x,y);
printf("%d %d\n",x,y);
}

int swap2(int a,int b)


{
int temp;
temp=a;
b=a;
a=temp;
return;
}
find the output?

12.
main()
{
char *ptr = "Ramco Systems";
(*ptr)++;
printf("%s\n",ptr);
ptr++;
printf("%s\n",ptr);
}
find the output?

13.
#include<stdio.h>
main()
{
char s1[]="Ramco";
char s2[]="Systems";
s1=s2;
printf("%s",s1);
}
find the output?

14.
#include<stdio.h>
main()
{
char *p1;
char *p2;
p1=(char *) malloc(25);
p2=(char *) malloc(25);
strcpy(p1,"Ramco");
strcpy(p2,"Systems");
strcat(p1,p2);
printf("%s",p1);
}

G Thrisul Babu
English Language Tests

Question 1: The boy is happy.

=> "happy" is an adjective in the sentence.

Question 2: The girl ate some delicious fruit.

=> "fruit" is a noun in the sentence.

Question 3: The black fly is swimming in my soup.

=> "fly" is a noun in the sentence.

Question 4: Everyone thinks the cafeteria food is terrible.

=> "thinks" is a verb in the sentence.

Question 5: The children are playing.

=> "the children" is the subject of the sentence.

Question 6: Why are you tired?

=> "are" is the verb of the sentence.

Question 7: I want a laptop computer, because the laptop computers can be very useful.

Question 8: He is a doctor

Question 9: We are students.

Question 10: Is it a tomato?

G Thrisul Babu
Reasoning Questions

Directions (questions 1 to 5): Read the following information and answer the questions given
below.

(i) A, B, C, D, E, F and G are seven members standing in a row (not necessarily in the same
order) facing north.
(ii) C and B have as many members between them as G and C have between them.
(iii) D, who is 3rd from the extreme left, is 3rd to the left of E.
(iv) A and D are neighbors and F and C are neighbors.

1. Which of the following statements may be false?


(a) A is the 3rd to the left of F
(b) D is 3rd to the left of E
(c) F is 3rd the right of A
(d) B is 3rd to the left of C
(e) None of these
Ans (d)

2. Which of the following statements is true?


(a) C and E are neighbors
(b) E is to the immediate left of F
(c) C is to the immediate left of D
(d) A is to the immediate left of D
(e) None of these
Ans (d)

3. Who is at the extreme right?


(a) Data inadequate
(b) G
(c) B
(d) E
(e) None of these
Ans (a)

G Thrisul Babu
4. Which of the following given two pairs of neighbors?
(a) A, C and D, C
(b) A, B and E, G
(c) D, C and E, F
(d) C, F and C, E
(e) None of these
Ans (c)

5. What is the position of F?


(a) Immediate to the right of E.
(b) Third to the left of G
(c) Immediate to the left of C
(d) 5th to the right of B
(e) None of these
Ans (e)

6. Four of the following five groups of letters are alike in some way while one is different.
Find out which one is different.
(a) ISLOJ
(b) LUOQM
(c) AKDGB
(d) FPILG
(e) NXQTO
Ans (b)

7. In the sequence given below the sum of the two digits which immediately precede the
digit ?4′ exceeds the sum of the two digits which immediately follow the digit 4 and sum of
the two digits which immediately follow the digit 6 exceeds the sum of the two digits which
immediately precede the digit 6. How many such 4?s and 6?s together are there?
54462635642843766483
(a) 4
(b) 6
(c) 3
(d) 5
(e) None of these
Ans (a)

G Thrisul Babu
8. Below are given six three-digit numbers. The digits comprise of numeric and letters. The
letter indicates its serial order in the English alphabet. What will be the middle digit of the
4th number when the numbers are arranged in the descending order after interchanging
numeric in each number without altering the place of letter in the number?
19F, 2H9, 98B, D76, 7A6, 61E
(a) 8
(b) 9
(c) 6
(d) 7
(e) None of these
Ans (e)

Directions (Q.9 & 10): In a code language any letter which is immediately after or before a
vowel in the English alphabet is substituted by that vowel and any vowel i.e. A, E, I, O and U is
substituted by the letter immediately following that vowel in the English alphabet.

9. How can the word FEVERISH be written in that code language?


(a) EDVDRJSI
(b) EFUFRHSI
(c) EFUFRJSI
(d) EDUFRJSI
(e) None of these
Ans (c)

10. How can the word CONFEDERATION be written in that code language?
(a) CPOGFEDRBUTPO
(b) CPOEFEFRBUJPO
(c) CNOEFEFRBUHNO
(d) CONFFDERATION
(e) None of these
Ans (b)

11. If each of the vowels i.e. A, E, I, O, & U along with the 3rd letter to its right in the
alphabet are taken out and arranged one after the other in the same order followed by the
remaining letters of the alphabet, which of the following will be 5th to the left of the 19th
letter from the left in the new arrangement? A B C D E F G H I J K L M N O P Q R S T U V W X
YZ

G Thrisul Babu
(a) G
(b) H
(c) J
(d) W
(e) none of these
Ans (a)

12. How many pairs of letters are there in the word SPONTANEOUS which have number of
letters between them in the word one less than the number of letters between them in
English alphabet?
(a) five
(b) one
(c) four
(d) Two
(e) Three
Ans (a)

13. Four of the following five have similar relationship and hence form a group. Which one
does not belong to the group?
(a) BROTHER : DORVEHT
(b) ENGLISH : GGNNSIJ
(c) ANOTHER : CONVEHT
(d) BETWEEN : DTEZEEP
(e) HUSBAND : JSUDNAF
Ans (d)

14. Which pair of the letters in the word BEAUTIFUL has the same relationship between its
letters with respect to their position in the English alphabet as the pair EA in that word has
between its letters?
(a) IB
(b) LF
(c) IE
(d) FL
(e) TL
Ans (c)

G Thrisul Babu
15. Which of the following relates to FLOWER in the same way as RTERBN relates to
SECTOR?
(a) RWLGPF
(b) EOFKUQ
(c) EOFMXS
(d) RWLEPD
(e) RWLEND
Ans (e)

16. If arranged properly which one of the following is not a river in India.
(a) ANUMAY
(b) IHSOK
(c) TABROC
(d) ADAMRAN
(e)None of these
Ans (c) It is CORBAT. It is a National Park

17. If the following words are arranged in a natural sequence, which word would be the
first.
(a) Night
(b) Negative
(c) Neighbour
(d) Near
(e) None of these
Ans (d)

18. In an office having 55 employees men out number the women by 15. How many women
are working in that office.
(a) 30
(b) 20
(c) 40
(d) 50
(e) None of these
Ans (b)

G Thrisul Babu
19. Reaching a place of appointment on Friday I found that I was two days earlier than the
scheduled day. If I had reached on the following Wednesday how many days late would I
have been.
(a) one day
(b) two days
(c) three days
(d) four days
(e) None of these
Ans (c)

20. Reena traveled from point A to a distance of 10 feet east at point B. She then turned
right and walked 3 feet. Again she turned right and walked 14 feet. How far is she from the
starting point.
(a) 4 feet
(b) 5 feet
(c) 24 feet
(d) 25 feet
(e) None of these
Ans (a)

Directions (Questions 21 to 25):- One of the words given in the alternatives cannot be formed
by using the letters given in the question. Find out that word.
21. ENCOURAGE
(a) ANGER
(b) GREEN
(c) USAGE
(d) COURAGE
(d) None of these
Ans (c) There is no alphabet ?S? in the question

22. CONCENTRATE
(a) CENTRE
(b) CONCERN
(c) TREAT
(d) REASON
(e) None of these
Ans (d)

G Thrisul Babu
23. INTRANSIGENT
(a) STAIN
(b) TRAIN
(c) RESIGN
(d) TRACE
(e) None of these
Ans (d)

24. MAGNETIC
(a) MENACE
(b) GAIN
(c) NAME
(d) GAME
(e) None of these
Ans (a)

25. ENTHUSIASM
(a) MITE
(b) ASSIST
(c) ATHENS
(d) SENT
(e) None of these
Ans (b)

G Thrisul Babu

Anda mungkin juga menyukai