Question
'N' is the largest three-digit number which leaves 5 as a
remainder when divided by 6, 9, and 15. What is the smallest number that needs to be added to 'N' to make it a perfect square?Solution
ATQ,
LCM (6, 9, 15) = 90
90 × 10 = 900
N = 900 + 5 = 905
Next perfect square = 31² = 961
Required number = 961 - 905 = 56
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 {
�...