Question
Select the option that is related to the third number in
the same way as the second number is related to the first number. 21 : 484 :: 13 : ?Solution
The logic is that the square of first number results in second number. (21 + 1)² = 22² = 484 (13 + 1)² = 14² = 196
Which Python keyword is used to define a function?
Which type of Memory is typically the fastest in a computer system?
In Python, which of the following is used to create an anonymous function?
Which tree traversal is most suitable for finding the shortest path in an unweighted graph represented as a tree?
Which Python keyword is used to handle exceptions?
Which of the following is correct about C++ constructors?
Which of the following is a valid operation on a linked list data structure?
In Java, which keyword is used to prevent a class from being inherited?
In Python, which of the following is immutable?
In C, what will be the output of the following code?
int a = 5;
printf("%d", a++);