20% of a 6 litre solution and 60% of 4 litre solution are
mixed what the % of mixture of solution it is resulted into?
Answers were Sorted based on User's Feedback
Answer / kalyan chukka
Ans : 3.6 lt
20% of 6 lit solution = 20/100 x 6 = 1.2 lt
60% of 4 lit solution = 60/100 x 4 = 2.4 lt
Ans= 1.2+2.4 = 3.6 lt
| Is This Answer Correct ? | 21 Yes | 2 No |
Can static class have constructor?
Write pseudo code for push in a stack?
different types of castings
What is virtual Function.
Whats oop mean?
#include <iostream> using namespace std; int main() { int a = 3; int c[5][5]; for (int x=0;x<5;x++) { for (int y=0;y<5;y++) { c[x][y] = x*y; } } cout << c[a][2]; }
What are generic functions and generic classes?
What is encapsulation?
Which method cannot be overridden?
Difference between new operator and operator new
What is extreme programming?
design class for linked list and include constructor,destructor,insert option. struct node { int node; struct node &ptr; }