Question
Select the option in which the numbers share the same
relationship in set as that shared by the numbers in the given set. (Note: Operations should be performed on the whole numbers, without breaking down the numbers into its constituent digits. E.g., Operation on 13 such as adding/subtracting/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.) (44, 56, 300) (23, 36, 177)Solution
The logic followed here is: Third number = (First number + Second number) X 3 (44, 56, 300) → (44 + 56) X 3 = 100 X 3 = 300 (23, 36, 177) → (23 + 36) X 3 = 59 X 3 = 177 (45, 53, 294) → (45 + 53) X 3 = 98 X 3 = 294
Consider the following stack operations. What will be the content of the stack after executing all the operations?
Stackstack = new Stack... Tarjan’s algorithm is used to find:
Which data structure is most suitable for implementing a priority queue with logarithmic time complexity for insertion and deletion?
- Machine Learning
Which Machine Learning model is best suited for predicting stock market trends based on sequential time-series data?
In a graph, what is the maximum number of edges in a simple undirected graph with 'n' vertices?
If an algorithm takes $5n²  + 3n + 10$ steps for an input of size n, its Big O notation would be:
Which of the following statements about normalization in relational databases is correct?
What is the primary purpose of a B+ Tree in a database management system?
What is the primary purpose of an abstract class?
Which of the following represents the Preorder Traversal of the binary tree given below?
       A       / \      B   C   ...