Question
Suppose 6A = 8B = 15C, then find the value of (A:B:C)
.Solution
ATQ,
Let 6A = 8B = 15C = 'p'
So, 'A' = (p/6), 'B' = (p/8) and 'C' = (p/15)
Required ratio = (p/6) :(p/15) (p/8)
= (120/6) :(120/15) :(120/8) .........(LCM of 6, 8 and 15 is 120)
= 20:8:15
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 {
�...