A helicopter drops two trains, each on a parachute, onto a
straight infinite railway line. There is an undefined
distance between the two trains. Each faces the same
direction, and upon landing, the parachute attached to each
train falls to the ground next to the train and detaches.
Each train has a microchip that controls its motion. The
chips are identical. There is no way for the trains to know
where they are. You need to write the code in the chip to
make the trains bump into each other. Each line of code
takes a single clock cycle to execute.

You can use the following commands (and only these);

MF - moves the train forward

MB - moves the train backward

IF (P) - conditional that's satisfied if the train is next
to a parachute. There is no "then" to this IF statement.

GOTO

Answers were Sorted based on User's Feedback



A helicopter drops two trains, each on a parachute, onto a straight infinite railway line. There is..

Answer / rshadow

After I was asked this question (two weeks after my comment
#3) in a job interview and was guided to the solution - not
before I tried to give the oscillating solution from comment
#2 above, which can't be coded within the limitation of the
4 available commands - I give here the correct and final answer:

start:
MF
MF
MB
if (p) GOTO found
GOTO start
found:
MF
GOTO found

Explanation:
Both trains start moving in the same direction at the same
rate. After one train meets the parachute of the other
train, it starts going at a faster rate and thus will catch
up with the other train and bump into it.

It's a simple solution, but not that easy to come up with.
Seems to be a popular question in job interviews for
programmers in high-tech companies in Israel (me and a
friend were each asked this riddle at a job interview, in
two different companies).

Is This Answer Correct ?    26 Yes 2 No

A helicopter drops two trains, each on a parachute, onto a straight infinite railway line. There is..

Answer / vinayak

MF
IF (P)
GOTO B
GOTO A
-----
B: MF
GOTO B
Explanation: The first line simply gets them off the
parachutes. You
need to get the trains off their parachutes so the back
train can find
the front train's parachute, creating a special condition
that will
allow
it to break out of the code they both have to follow
initially. They
both loop through A: until the back train finds the front
train's
parachute, at which point it goes to B: and gets stuck in
that loop.
The front
train still hasn't found a parachute, so it keeps in the A loop.
Because each line of code takes a "clock cycle" to execute,
it takes
longer
to execute the A loop than the B loop, therefore the back train
(running
in the B loop) will catch up to the front train.

Is This Answer Correct ?    12 Yes 2 No

A helicopter drops two trains, each on a parachute, onto a straight infinite railway line. There is..

Answer / raghav

In answer #4 , I think there is no need of these 3 lines
MF
MF
MB
Instead we can use only 1 line
MF

Both produces the same result but 1 line command is more efficient i think.

Is This Answer Correct ?    1 Yes 0 No

A helicopter drops two trains, each on a parachute, onto a straight infinite railway line. There is..

Answer / jubalau

had this too. i was allowed to number the lines

1 mf
2 if p go to 4
3 go to 1
4 mf
5 go to 4

you could also add more mf lines between lines 4 and 5 for better results i guess...

Is This Answer Correct ?    1 Yes 0 No

A helicopter drops two trains, each on a parachute, onto a straight infinite railway line. There is..

Answer / rshadow

Rajasekar's answer is almost correct, but:

1. i has to be increased by 1 at each iteration of the while
loop.

2. since the 2 trains are facing the same direction at the
start, using this solution will not work - the 2 trains will
always go at the same direction and will never bump into
each other. To overcome this pitfall we need to use a
statement such as 'if (P) STOP', (or: if (P) GOTO END).

notice that above I assume that the condition if (P) is only
satisfied when the train is next to the OTHER train's
parachute. Otherwise, using a counter we can check if the
train is next to its own parachute or not.

Is This Answer Correct ?    5 Yes 6 No

A helicopter drops two trains, each on a parachute, onto a straight infinite railway line. There is..

Answer / rajasekar b

D answer sanket may be wrong. U gotta program both the chips.
and u cant say "MB(T1)" to train T2 and viceversa, neither
"IF(T1 at P1)". There is no way for the trains to know where
they are.
My answer is:
MF;
i=1;
do
{
for(j=1;j<=(i*2)+1;j++)
MB;
for(j=1;j<=(i*2)+2;j++)
MF;
}While(1);

This causes both the trains to oscillate about their
respective parachutes,moving a unit length longer in forward
and backward direction for each oscillation. sure, they
gotta BUMP into each other.

My assumption:
Usual programming language constructs can be used.
Given Commands are just for controlling the train.

Is This Answer Correct ?    4 Yes 11 No

A helicopter drops two trains, each on a parachute, onto a straight infinite railway line. There is..

Answer / sanket

Assumptions - the track goes North-South
Both trains either face or North or South
Two trains are T1 and T2 and their respective parachutes
are P1 and P2
Algorithm/code-
MF(T1) //Moves T1 in forward direction
MF(T2) //Moves T2 in forward direction
Label:If(T1 at P2) MB(T2)
If(T2 at P1) MB(T1)
GOTO Label

Description - Since both trains are facing same direction
(either N or S) if both start moving forward (say toward N)
at some point of time one train will cross other train's
parachute, at which point we reverse the other train. The
trains are now on a collision course.

Is This Answer Correct ?    4 Yes 17 No

Post New Answer

More General Aptitude Interview Questions

Argentina had football team of 22 player of which captain is from Brazilian team and goalki from European team. For remaining player they have picked 6 from Argentinian and 14 from European. Now for a team of 11 they must have goalki and captain so out of 9 now they plan to select 3 from Argentinian and 6 from European. Find out no. of methods available for it

0 Answers   Cognizant,


what is your approach to working under pressure?

8 Answers  


I am first every thing. I end of all trouble. I Alway come in time. I alway end a dialogue. I alway in u r Dream.

12 Answers  


A dishonest hairdresser uses a mixture having 5 parts after-shave lotion and 3 parts water. After taking out some portion of the mixture, he adds equal amount of water to the remaining portion of mixture such that the amount of after shave lotion and water become equal. Find the part of mixture taken out.

5 Answers  


How many ewes (female sheep) in a flock of 50 sheep are black? 1. There are 10 rams (male sheep) in the flock. 2. Forty percent of the animals are black. statement 1 alone is sufficient, but statement 2 alone is not sufficient to answer the question statement 2 alone is sufficient, but statement 1 alone is not sufficient to answer the question each statement alone is sufficient statements 1 and 2 together are not sufficient, and additional data is needed to answer the question

0 Answers   Wipro,






what type of qalifications / education skill is needed for clarical bank exam of sbi?

5 Answers   L&T, State Bank Of India SBI,


what is the sum of 7 consecutive odd numbers with 27 as the fourth number

0 Answers   TATA,


It cost a college Rs.0.70 a copy to produce a Programme for the homecoming football game. If Rs.15,000/- was received for advertisements in the programme, how many copies at Rs.0.50 a copy must be sold to make a profit of Rs.8000/- ?

5 Answers   IBM, L&T, TCS, Wipro,


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 higherst temp is 100C. then what is the low temperature

0 Answers   Accenture,


A person runs 6 ft in 1/4 sec. how much it will run in 10 sec. ans 240

0 Answers   Accenture,


A is a father of B,but B is not a son of A. Then what is the relationship among them?

25 Answers   Asian Paints, Hero MotoCorp, SAP Labs,


5) Write a program that takes a 3 digit number n and finds out whether the number 2^n + 1 is prime, or if it is not prime find out its factors.

0 Answers  


Categories