Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

20% of a 6 litre solution and 60% of 4 litre solution are
mixed what the % of mixture of solution it is resulted into?

Answer Posted / ashish

28

Is This Answer Correct ?    0 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what is the drawback of classical methods in oops?

3431


What is byval and byref? What are differences between them?

2272


What type of loop is a for loop?

1133


Why is oop better than procedural?

1145


What are classes oop?

1091


What is the difference between encapsulation and polymorphism?

1157


What is meant by multiple inheritance?

1336


#include #include #include #include void insert(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); insert(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void insert(char *items, int count) { register int a, b; char t; for(a=1; a < count; ++a) { t = items[a]; for(b=a-1; (b >= 0) && (t < items[b]); b--) items[b+1] = items[b]; items[b+1] = t; } } design an algorithm for Insertion Sort

2688


is there any choice in opting subjects like 4 out of 7

2247


What is solid in oops?

1207


Which is better struts or spring?

1116


Why do we need oop?

1275


how to get the oracle certification? send me the answer

2210


What is the difference between a mixin and inheritance?

1038


What is pure oop?

1168