Question
Select the option in which the numbers are related in
the same way as are the numbers of the following sets. Â (43, 74, 36) (21, 58, 42) Â (NOTE: Operations should be performed on the whole numbers, without breaking down the numbers into its constituent digits. E.g. 13-Operations on 13 such as adding /deleting /multiplying etc. to 13 can be performed. Breaking down 13 into 1 and 3 and then performing mathematical operations on 1 and 3 is not allowed)Solution
The logic followed here is: (2nd number – 1st number) + 5 = 3rd number (43, 74, 36) à (74 – 43) + 5 = 31 + 5 = 36 (21, 58, 42) à (58 – 21) + 5 = 37 + 5 = 42 (71, 92, 28) à (92 – 71) + 5 = 21 + 5 = 26 → Does not follow the pattern (42, 67, 31) à (67 – 42) + 5 = 25 + 5 = 30 → Does not follow the pattern (28, 59, 36) à (59 – 28) + 5 = 31 + 5 = 36 → Follows the pattern (44, 85, 47) à (85 – 44) + 5 = 41 + 5 = 46 → Does not follow the pattern Hence, the correct answer is (C).
Which of the following is a characteristic of a relational database management system (RDBMS) that distinguishes it from other database systems?
Which regex matches any single character?
Which of the following forecasting methods is most suitable for data with a linear trend but no seasonality?
What is the difference between a list and a tuple in Python?
A retailer wants to segment its customers to optimize targeted marketing campaigns. Which of the following approaches would be most effective for custom...
In artificial intelligence, what is the primary advantage of using a convolutional neural network (CNN) over a traditional multi-layer perceptron (MLP) ...
Which of the following factors should primarily determine the sample size in a data analysis project?
Which of the following strategies is most effective in avoiding selection bias when choosing a sample for analysis?
Which of the following methods is used to ensure stationarity in time series data, a critical prerequisite for ARIMA modeling?
What will be the output of the following C code?
#include < stdio.h >
void main ( ) {
  int x = 10, y = 20, *p1 = &x, *p2 = &y;...