Question
Atul takes ‘h’ hours to travel (1/5)ᵗʰ of the
total distance at a speed of 12 km/h. If he had travelled the entire distance at an average speed of 15 km/h, the journey would have taken him (h + 6) hours. Determine the value of ‘h’.Solution
ATQ,
Let total distance be ‘d’ km
So, 12 = (d/5h) -------- (I)
And, 15 = {d/(h + 6)}-------- (II)
By equating equation (I) and equation (II), we get,
12 × 5h = 15 × (h + 6)
Or, 12h = 3(h + 6)
Or, 9h = 18
Or, h = 2
A process is currently in the "Running" state. If its allocated time slice expires, to which state will it typically transition?
For matrix dimensions p = {10, 20, 30, 40}, representing matrices A (10x20), B (20x30), C (30x40). What is the minimum number of scalar multiplications ...
Which of the following is a key characteristic of a Public Cloud?
What does Polymorphism mean in the context of OOP?
Which I/O scheduling algorithm is designed to reduce the average response time for disk operations by prioritizing requests based on proximity to the cu...
Which of the following is the last part of ICMP message format?
Complete the recurrence relation for dp[i][j] in the Longest Common Subsequence (LCS) problem when text1[i-1] is *not equal* to text2[j-1].
# dp[...
Which module in Python is used to define Abstract Base Classes (ABCs)?
Which of the following is NOT one of the four necessary conditions for a deadlock to occur?
A C function insert(Node* root, int data) for a BST.
#include
typedef struct Node {
int data;
struct ...