Question
Ankit can complete a task in 16 days, while Bina alone
can complete the same task in 24 days. Ankit starts the work alone and continues for 6 days. Then, Bina joins him, and they work together for the next 4 days. After that, Ankit leaves, and Bina completes the remaining work alone. Determine how many days Bina worked alone to finish the task.Solution
ATQ; Let the total task be = 48 {LCM(16, 24)} Efficiency of ‘Ankit’ = (48/16) = 3 units/day Efficiency of ‘Bina’ = (48/24) = 2 units/day Task done by ‘Ankit’ in 6 days = 3 × 6 = 18 units Task done by ‘Ankit’ and ‘Bina’ together in 4 days = 5 × 4 = 20 units Remaining task = 48 – 18 – 20 = 10 units Time taken by ‘Bina’ to complete the remaining task = 10/2 = 5 days
Which of the following algorithm uses Darwinian based algorithm to find the best solutions to solve complicated problems with a greater number of variab...
Which of these is a cloud-based IoT platform?
What does ETL stand for in analytics?
Consider the following C++ code:
#include
class Base {
public:
  virtual void show() = 0;
};
cl...
Complete the Python function to find the starting index of the first occurrence of sub in main_string. Return -1 if not found.
def find_substring...
Maximum Power transfer occurs when the_____
When building a Huffman tree, the two nodes with the smallest frequencies are combined. Which line correctly creates a new parent node newNode with left...
In n-gram models, what does 'n' represent?
State True or False
Kernel level thread cannot share the code segment.
Complete the Java method to extract a substring from text starting at startIndex and having length characters.
public class StringUtil {
�...