Question
Select the set in which the numbers are related in the
same way as are the numbers of the following set. (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 /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) (9, 1, 19) (5, 2, 14)Solution
The correct answer is B
Which of the following is a default connector for Shielded twisted pair?
What is Computer Output Microfilm (COM) primarily used for in data management and archival systems?
What does the term "code optimization" refer to in the context of software development?
The order of convergence of Newton-Raphson method is:
Complete the while loop condition for an iterative binary search implementation.
def binary_search(arr, target):
  low = 0
 �...
What is the time complexity for inserting an element into a binary heap?
Predict the output
list1 = ['physics', 'chemistry', 1997, 2000]
list2 = [1, 2, 3, 4, 5, 6, 7 ]
print "list1[0]: ", list1[0]Â Â Â ...
Given the string S = "aabaaab" for Z-Algorithm, what is the Z-array for this string? (Z is typically 0 or undefined).
A good hash function aims to achieve which of the following characteristics?
What is the primary purpose of Continuous Integration (CI) in software development?Â