Question
The number of five–digit telephone numbers having
at least one of their digits repeated isSolution
The number of five–digit telephone numbers which can be formed using the digits of 0, 1, 2,...., 9 is 105. The number of five-digit telephone numbers which have none of their digits repeated is 10P5 = 10 × 9 × 8 × 7 × 6 = 30240 Hence the required number =105 - 30240 = 69760
Which of the following sorting technique is an example of Divide and Conquer technique?
Which of one the below options are the two different types of bus topology ?
For the circuit shown, Find the number of nodes and number of independent equations used for analysis of circuit using nodal analysis.
Complete the Java code to replace all occurrences of a specific word (case-insensitive) in a string.
public class RegexReplacer {
  pu...
The output of circuit shown below is
In Python, if a method in a subclass has the same name as a method in its superclass, which method will be called when invoked on an object of the subcl...
Which of the following best represents the concept of polymorphism in Object-Oriented Programming?Â
Complete the is_empty method for a stack implemented using a Python list.
class Stack:
  def __init__(self):
    self._...
For a 4x4 chessboard, if the first queen is placed at (0, 1) (row 0, column 1), which of the following positions would be the *first valid position* for...
What is the primary purpose of Named Entity Recognition (NER)?