this is for all those who are still oblivious to the fact that NMIMS has decided to change the test pattern from this year on. The change comes largely from the experience that they had last year. The GK section was fairly easy in last years NMAT and hence, resulted in lot of students scoring well in the test, thereby compromising the overall quality of the student mix. It is believed that this prompted NMAT authorities to revise the pattern as follows,
Section No.
Section Name
No. of Questions
Suggested time (in minutes)
I
Language Skills
40
30
II
Quantitative Skills, DataAnalysis & Sufficiency
60
55
III
Intelligence &Logical Reasoning
50
35
What this means is that one has to be extra careful while taking these mock tests, because most of the available mocks follow the last year pattern.
for sample papers visit
http://www.koolkareers.com/mba/mock-exams/mock-nmat-1/
http://www.mbatutes.com/Download/2829879.pdf
Monday, December 22, 2008
NMAT 2007 and Available Mock papers
Posted by onlinemoneymaking at 11:36 PM 0 comments
Sunday, December 21, 2008
LG Soft India Placement papers
Instructions:
1. Please ignore any case-sensitive errors and un-included libraries.
2. You may use the back of this question paper for any rough work.
Q1.
main()
{
int i;
printf("%d", &i)+1;
scanf("%d", i)-1;
}
a. Runtime error.
b. Runtime error. Access violation.
c. Compile error. Illegal syntax
d. None of the above
Q2.
main(int argc, char *argv[])
{
(main && argc) ? main(argc-1, NULL) : return 0;
}
a. Runtime error.
b. Compile error. Illegal syntax
c. Gets into Infinite loop
d. None of the above
Q3.
main()
{
int i;
float *pf;
pf = (float *)&i;
*pf = 100.00;
printf("%d", i);
}
a. Runtime error.
b. 100
c. Some Integer not 100
d. None of the above
Q4.
main()
{
int i = 0xff;
printf("%d", i<<2);
}
a. 4
b. 512
c. 1020
d. 1024
Q5.
#define SQR(x) x * x
main()
{
printf("%d", 225/SQR(15));
}
a. 1
b. 225
c. 15
d. none of the above
Q6.
union u
{
struct st
{
int i : 4;
int j : 4;
int k : 4;
int l;
}st;
int i;
}u;
main()
{
u.i = 100;
printf("%d, %d, %d",u.i, u.st.i, u.st.l);
}
a. 4, 4, 0
b. 0, 0, 0
c. 100, 4, 0
d. 40, 4, 0
Q7.
union u
{
union u
{
int i;
int j;
}a[10];
int b[10];
}u;
main()
{
printf("%d", sizeof(u));
printf("%d", sizeof(u.a));
printf("%d", sizeof(u.a[0].i));
}
a. 4, 4, 4
b. 40, 4, 4
c. 1, 100, 1
d. 40 400 4
Q8.
main()
{
int (*functable[2])(char *format, ...) ={printf, scanf};
int i = 100;
(*functable[0])("%d", i);
(*functable[1])("%d", i);
(*functable[1])("%d", i);
(*functable[0])("%d", &i);
}
a. 100, Runtime error.
b. 100, Random number, Random number, Random number.
c. Compile error
d. 100, Random number
Q9.
main()
{
int i, j, *p;
i = 25;
j = 100;
p = &i; /* Address of i is assigned to pointer p */
printf("%f", i/(*p)); /* i is divided by pointer p */
}
a. Runtime error.
b. 1.00000
c. Compile error
d. 0.00000
Q10.
main()
{
int i, j;
scanf("%d %d"+scanf("%d %d", &i, &j));
printf("%d %d", i, j);
}
a. Runtime error.
b. 0, 0
c. Compile error
d. the first two values entered by the user
Q11.
main()
{
char *p = "hello world";
p[0] = 'H';
printf("%s", p);
}
a. Runtime error.
b. ?Hello world?
c. Compile error
d. ?hello world?
Q12.
main()
{
char * strA;
char * strB = ?I am OK?;
memcpy( strA, strB, 6);
}
a. Runtime error.
b. ?I am OK?
c. Compile error
d. ?I am O?
Q13. How will you print % character?
a. printf(?\%?)
b. printf(?\\%?)
c. printf(?%%?)
d. printf(?\%%?)
Q14.
const int perplexed = 2;
#define perplexed 3
main()
{
#ifdef perplexed
#undef perplexed
#define perplexed 4
#endif
printf(?%d?,perplexed);
}
a. 0
b. 2
c. 4
d. none of the above
Q15.
struct Foo
{
char *pName;
};
main()
{
struct Foo *obj = malloc(sizeof(struct Foo));
strcpy(obj->pName,"Your Name");
printf("%s", obj->pName);
}
a. ?Your Name?
b. compile error
c. ?Name?
d. Runtime error
Q16.
struct Foo
{
char *pName;
char *pAddress;
};
main()
{
struct Foo *obj = malloc(sizeof(struct Foo));
obj->pName = malloc(100);
obj->pAddress = malloc(100);
strcpy(obj->pName,"Your Name");
strcpy(obj->pAddress, "Your Address");
free(obj);
printf("%s", obj->pName);
printf("%s", obj->pAddress);
}
a. ?Your Name?, ?Your Address?
b. ?Your Address?, ?Your Address?
c. ?Your Name? ?Your Name?
d. None of the above
Q17.
main()
{
char *a = "Hello ";
char *b = "World";
printf("%s", stract(a,b));
}
a. ?Hello?
b. ?Hello World?
c. ?HelloWorld?
d. None of the above
Q18.
main()
{
char *a = "Hello ";
char *b = "World";
printf("%s", strcpy(a,b));
}
a. ?Hello?
b. ?Hello World?
c. ?HelloWorld?
d. None of the above
Q19.
void func1(int (*a)[10])
{
printf("Ok it works");
}
void func2(int a[][10])
{
printf("Will this work?");
}
main()
{
int a[10][10];
func1(a);
func2(a);
}
a. ?Ok it works?
b. ?Will this work??
c. ?Ok it works Will this work??
d. None of the above
Q20.
main()
{
printf("%d, %d", sizeof('c'), sizeof(100));
}
a. 2, 2
b. 2, 100
c. 4, 100
d. 4, 4
Q21.
main()
{
int i = 100;
printf("%d", sizeof(sizeof(i)));
}
a. 2
b. 100
c. 4
d. none of the above
Q22.
main()
{
int c = 5;
printf("%d", main|c);
}
a. 1
b. 5
c. 0
d. none of the above
Q23.
main()
{
char c;
int i = 456;
c = i;
printf("%d", c);
}
a. 456
b. -456
c. random number
d. none of the above
Q24.
void main ()
{
int x = 10;
printf ("x = %d, y = %d", x,--x++);
}
a. 10, 10
b. 10, 9
c. 10, 11
d. none of the above
Q25.
main()
{
int i =10, j = 20;
printf("%d, %d\n", j-- , --i);
printf("%d, %d\n", j++ , ++i);
}
a. 20, 10, 20, 10
b. 20, 9, 20, 10
c. 20, 9, 19, 10
d. 19, 9, 20, 10
Q26.
main()
{
int x=5;
for(;x==0;x--) {
printf(?x=%d\n?, x--);
}
}
a. 4, 3, 2, 1, 0
b. 1, 2, 3, 4, 5
c. 0, 1, 2, 3, 4
d. none of the above
Q27
main()
{
int x=5;
for(;x!=0;x--) {
printf(?x=%d\n?, x--);
}
}
a. 5, 4, 3, 2,1
b. 4, 3, 2, 1, 0
c. 5, 3, 1
d. none of the above
Q28
main()
{
int x=5;
for(;x<= 0;x--)
{
printf(?x=%d ?, x--);
}
}
a. 5, 3, 1
b. 5, 2, 1,
c. 5, 3, 1, -1, 3
d. ?3, -1, 1, 3, 5
Q29.
main()
{
{
unsigned int bit=256;
printf(?%d?, bit);
}
{
unsigned int bit=512;
printf(?%d?, bit);
}
}
a. 256, 256
b. 512, 512
c. 256, 512
d. Compile error
Q30.
main()
{
int i;
for(i=0;i<5;i++)
{
printf("%d\n", 1L << i);
}
}
a. 5, 4, 3, 2, 1
b. 0, 1, 2, 3, 4
c. 0, 1, 2, 4, 8
d. 1, 2, 4, 8, 16
Q31.
main()
{
signed int bit=512, i=5;
for(;i;i--)
{
printf("%d\n", bit = (bit >> (i - (i -1))));
}
}
a. 512, 256, 128, 64, 32
b. 256, 128, 64, 32, 16
c. 128, 64, 32, 16, 8
d. 64, 32, 16, 8, 4
Q32.
main()
{
signed int bit=512, i=5;
for(;i;i--)
{
printf("%d\n", bit >> (i - (i -1)));
}
}
a. 512, 256, 0, 0, 0
b. 256, 256, 0, 0, 0
c. 512, 512, 512, 512, 512
d. 256, 256, 256, 256, 256
Q33.
main()
{
if (!(1&&0))
{
printf("OK I am done.");
}
else
{
printf(?OK I am gone.?);
}
}
a. OK I am done
b. OK I am gone
c. compile error
d. none of the above
Q34
main()
{
if ((1||0) && (0||1))
{
printf("OK I am done.");
}
else
{
printf(?OK I am gone.?);
}
}
a. OK I am done
b. OK I am gone
c. compile error
d. none of the above
Q35
main()
{
signed int bit=512, mBit;
{
mBit = ~bit;
bit = bit & ~bit ;
printf("%d %d", bit, mBit);
}
}
a. 0, 0
b. 0, 513
c. 512, 0
d. 0, -513
Labels: LG Soft
Posted by onlinemoneymaking at 12:26 PM 0 comments
Pattern : HCL Campus Selection Placement Paper Pattern
Aptitude Questions
1. Which of the following involves context switch,
(a) system call
(b) priviliged instruction
(c) floating poitnt exception
(d) all the above
(e) none of the above
Ans: (a)
2. In OST, terminal emulation is done in
(a) sessions layer
(b) application layer
(c) presentation layer
(d) transport layer
Ans: (b)
3. For 1 MB memory, the number of address lines required,
(a)11
(b)16
(c)22
(d) 24
Ans. (b)
4. Semaphore is used for
(a) synchronization
(b) dead-lock avoidence
(c) box
(d) none
Ans. (a)
5. Which holds true for the following statement
class c: public A, public B
a) 2 member in class A, B should not have same name
b) 2 member in class A, C should not have same name
c) both
d) none
Ans. (a)
6.Preproconia.. does not do which one of the following
(a) macro
(b) conditional compliclation
(c) in type checking
(d) including load file
Ans. (c)
7. Piggy backing is a technique for
a) Flow control
b) Sequence
c) Acknowledgement
d) retransmition
Ans. (c)
8. Given the following statement
enum day = { jan = 1 ,feb=4, april, may}
What is the value of may?
(a) 4
(b) 5
(c) 6
(d) 11
(e) None of the above
Ans (e)
9. Find the output for the following C program
i=20,k=0;
for(j=1;j9 && Y++!=10 && Y++>10)
{printf("%d", Y);
else
printf("%d", Y);
}
Ans. 13
12. Find the output for the following C program
f=(x>y)?x:y
a) f points to max of x and y
b) f points to min of x and y
c)error
Ans. (a)
13. What is the sizeof(long int)
(a) 4 bytes
(b) 2 bytes
(c) compiler dependent
(d) 8 bytes
Ans: (a) or (c)
14.1. a=2, b=3, c=6
Find the value of c/(a+b)-(a+b)/c
Ans : 0.3 or 3/10
15.. What does the hexanumber E78 in radix 7.
(a) 12455
(b) 14153
(c) 14256
(d) 13541
(e) 131112
Ans. (d)
16.. 10 : 4 seconds :: ? : 6 minutes
Ans. 900
17.. From the following statements determing the order of ranking
? M has double the amount as D
? Y has 3 rupess more than half the amount of D
Ans. Data insuffiecient
Questions 18 - 22 are to be answered on the following data
? A causes B or C, but not both
? F occurs only if B occurs
? D occurs if B or C occurs
? E occurs only if C occurs
? J occurs only if E or F occurs
? D causes G,H or both
? H occurs if E occurs
? G occurs if F occurs
18. If A occurs which of the following must occurs
I. F and G
II. E and H
III. D
(a) I only
(b) II only
(c) III only
(d) I,II, & III
(e) I & II (or) II & III but not both
Ans. (e)
19. If B occurs which must occur
(a) D
(b) D and G
(c) G and H
(d) F and G
(e) J
Ans. (a)
20. If J occurs which must have occured
(a) E
(b) either B or C
(c) both E & F
(d) B
(e) both B & C
Ans. (b)
21. Which may occurs as a result of cause not mentioned
I. D
II. A
III. F
(a) I only
(b) II only
(c) I & II
(d) II & III
(e) I,II & III
Ans. (c)
22. E occurs which one cannot occurs
(a) A
(b) F
(c) D
(d) C
(e) J
Ans. (b)
[ Draw table and see ]
23.A man fixed an appointment to meet the manager, Manager asked him to come two days after the day before
the day after tomorrow. Today is Friday. When will the manager expect him? (repeated from previous papers)
Ans: Monday
[Don't confuse it with Tuesday.the correct answer is Monday]
24.A man said he spent 1/6 of his as a child, 1/12 as salesman in a liquor shop, 1/7 and 5 years as a politician
and a good husband respectively. At that time Jim was born. Jim was elected as Alderman four years back.when he
was half of his age. What is his age? (repeated from previous papers)
Ans: 84 years
[Assume that he lived x years.
X/6 + x/12 + x/7 + 5 + 4 + x/2 = x. Solving x= 84, Same as Question in Shakundala Devi book]
25.Jack,Doug and Ann, 3 children had a running race while returning from school.Mom asked who won the race.
Then Jack replied" I wont tell u.I wil give u a clue,When Ann takes 28 steps Doug takes 24 steps, meantime
I take 21 steps. Jack explained that his 6 steps equals Droug's 7 steps and Ann's 8 steps. Who won the race? (repeated from previous papers)
Ans: Doug
[ Ann steps = 8,16,24,28 --- finished by 3 & half full steps
Doug steps=7,14,21,24 --- finished before 3 & half full steps
Jack steps= 6,12,18,21 --- finished by 3 & half full steps
So Doug won the race ]
26. Every day a cyclist meets a car at the station.The road is straight and both are travelling in the same direction.
The cyclist travels with a speed of 12 mph.One day the cyclist comes late by 20 min. and meets the car 5miles before
the Station. What is the speed of the car?
Ans: 60 mph
[Very similar to Shakuntala Devi puzzles to puzzle you problem no: 38 ]
27.A lady goes for shopping. She bought some shoestrings. 4 times the number of shoestrings, she bought pins and 8 times,
handkerchiefs. She paid each item with their count as each piece's cost. She totally spent Rs. 3.24.How many handkerchiefs
did she buy? (repeated from previous papers)
28. Complete the series :
a) 3,6,13,26,33,66,____(repeated from previous papers)
b) 364,361,19,16,4,1,___( " " " )
Ans : a) 63
b) 1
29. Lucia is a wonderful grandmother. Her age is between 50 and 70.Each of her sons have
as many sons as they have brothers. Their combined number gives Lucia?s age. What is the age?
Ans: 64
30.There are two towers A and B. Their heights are 200ft and 150ft respectively and the
foot of the towers are 250ft apart. Two birds on top of each tower fly down with the same
speed and meet at the same instant on the ground to pick a grain. What is the distance
between the foot of tower A and the grain?
Ans:90ft
31. Grass in lawn grows equally thick and in a uniform rate.
It takes 40 days for 40 cows and 60 days for 30 cows to eat the whole of the grass.
How many days does it take for 20 cows to do the same?
Ans: 120
32. Four tourists A,B,C,D and four languages English, German, French and Italian.
They are not able to converse among themselves in one language.
Though A does not know English he can act as an interpreter between B and C.
No one spoke both French and German. A knows German and was able to converse with D
who doesn?t know a word in German. Only one language was spoken by more than two persons.
Each spoke two languages. Find who spoke what.
Ans : A- German,Italian
B- French,Italian
c- German,English
D- Italian,English
33. There is a five digit number. It has two prime digits (1 is not a prime number).
Third digit is the highest. Second digit is the lowest. First digit is one less
than the third digit. The fifth digit is half of the fourth. The sum of 4th and 5th is
less than the first. Find the number.
Ans ? 71842
34. Four persons A, B, C and D are playing cards. Each person has one card, laid down
on the table below him, which has two different colours on either side.
No card has the same color on both sides. The colours visible on the table are Red,
Green, Red and Blue respectively. They see the color on the reverse side and give the
following comment.
A: Yellow or Green
B: Neither Blue nor Green
C: Blue or Yellow
D: Blue or Yellow
Given that out of the 4 people 2 always lie find out the colours on the cards each person.
Ans: A- Yellow
B- Yellow
C- Green
D- Red
35. A 1 k.m. long wire is held by n poles. If one pole is removed, the length of the gap
becomes 12/3m. What is the number of poles initially?
Ans:6km
36. Find the digits X,Y,Z
X X X X
Y Y Y Y +
Z Z Z Z
--------------
Y X X X Z
----------------
Ans: X Y Z
9 1 8
37. A man starts walking at 3 pm . ha walks at a speed of 4 km/hr on level ground and at a speed of
3 km/hr on uphill , 6 km/hr downhill and then 4 km/hr on level ground to reach home at 9 pm.
What is the distance covered on one way?
Ans: 12 km
38. A grandma has many sons; each son has as many sons as his brothers. What is her age if it?s the product
of the no: of her sons and grandsons plus no: of her sons?(age b/w 70 and 100).
Ans: 81
39. An electric wire runs for 1 km b/w some no: of poles. If one pole is removed the distance b/w each pole
increases by 1 2/6 (mixed fraction). How many poles were there initially?
40. There is a church tower 150 feet tall and another catholic tower at a distance of 350 feet from it which
is 200 feet tall. There is one each bird sitting on top of both the towers. They fly at a constant speed
and time to reach a grain in b/w the towers at the same time. At what distance from the church is the grain?
Ans: 90
41. A person wants to meet a lawyer and as that lawyer is busy he asks him to come three days after the before day
of the day after tomorrow? on which day the lawyer asks the person to come?
Ans: thursday
42. A person is 80 years old in 490 and only 70 years old in 500 in which year is he born?
Ans: 470
43.A person says that their speed while going to a city was 10mph however while returning as there is no much
traffic they came with a speed of 15mph. what is their average speed?
Ans: 12mph
45. There is a peculiar island where a man always tells truth and a women never says two 2 consecutive truth
or false statements that is if she says truth statement then she says false statement next and vice versa.
A boy and girl also goes in the same way. one day i asked a child " what r u a boy or a girl" however the
child replied in their language that i dint understand but the parents knew my language and one parent replied
that " kibi is a boy" the other one said that "no kibi is a girl, kibi lied".
a: is kibi a boy or a girl
b: who ansered first mother or father?
Ans: kibi is a girl and mother answered first.
46. The boy goes to school reaches railway station at his 1/3 of his journey& mill at 1/4 of his journey the time
taken him to walk between railway station & mill is 5 mins. Also he reaches railway station at 7.35amwhen he
started from house& when he reaches school?
Ans: 7:15to8.15
47. if a person is sitting in a exam having 30 questions (objective type)
the examiner use the formula to calculate the score is S=30+4c-w here c is number
of correct answer and w is number of wrong answer , the examiner find the score
is more than 80, tell how may questions are correct ? if the score is little less
but still more than 80 then u wont be able to answer.
Ans :- 16
48. if a person having 1000 rs and he want to distribute this to his five children
in the manner that ecah son having 20 rs more than the younger one , what will
be the share of youngest child
ans- 160
49.raju having some coins want to distribute to his 5 son , 5 daughter and driver
in a manner that , he gave fist coin to driver and 1/5 of remaining to first
son he again gave one to driver and 1/5 to 2nd son and so on....
at last he equally distributed all the coins to 5 daughters.
how many coins raju initially have???
Ans:-881
50. if ravi binded his book and the binder cut the pages of the book , ravi
decided to mark the pages by himself own , what he found that number of three
appears 61 times find of number of pages answer
ans - 300
51. a painter went in a exhibition to purchases some pictures where T,U,V,W,X,Y,Z
pictures were remaining , he want to buy only five in the condition on that
if T is there then X should not be there,
if U is there than y should be there
if if v is there then X should be there
which is the combination the painter can have
(a) T,U,V,W,Y
(b)T,Z,U,W,X
(c)T,X,U,V,W
(d)T,U,Y,W,Z
ans (d)
52.There are 100 men in town. Out of which 85% were married, 70% have a phone, 75% own a car, 80% own
a house. What is the maximum number of people who are married, own a phone, own a car and own a house ? ( 3 marks)
Sol: 15%
53. There are 10 Red, 10 Blue, 10 Green, 10 Yellow, 10 White balls in a bag. If you are blindfolded
and asked to pick up the balls from the bag, what is the minimum number of balls required to get a
pair of atleast one colour ? ( 2 Marks)
Sol :6 balls.
54. Triplet who usually wear same kind and size of shoes, namely, Annie, Danny, Fanny. Once one of them
broke a glass in kitchen and their shoe prints were there on floor of kitchen. When their mother asked
who broke Annie said, ?I didn?t do it?; Fanny said ?Danny did it?; Danny said ?Fanny is lieing?;
here two of them are lieing, one is speaking truth. Can you find out who broke it ? (3 Marks)
Sol : Annie
55. 4 players were playing a card game. Cards had different colours on both sides. Neither of cards had
same colour on both sides. Colours were 2 Red, 2 Blue, 2 Green, 2 Yellow. Cards were lying in front of
each player. Now, each player knew the colour on other side of his card. They are required to tell their colour.
Statement given by each of them was :
Annie : Blue or Green
Bobby : Neither Blue nor Green
Cindy : Blue or Yellow
Danny : Blue or Yellow
colours of cards that are visible to all were Red, Blue, Green, Blue in order of their names.
Exactly two of them are telling truth and exactly two of them are lieing. Can you tell the colour
on other face of card for each player ? (6 Marks)
Sol : Annie : Yellow (Lieing)
Bobby : Yellow (Telling truth)
Cindy : Blue (Telling truth)
Danny : Green (Lieing)
Top
56. In a game i won 12 games, each game if i loose i will give u one chocolate, You have 8 chocolates how
many games played.
Ans : 32
57. 75 persons Major in physics, 83 major in chemistry, 10 not at major in these subjects
u want to find number of students majoring in both subjects
Ans 68.
58. if A wins in a race against B by 10 mts in a 100 Meter race. If B is behind of A by 10 mts.
Then they start running race, who will won?
Ans A
59. A+B+C+D=D+E+F+G=G+H+I=17
given A=4.Find value of G and H?
Ans : G = 5 E=1
60. One guy has Rs. 100/- in hand. He has to buy 100 balls. One football costs Rs. 15/, One Cricket ball
costs Re. 1/- and one table tennis ball costs Rs. 0.25 He spend the whole Rs. 100/- to buy the balls.
How many of each balls he bought?
Ans :F=3,T=56,C=41
61. The distance between Station Atena and Station Barcena is 90 miles. A train starts from Atena towards
Barcena. A bird starts at the same time from Barcena straight towards the moving train. On reaching the
train, it instantaneously turns back and returns to Barcena. The bird makes these journeys from Barcena to
the train and back to Barcena continuously till the train reaches Barcena. The bird finally returns to Barcena and rests. Calculate the total distance in miles the bird travels in the following two cases:
(a) The bird flies at 90 miles per hour and the speed of the train is 60 miles per hour.
(b) the bird flies at 60 miles per hour and the speed of the train is 90 miles per hour
Ans: time of train=1hr.so dist of bird=60*1=60miles
62. A tennis championship is played on a knock-out basis, i.e., a player is out of the tournament when
he loses a match.
(a) How many players participate in the tournament if 15 matches are totally played?
(b) How many matches are played in the tournament if 50 players totally participate?
Ans: (a)16
(b)49
63.When I add 4 times my age 4 years from now to 5 times my age 5 years from now, I get 10 times my
current age. How old will I be 3 years from now?
Ans:Age=41 years.
64.A rich merchant had collected many gold coins. He did not want anybody to know about them.
One day, his wife asked, "How many gold coins do we have?" After pausing a moment, he replied,
"Well! If I divide the coins into two unequal numbers, then 37 times the difference between the
two numbers equals the difference between the squares of the two numbers." The wife looked puzzled.
Can you help the merchant's wife by finding out how many gold R
Ans:37
66. A set of football matches is to be organized in a "round-robin" fashion, i.e., every participating
team plays a match against every other team once and only once. If 21 matches are totally played,
how many teams participated?
Ans :7
66. Glenn and Jason each have a collection of cricket balls. Glenn said that if Jason would give him
2 of his balls they would have an equal number; but, if Glenn would give Jason 2 of his balls,
Jason would have 2 times as many balls as Glenn. How many balls does Jason have?
Ans: 14
67. Suppose 8 monkeys take 8 minutes to eat 8 bananas.
a) How many minutes would it take 3 monkeys to eat 3 bananas?
(b) How many monkeys would it take to eat 48 bananas in 48 minutes
Ans: a)48
B)6
68. It was vacation time, and so I decided to visit my cousin's home. What a grand time we had!
In the mornings, we both would go for a jog. The evenings were spent on the tennis court. Tiring
as these activities were, we could manage only one per day, i.e., either we went for a jog or played
tennis each day. There were days when we felt lazy and stayed home all day long. Now, there were 12
mornings when we did nothing, 18 evenings when we stayed at home, and a total of 14 days when we jogged
or played tennis. For how many days did I stay at my cousin's place?
Ans : 22 days
69 A 31" x 31" square metal plate needs to be fixed by a carpenter on to a wooden board. The carpenter
uses nails all along the edges of the square such that there are 32 nails on each side of the square.
Each nail is at the same distance from the neighboring nails. How many nails does the carpenter use?
Ans :124
70. Given that A,B,C,D,E each represent one of the digits between 1 and 9 and that the following multiplication holds:
A B C D E
X 4
--------------
E D C B A
-------------- what digit does E represent ?
a) 4
b) 6
c) 8
d) 7
Ans: c
71. (16)HCL prototyping machine can make 10 copies every 4 seconds. At this rate, How many copies can the machine make in 6 min.?
a) 900
b) 600
c) 360
d) 240
e) 150
Ans: a
72.(18)10^2(10^8+10^8) =-------------- 10^4
a) 2(10)^4
b) 2(10)^6
c) 10^8
d) 2(10)^8
e) 10^10
Ans: b
73.Worker W produces n units in 5 hours. Workers V and W, workers independently but at the same time, produce n units in 2 hours.
how long would it take V alone to produce n units?
a) 1 hr 26 min
b) 1 hr 53 min
c) 2 hr 30 min
d) 3 hr 30 min
e) 3 hr 20 min
Ans: d
74.. What is the output of the following problem ?
#define INC(X) X++
main()
{
int X=4;
printf("%d",INC(X++));
}
a)4 b)5 c)6 d)compilation error e) runtime error
Ans : d) compilation error
75. what can be said of the following
struct Node {
char *word;
int count;
struct Node left;
struct Node right;
}
a) Incorrect definition
b) structures cannot refer to other structure
c) Structures can refer to themselves. Hence the statement is OK
d) Structures can refer to maximum of one other structure
Ans :c)
76. What is the output of the following program
main()
{
int a=10;
int b=6;
if(a=3)
b++;
printf("%d %d\n",a,b++);
}
a) 10,6 b)10,7 c) 3,6 d) 3,7 e) none
Ans : a) 10,6
77. What can be said of the following program?
main()
{
enum Months {JAN =1,FEB,MAR,APR};
Months X = JAN;
if(X==1)
{
printf("Jan is the first month");
}
}
a) Does not print anything
b) Prints : Jan is the first month
c) Generates compilation error
d) Results in runtime error
Ans: b) Prints : Jan..
78. What is the output of the following program?
main()
{
char *src = "Hello World";
char dst[100];
strcpy(src,dst);
printf("%s",dst);
}strcpy(char *dst,char *src)
{while(*src) *dst++ = *src++;
}
) "Hello World" b)"Hello" c)"World" d) NULL e) unidentified
Ans: d) NULL
.
79.What is the output of the following program?
main()
{
int l=6;
switch(l)
{ default : l+=2;
case 4: l=4;
case 5: l++;
break;
}
printf("%d",l);
}
a)8 b)6 c)5 d)4 e)none
Ans : a) 8
80.What is the output of the following program?
main()
{
int x=20;
int y=10;
swap(x,y);
printf("%d %d",y,x+2);
}
swap(int x,int y)
{
int temp;
temp =x;
x=y;
y=temp;
}
a)10,20 b) 20,12 c) 22,10 d)10,22 e)none
Ans:b)20,12
81. Which of the following about the following two declaration is true
i ) int *F()
ii) int (*F)()
Choice :
a) Both are identical
b) The first is a correct declaration and the second is wrong
c) The first declaraion is a function returning a pointer to an integer and the second is a
pointer to function returning int
d) Both are different ways of declarin pointer to a function
Ans : c)
82. What are the values printed by the following program?
#define dprint(expr) printf(#expr "=%d\n",expr)
main()
{
int x=7;
int y=3;
dprintf(x/y);
}
Choice:
a) #2 = 2 b) expr=2 c) x/y=2 d) none
Ans: c)x/y=2
83. Which of the following is true of the following program
main()
{
char *c;
int *p;
c =(char *)malloc(100);
ip=(int *)c;
free(ip);
}
Ans: The code functions properly releasing all the memory allocated
84. output of the following.
main()
{
int i;
char *p;
i=0X89;
p=(char *)i;
p++;
printf("%x\n",p);
}
Ans:0X8A
85. which of the following is not a ANSI C language keyword? Ans:Function.
86. When an array is passed as parameter to a function, which of the following statement is correct choice:
a) The function can change values in the original array
b) In C parameters are passed by value. The funciton cannot change the original value in
the array
c) It results in compilation error when the function tries toaccess the elements in the array
d) Results in a run time error when the funtion tries to access the elements in the array
Ans: a)
87. The type of the controlling expression of a switch statement cannot be of the type
a) int b) char c) short d)float e) none
Ans : d)float
88. What is the value of the expression (3^6) + (a^a)?
a) 3 b) 5 c) 6 d) a+18 e) None
Ans : 5
89. What is the value assigned to the variable X if b is 7 ?
X = b>8 ? b <<3 : b>4 ? b>>1:b;
a) 7 b) 28 c) 3 d) 14 e) None
Ans: c)
Questions 90-94
Six knights - P,Q,R,S,T and U - assemble for a long journey in Two ravelling parties. For security, each travellingparty Consists of at least two knights.
The two parties travel by separate routes, northern and southern. After one month, the routes of the northern and southern groups converge for a brief
time and at that point the knights can, if they wish, rearrange their travelling parties before continuing, again in two parties along separate northern and
southern routes. Throughout the entire trip, the composition of traveling parties must be in accord with the following conditions P and R are deadly enemies
and, although they may meet briefly,can never travel together. p must trave in the same party with sQ cann't travel by the southern route U cann't change.
90. If one of the two parties of knights consists of P and U and two other knights and travels by the southern route,the other members of this party besides P and U must be
a) Q and S
b) Q and T
c) R and S
d) R and T
e) S and T
Ans: e
91.If each of the two parties of knights consists of exactly three members, which of the following is not a possible travelling party and route?
a) P,S,U by the northern route
b) P,S,T by the northern route
c) P,S,T by the southern route
d) P,S,U by the southern route
e) Q,R,T by the southern route
Ans: b
92.If one of the two parties of knights consists of U and two other knights and travels by the northern route, the other memnbers of this party besides
U must be
a) P and S
b) P and T
c) Q and R
d) Q and T
e) R and T
Ans: c
93.If each of the two parties of knights consists of exactly three members of different parties, and R travels by the northern route,then T must travel by the
a) southern route with P and S
b) southern route with Q and R
c) southern route with R and U
d) northern route with Q and R
e) northern route with R and U
Ans: a
94.if, when the two parties of knights encounter one another after a month, exactly one knight changes from one travelling party to the other travelling
party, that knight must be
a) P
b) Q
c) R
d) S
e) T
Ans: e
95. How many of the integers between 25 and 45 are even ?
(A)21 (B)20 (C)11 (D)10 (E)9
Ans:d)10
96. If taxi fares were Rs 1.00 for the first 1/5 mile and Rs 0.20 for each 1/5 miles thereafter. The taxi fare for a 3-mile ride was
(A)Rs 1.56 (B)Rs 2.40 (C)RS 3.00 (D)Rs 3.80 (E)Rs 4.20
Answer :d)Rs 3.80
97. A computer routine was developed to generate two numbers (x,y) the first being a random number between 0 and 100 inclusive, and the
second being less than or equal to the square root of the first. Each of the followin pair satisfies the routine EXCEPT
(A) (99.10) (B) (85.9) (C) (50.7) (D) (1.1) (E) (1.0)
Answer : A) (99.10)
98.A warehouse had a square floor with area 10,000 sq.meters. A rectangular addition was built along one entire side of the warehouse that increased
the floor by one-half as much as the original floor. How many meters did the addition extend beyond the original buildings ?
(A)10 (B)20 (C)50 (D)200 (E)500
Ans: c)50
99.A digital wristwatch was set accurately at 8.30 a.m and then lost 2 seconds every 5 minutes. What time was indicated on the watch at 6.30 p.m
of the same day if the watch operated continuously that time ?
(A)5:56 B)5:58 (C)6.00 (D)6.23 (E)6.26
Ans :E) 6.26
100.A 5 litre jug contains 4 litres of a salt water solution that is 15 percent salt. If 1.5 litres of the solution spills out of the jug, and the jug is then filled
to capacity with water, approximately what percent of the resulting solution in the jug is salt?
(A)7.5% (B)9.5% (C) 10.5% (D)12% (E)15%
101.)A merchant sells an item at a 20 percent discount. but still makes a gross profit of 20 percent of the cost.What percent of cost would be gross profit
on the item have been if it had been sold without the discount?
(A)20% (B)40% (C)50% (D)60% (E)66.6%
Ansr :c) 50%
102.A millionaire bought a job lot of hats 1/4 of which were brown. The millionaire sold 2/3 of the hats including 4/5 of the brown hats. What fraction of the
unsold hats were brown.
(A)1/60 (B)1/15 (C)3/20 (D)3/5 (E)3/4
Ans :c)3/20
103.How many integers n greater than and less than 100 are there such that,if the digits of n are reversed, the resulting integer is n+9 ?
(A)5 (B)6 (C)7 (D)8 (E)9
Ans :D)8
104.An investor purchased a shares of stock at a certain price.If the stock increased in price Rs 0.25 per share and the total increase for the x shares
was Rs 12.50, how many shares of stock had been purchased ?
(A)25 (B)50 (C)75 (D)100 (E)125
Ans :B)50
105.At a special sale, 5 tickets can be purchased for the price of 3 tickets. If 5 tickets are purchased at the sale, the amount saved will be
what percent of the original price of the 5 tickets?
(A) 20% (B) 33.3% (C) 40% (D) 60% (E) 66.6%
Ans :c)40%
106.Working independently, Tina can do a certain job in 12 hours. Working independently, Ann can do the same job in 9 hours. If Tina Works
independently at the job for 8 hours and then Ann works independently, how many hours will it take Ann to complete the remainder of the jobs?
(A) 2/3 (B) 3/4 (C) 1 (D) 2 (E) 3
Ans :E)3
107.A decorator bought a bolt of d m number of red chips in any one stack ?
(A) 7 (B) 6 (C) 5 (D) 4 (E) 3
Ans :C) 5
Labels: hcl
Posted by onlinemoneymaking at 11:59 AM 0 comments
Thursday, September 11, 2008
PATNI PAPERS
Time 50min
--1/3 Negative marking
--Total question 20
(Questions are not in order)
Q.1. There are 254 women. A sales man asks each about which product they
use out of three
(A, B, C,) 22 use all three, 39 use B and C....... Each uses atleast one
product.
Find the number of women that use product C
(ans 52)
Q.2. A man leaves office daily at 7pm. A driver with car comes from his
home to pick him
from office and bring home. One day he gets free at 5:30 and instead of
waiting for
driver he starts walking towards home. In the way he meets the car and
returns home on car. He reaches home 20 minutes earlier than usual.
In how much time does the man reach home usually??
(ans 1hr 20min)
Q.3 The following truth table is given. What is y equal to??
-------------------------
A B C Y
-------------------------
0 0 0 1
0 0 1 1
0 1 0 0
0 1 1 0
1 0 0 0
1 0 0 0
1 1 0 1
1 1 1 1
ans:- (A')(B')(AB)
Q.4 A question on venn diagram of intersection of three circles. Some
area is shaded. Find the shaded area?
ans d) a(b+c)
Q.5 Question about 22 people dancing. 7 men dance with one girl
etc...... You have to find the number of girls in it.
ans 8
Q.6 One question about A working thrice as B and if A takes 60 days less
than B to do a work.
Find the number of days it would take to complete the work if both work
together?
ans 22½days
Q.7 One quetion on 5*5 matrix. How much time does computer take to
calculate (something....)
ans:- d)more than a year
Q.8 How many 1's are there in the binary form of:
8*1024 + 3*64 + 32
ans c)4
Q.9 One question on 64 playing cards. You put the top card at the bottom
and then discard
next. Repeat the process till you are left with one card. What is the number
of this card
ans:- 1
Q.10 In a digital circuit which was to implement (A.B) + (A)XOR(B). The
designer implements
(A.B).(A)XOR(B). What is the probability of error in it??
ans 0.5
Q.11 A boy has 2 Rs. He wins or looses 1Re at a time. If he wins he gets
1Re and if he looses
the game he looses 1Re. He can loose only 5 times. He is out of the game if
he earns 5Rs.
Find the number of ways in which this is possible??
a)12 b)14 c)16 d)18
ans :- 16
Q.12 If there are 1024*1280 pixels on a screen and each pixel can have
around 16million colors.
Find the memory required for this?
a)512KB b)2MB c)4MB d)8MB
ans 4MB
Q.13,14 Two questions on comprehension( Something about Serial and parallel
imaging)
ans Q.13:- c
ans Q.14:- d
Q.15. On a particular day A and B decide that they would either speak
truth or will lie. C asks A whether he is speaking truth or lie? He answers
and B listens to what he said. C then asks B what A has said. B said "A
says that he is a liar".
What is B speaking?
a)Truth
b)Lie
c)Truth when A lies
d)Cannot be determined
ans b
Three programs on C.(All three are about arrays and are quite easy)
(not in order)
Q.16 Answer of one program is:- A intersection B
Q.17 Answer of another program is:- Run time error
Q.18 Answer of program is:- c)3, 2, 1, 10,......
Labels: PATNI
Posted by onlinemoneymaking at 4:26 AM 0 comments
Satyam Placement papers
Aptitude Paper:
Total 15 questions(1 mark each) r given 30 mins with 1/4 -ve marking. All r objective.
If SCOTLAND = 12345678, SAT=453, DON=128, and SALT=3782 then C = ?SAT,DON,SALT are not the exact words that were given but similar .LOGIC : C is not ther in any of the words other than 'scotland' and also 6. so C = 6.
3 persons travelling in a train.Mr.SMITH,Mr.JONES n Mr.ROBINSON they r ENGINEER, FIREMAN n
BRAKESMAN, but not respectively. Also travelling r 3 ladies with same names Mrs.SMITH, Mrs.JONES
n Mrs.ROBINSON.
1. Mr.ROBINSON lives in DETROIT.
2. BREAKSMAN lives in midway of CHICAGO n DETROIT.
3. Mr.SMITH beats fireman in a game of billiards.
4. Mr. JONES earns $20000 per annum.
5. BREAKSMAN's nearest neighbour earns exactly 3 times that of BREAKSMAN.Like this conditions r given and question asked is who is the ENGINEER? Question is just tricky but not so tough to analyze
A question on number series. Using the relation of the first series find out E?
57 58 118 357 1432
205 A B C D E
A large question almost a page. Very simple to answer. Some 20 facts r given n a question below which is not relevant to facts. So answer is NONE. Just go thru the facts in rapid fire n answer. Answer this question only at the last if time permits or else u will be stuck with it.
Inference question. Children r frequently used in drug business.
I. Children r smarter than grown ups.
II. Children can be easily convinced n r not suspected.
III. when they become young they can be easily trained.
Like this 3 stmts r given and asked that which of the stmts r implicit.
A square , rectangle, circle n triangle r drawn in a overlapped manner n some number r given in the intersection parts( like venn digrams).
square - cultivated area
rectangle - desert area
circle - electricity present
triangle - medical facilities
how much area is cultivated with electricity present but have no medical facilities.
1. A = B+C
2. D = A+F
3. E = B+D
4. G = C+E
5. B = D+A
6. C = G+F
like this 6 stmts r given(not exactly the same) n asked which of the stmts can be executed parallely.
A C prog to shift an array towards left is given with some blanks in the place of while conditions.
Have to fill the blanks.
A problem which can be solved easily using venn diagrams.
A sequence of 4 diagrams is given n have to find out the next diagram in the sequence.
they test ur logic thats
Labels: Satyam
Posted by onlinemoneymaking at 4:20 AM 0 comments
BOSCH Placement Papers and Pattern
CAMPUS RECRUITEMENT PROGRAMME
1. Critical stress at which material will start to
flow
(a)yield
(b)ultimate tensile stress
(c) proof stress
(d) none o the above
2. maximum degree of freedom in space
Ans. 6
3. bearing which will take axial and radial loads.
(a) thrust bearing
(b) deep groove
(c) taper roller
(d) ---
4. volume of water per cubic metre of air.
(a)specific volume
(b) specific gravity
(c) vapour pressure
(d) none of above
5. fluid is flowing through a frustum of cone. what is
the nature of graph of velocity
Vs. c/s area. {flow = velocity X c/s area}
(a) parabola
(b) hyperbola
(c) y=mx+c
(d) x=x.
6. Fluid in a pipe having no change in profile with
change in length of pipe ...explain type of flow.
a)Laminar
b)Turbulent
c)fully developed profile
d)steady flow
7. Which are correct
I) Navier Stokes Eq. is .... of momentum
conservation eq.
II)bernoulis eq. is for viscous flow
III) REYNOLD no. >3000 always for turbulent flow.
a)I and II correct
b)I and II not correct
c)II and III correct
d)II and III not correct
8. Which can't be removed during alloying from Fe
alloys
a) co
b) N
c) Si
d) As
9.There are two ropes burning non uniformly (rate) and
clock half an hour each. which can't be clocked ?
a) 1 Hr.
b) 45 min
c)15 min
d)none
10. Lim n->0 (1+ 1/n)^n =
a) 1
b)0
c)e
d)infinity
11.time dependent increase in length at steady temp.
is called
a) superplasticity
b) creep
c) fatigue
d) none
12. Vicosity change with increasing temp.
a) decreases
b) increases
c) same
d) first decreases and then increases.
13. Direction of friction in bicycle tyres
a) along motion
b) opp. motion
c) Front opp. motion and vice versa
d) rear opp. motion and vice versa
14. Sp. gravity of a fluid
a) density of fluid at 0`c / density of water at o`c.
b) density of fluid at 0`c / density of water at T`c.
c) density of fluid at T`c / density of water at o`c.
d) density of fluid at T`c / density of water at T`c.
15. lateral strain / longitudinal strain
a) Poission's Ratio
b) Bulk Modulus
c) Modulus Of Elasticity
d) None
16. 10 coins & 1 defected coin and 2 weighs Find min
weighs req. to detect faulty coin
a) 2
b)3
c)4
d)5
17. 9 members in meeting scheluled at 10:00 A.M. , all
reaches at 9:48 A.M. . one member req. 2 min to intro
with other
find meeting delay with scheduled time of 10:00 A.M..
a) 1 Hr.
b) 6 min
c) ...
d)At scheduled time
18. A completes job in 10 hr. and B completes in 15
hr.. Find when both together works
a) 6 hr.
b) 8 hr
c) 10 hr
d) none
19. A ball dropped from H height and moves 80% of
height each time.Total dist. covered
a) 4H
b) 5H
c) 7H
d) 9H
20. A cantilever beam loaded at free end find
reinforcement place
a) AT neutral axis
b) above neutral axis
c) below neutral axis
d) above and below neutral axis
21. punching a sheet of D dia and T thickness and S
ultimate tensile stress
a) 3.14 DTS
b) 3.14TS X D^2
c) 6.28 DTS
d)6.28 TS x D^2
22. & 23. two easy ques. of string mass equilibrium
system...
24. Microstructure after quenching
a) Mertensite
b) pearlite
c) ........
d)..........
Posted by onlinemoneymaking at 2:53 AM 0 comments
Friday, May 2, 2008
Yahoo India :: Placement Paper
Few Questions: (45 min)
1. In a village in each family they give birth to children till they
get a boy. IF girl child they try again. What is the ratio of boys to
girls.
2. 2n+1 numbers in a list except for 1 num all had duplicates, how to
find duplicate in O(n)
3. In 1000 wine bottles stack 10 are poisoned given 10 rats what is
the minimum number of tries to find the poisoned one. Rat dies once it
licks the poisoned wine.
4. Write 1,3,6,4 using +,-,*,/ to get 24 (no repeat of numbers)
5. Which is the DS used in dictionary mode in mobile (t9)
6. Which is DS used for chess program...to predict move each and every
time..
7. There are $1070 dollars how to split them into bags such that asked
for any denomination from $1 to $1070 , u must b able to give without
opening bag...
Another paper:
1. First fit issues...
2. Algorithm to partition set of numbers into two s.t. diff bw their
sum is min and they hav equal num of elements
3. Prog: given Numerator & Denominator.... print 0.3333333333 as .(3)
0.123123 as .(123
Labels: Yahoo
Posted by onlinemoneymaking at 4:18 AM 0 comments