Question
Two people 'Anil' and 'Binod' entered into a partnership
with an Starting investment of Rs.5,000 and Rs.8,000, individually. After one year, 'Anil' and 'Binod' enhanced their investment by 20% and 10%, individually. If at the end of 2 years, the difference between there profit shares of 'Anil' and 'Binod' is Rs.464, then What will be the total profit of 'Anil'.Solution
Investment of 'Anil' after one year = 5000 x 1.2 = Rs.6000 And, Investment of 'Binod' after one year = 8000 x 1.1 = Rs. 8,800 Ratio of profit shares of 'Anil' and 'Binod' = (5000 x 12 + 6000 x 12):(8000 x 12 + 8800 X 12) = 11000:16800 = 55:84 Let the profit share of 'Anil' and 'Binod' be Rs.'55x' and Rs.'84x', individually. ATQ, 84x - 55x = 464 Or, 29x = 464 So, 'x' = 16 So, profit share of 'Anil'= 55x = 55 x 16 = Rs.880
In a data analysis workflow, an index is created on a column with very low cardinality (e.g., a 'gender' column). What is a potential consequence of this?
Binary trees are often used to represent hierarchical data. Which of the following is NOT a direct application of binary trees?
What does it mean for an algorithm to be "in-place"?
What is the primary goal of the Matrix Chain Multiplication problem in dynamic programming?
Consider the following Java code:
public class LengthMix {
Β Β public static void main(String[] args) {
Β Β Β Β int[] numbers...
A function sum_matrix_elements(matrix, R, C) is designed to sum all elements of a matrix with R rows and C columns. The implementation uses nested loops...
Which is best fit for blank space 14?
Which of the following statements accurately describes Third Normal Form (3NF) in database normalization?
In a multi-homed network, BGP route flapping causes external instability. Which mechanism MOST effectively prevents repeated advertisement of unstable r...
What is the time complexity of the KMP algorithm for searching a pattern of length 'M' in a text of length 'N'?