Question
'A' and 'B' started a business by investing Rs. 4,200
and Rs. 5,600, respectively. If 'A' and 'B' invested their investments for 7 months and 9 months, respectively, then find the profit share of 'B' out of the total profit earned by them which is Rs. 3,900.Solution
ATQ, Ratio of profit shares of 'A' and 'B' = (4,200 X 7):(5,600 X 9) = 29,400:50,400 = 49:84 So, profit share of 'B' = 3,900 X (84/133) = Rs. 2,463
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?Â