Question
In a certain code, SAM is written as 917 and ENTHUSE is
written as 2634892. In this coding system, which of the following could be a possible code for the word ENTHUSIASM?Solution
The pattern followed here is: Logic: Every alphabet is coded with unique number. SAM  is written as  917 Here, code of S → 9 A → 1 M → 7 And, ENTHUSE is written as 2634892 Here, code of E → 2 N → 6 T → 3 H → 4 U → 8 S → 9 E → 2 Similarly, ENTHUSIASM is written as '? E → 2 N → 6 T → 3 H → 4 U → 8 S → 9 I → A → 1 S → 9 M → 7
Which operation is used to add an element to the top of a stack?
Which SQL command is used to remove only specific rows from a table while preserving the structure and other rows?
In a data warehousing environment, what is the primary purpose of an OLAP (Online Analytical Processing) cube?
Which design pattern is best suited for managing the creation of objects without specifying their concrete classes?
Which tree traversal gives nodes in non-decreasing order for a BST?
In the context of Management Information Systems (MIS), which of the following best describes the role of a decision support system (DSS)?
Which of the following techniques is most efficient for finding the kth smallest element in a Binary Search Tree (BST)?
Which of the following statements is true about ACID properties in database transactions?
Which of the following best illustrates Encapsulation in Object-Oriented Programming?
What is the output of the following recursive function call func(3) ?
int func ( int n) {Â Â Â Â Â Â Â
   if (n == 0 ) return 1 ; <...