Bhagat and Chandu start simultaneously from village X to village Y, with their respective speeds in the ratio 3 : 2. After travelling one-fourth of the total distance, Chandu triples his speed and travels for some more time, following which, he again changes his speed and completes the rest of the journey. Bhagat, however, maintains his initial speed throughout the journey. Also, the time for which Chandu travels at thrice his initial speed is one-third of his total time of travel. On their journey back to X from Y, Bhagat starts 20 min after Chandu. Their respective speeds remain same as their initial speeds from X to Y. What is the distance between the two when Bhagat reaches exact midway if total distance from X to Y is 9 Km? It is known that Chandu reaches 1 hr and 10 min later than Bhagat.
Reveal answer
Fill a bubble to check yourself
Keep practicing — related questions
- Which of the following are legal lines of code? 1. int w = (int)888.8; 2. byte x = (byte)1000L; 3. long y =...
- A man climbs up and a monkey climbs down a rope hanging from a tree with same uniform acceleration separate...
- What will be the output of the program? class Bitwise { public static void main(String [] args) { int x = 1...
- What will be the output of the program? String x = "xyz"; x.toUpperCase(); /* Line 2 */ String y = x.replac...
- switch(x) { default: System.out.println(Hello); } Which two are acceptable types for x? 1. byte 2. long 3. ...
- public class Test2 { public static int x; public static int foo(int y) { return y * 2; } public static void...
- Which three are valid method signatures in an interface? 1. private int getArea(); 2. public float getVol(f...
- What will be the output of the program? public class Switch2 { final static short x = 2; public static int ...