Question
A race track is in the shape of a rectangle with length
of 75 metres and area of 3000 m2. A car takes 20 seconds to make one lap around the perimeter of this track. If the car and a person whose speed is 5 m/s, started moving at the same time along the perimeter of the track but in opposite directions, then find the distance between the car and the person, 3 seconds before they cross each other.Solution
Area of the track = length of track x breadth of track = 75 x breadth of track = 3000 So, breadth of track = 3000 ÷ 75 = 40 So, perimeter of the track = (75 + 40) x 2 = 230 metres So, speed of the car = (230/20) = 11.5 m/s Relative speed of the car with respect to the person = 11.5 + 5 = 16.5 m/s So, distance between the car and the person, 3 seconds before they cross each other = 16.5 x 3 = 49.5 metres
In Java, what will be the output of the following code snippet?
public class Test {
public static void main(String[] args) { <...
Which sorting algorithm is considered the most efficient for large datasets with no additional memory constraints?
What is a fundamental characteristic of a singly linked list?
Which cryptographic concept ensures that data integrity is preserved and cannot be altered during transmission?
Which of the following correctly describes the primary difference between Cross-Site Request Forgery (CSRF) and Cross-Site Scripting (XSS)?
...Which of the following is a core characteristic of Big Data?
In the context of asymmetric encryption, which of the following is a key feature of public-private key pairs?
- Computer Architecture
Which architectural feature is crucial for improving the performance of modern multi-core processors?
In a binary tree, what is the maximum number of children a node can have?
What is the base case in a recursive function?