Question
Monthly savings of βQβ is 25% more than that of
βPβ and is 56% less than monthly income of βPβ. Monthly expenditure of βQβ is Rs. 4100 and ratio of monthly income of βPβ and βQβ is 15:23, respectively. Find monthly expenditure of βPβ. MTSolution
Let monthly income of βPβ and βQβ be Rs. β15xβ and Rs. β23xβ, respectively Monthly savings of βQβ = 44% Γ 15x = Rs. 6.6x Monthly savings of βPβ = {6.6/1.25} = Rs. 5.28x Monthly expenditure of βPβ = 15x β 5.28x = Rs. 9.72x Monthly expenditure of βQβ = 23x β 6.6x = Rs. 16.4x Or, 16.4x = 4100 Or, x = 4100/16.4 Or, x = 400 Monthly expenditure of βPβ = 9.72 Γ 250 = Rs. 2430
In a digital communication system, let the encoding scheme be βAdd 1 at the end of the bit stream if number of 1 bits is odd, else add 0 at the end of...
Which of the following statements accurately describes the purpose of unit testing in software development?
Which of the following language is used for specifying style sheets for XML documents?Β
.Consider the following Java code:
class Shape {
Β Β void draw() {
Β Β Β Β System.out.println("Drawing a generic shape");
...Which heuristic search strategy uses both cost so far and estimated cost to goal?
Consider a delete_node(head, key) function for a singly linked list that removes the first occurrence of a node with a given key. The function works for...
In a Selection Sort algorithm, the inner loop finds the index of the minimum element in the unsorted part. Which line correctly completes the if conditi...
Deadlock can arise if four necessary conditions hold simultaneously. Which of the following is NOT one of them?
The Statement object is created by using createStatement() method of Connection class.
Complete the Python code to print the elements of the main diagonal of a square matrix matrix of size N x N.
def print_main_diagonal(matrix, N):<...