we have a 3litres jug and a 5 litres jug and no measures on
them. using these two jugs how can we measure 4 litres of water?
Answer Posted / money
we have 3 liter jug and 5 lit..
first 5 liter with full water.and drop water into 3 liter
jug. remain 2 liter water in 5 liter capcity jug.
step 2 : drop 3 liter water in another container.
3 liter jug is empty and after then 2 liter from 5
liter jug into 3 liter jug. now we have 2 liter water in 3
liter capicity jug and 5 liter jug is empty.
step 3: take water with full 5 liter jug. pour the one liter
into 3 liter jug which have already two liter .u will have 4
liter in 5 liter jug cacpity.
| Is This Answer Correct ? | 25 Yes | 3 No |
Post New Answer View All Answers
What should malloc(0) do?
What does != Mean in c?
Why is python slower than c?
What is a nested formula?
Write a factorial program using C.
Which header file should you include if you are to develop a function which can accept variable number of arguments?
Is there any data type in c with variable size?
What is declaration and definition in c?
How to compare array with pointer in c?
Is array name a pointer?
What are the data types present in c?
How can I do graphics in c?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
Explain how many levels deep can include files be nested?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?