Question
The ratio of the incomes of Vineet and Vidya is 12:7
respectively. Vineet saves 25% of his income while Vidya saves 20% of his income. The sum of their expenditures is Rs.73000. Find the difference between their incomes.Solution
Let the incomes of Vineet and Vidya be Rs. 12x and Rs. 7x respectively. According to the question, => 0.75 x 12x + 0.80 x 7x = 73000 => 9x + 5.6x = 73000 => x = 5000 Required difference = 12x – 7x = 5x = Rs.25000
Consider the following C code snippet:
  #include
  int factorial(int n) {
    if (n == 0) {
  ...
Which of the following data structures is most suitable for implementing a priority queue with efficient insertion and deletion operations based on prio...
What is the primary function of a router in a network?Â
What does the term "serializable" refer to in the context of database transactions?
Complete the is_empty method for a stack implemented using a Python list.
class Stack:
  def __init__(self):
    self._...
Which of the following is NOT one of the four necessary conditions for a deadlock to occur?
What are the different modes of fiber optic communication?
What does the Hamming distance measure in the context of information theory and coding?
In a virtual memory system, which of the following techniques is used to maintain the illusion that each process has its own dedicated memory space?Â
Which of the following operation is performed by Domain Name Server (DNS)?