Question
A mixture contains alcohol and water in the ratio 7:3.
If 15 liters of water is added to the mixture, the ratio becomes 7:5. What is the initial quantity of alcohol in the mixture?Solution
Let the initial quantities of alcohol and water be 7x and 3x liters, respectively. After adding 15 liters of water, the ratio becomes 7:5. (7x) / (3x + 15) = 7 / 5. Cross multiply: 5(7x) = 7(3x + 15). 35x = 21x + 105. 35x - 21x = 105 14x = 105. x = 105 / 14 = 7.5. Initial quantity of alcohol = 7x = 7 × 7.5 = 52.5 liters. Correct option: b
- Which layer of the OSI Model is responsible for ensuring error-free delivery of data between source and destination?
Which method is used to compute the inverse of a matrix in numerical computing efficiently?
Which layer in the OSI model corresponds to the Transport layer in the TCP/IP model and is responsible for end-to-end communication, error correction, a...
Which of the following best describes Third Normal Form (3NF) in a relational database?Â
State true or false
Confidentiality, integrity and availability, also known as the CIA triad, is a model designed to guide policies for infor...
Consider a Binary Search Tree (BST) with the following values inserted in sequence: 45, 32, 50, 15, 40, 47, 60. What will be the in-order traversal of t...
SMTP commands
Predict the  program output
void main ()
{
 int x = 128;
 printf ("n%d", 1 + x++);
}
- Which type of software testing ensures that integrated modules of an application work together as expected?
What is the purpose of the with statement when working with files?