Question
If digits of each number are arranged is ascending order
from, how many number/ numbers thus formed would be perfect square/ squares? These questions are based on the following set of numbers: 6523 8462 2297 5144 4739Solution
6523 8462 2297 5144 4739 2356 2468 2279 1445 3479
Which of the following techniques is most efficient for finding the kth smallest element in a Binary Search Tree (BST)?
Which network topology ensures full redundancy but is highly expensive and complex to implement?
What will be the output of the following Java snippet?
class A {
public void display() {
System.out.pr...
Which SOLID principle emphasizes that a class should have only one reason to change?
In CI/CD pipelines, which of the following is NOT a key benefit of Continuous Integration (CI)?
Which of the following statements about normalization in relational databases is correct?
What is the output of the following recursive function call func(3) ?
int func ( int n) {
if (n == 0 ) return 1 ; <...
Which SQL command is used to remove only specific rows from a table while preserving the structure and other rows?
The time complexity of binary search is:
What is the purpose of the keys() method in a dictionary?