Question
If   43         34    x
         36        39          38 Then,  (x/2)  + 0.5 + x  = ? In each of the following questions a number series is given. One term of the series is denoted by 'x' . You have to calculate the value of 'x' and by using the value of 'x' , you have to replace the question mark (?) in the following questions :Solution
43 - 9 = 34 34 + 7 = 41 41 - 5 = 36 36 + 3 = 39 39 - 1 = 38 Hence, x = 41 Hence, 41/2+ 0.5 + 41 = 20.5 + 0.5 + 41 = 62Â
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?Â