Question
8: 24::
38:?Solution
First number = 8 and Sum of the digits of the second number = 2 + 4 = 6 Thus, difference of the first number and the sum of the digits of the second number = 8 – 6 = 2 Similarly, the sum of the digits of the third number = 3 + 8 = 11 Hence, sum of the digits of the fourth number should be 2 more than 11 i.e, 13. Hence, fourth number = 58 or 85
For a comparison-based sorting algorithm, which lower bound applies to the worst-case number of comparisons?
In mobile computing, what is the main feature of pervasive computing?
In hashing, what is a collision?
What is the primary goal of Cyber Security?
Which of the following is considered the strongest type of encryption method in modern cyber security practices?   Â
Which algorithm uses a priority queue to repeatedly pick the next closest vertex?
In a Min-Heap, the root node is:
Worst case is the worst case time complexity of Prim’s algorithm if adjacency matrix is used?
In which case is QuickSort’s performance worst?
Output of below code
public class Prg {
public static void main(String args[]){
System.out.print("A" + "B" + 'A');
}
...