Question
P can run 1km in 5 minutes 10 seconds and Q in 5 minutes
20 seconds. How many meters start can P give Q in a kilometer race so that the they both reach on time?Solution
Time taken by P to run 1 km = 310 seconds Time taken by Q to run 1 km = 320 seconds P can give Q a start of (320 – 310) seconds = 10 seconds In 320 seconds, Q runs 1000m In 10 seconds, Q runs (1000/320) × 10 metres = 125/4 m P can give Q a start of 125/4 metre .
In a machine learning experiment, the company wants to predict future sales based on advertising spend. What is the dependent variable in this scenario?
What does the following list comprehension produce?
result = [x**2 for x in range(5) if x % 2 == 0]
print(result)
Which of the following best explains the role of an independent variable in data analysis?
A data analyst is assessing a dataset with inconsistent categorical entries, such as "USA," "U.S.A," "United States," and "US" for the country field. Wh...
A disk scheduling system receives requests for the following cylinders: 98, 183, 37, 122, 14, 124, 65, 67. If the current position of the disk head is a...
Which of the following techniques is used to evaluate a postfix expression efficiently?
Which of the following best describes the seasonal component in time series data?
In SQL, which of the following best describes the role of a subquery within a SELECT statement?
Which of the following best illustrates the use of trend analysis in marketing?
Consider the following code snippet. What is the output of the program?Â
#include < stdio.h >
int main ( ) {
  int arr[5] = {1...