Microsoft Company Category

In an examination the number of successful students was 4 times the numbr of unsuccessful students If there were 35 less students nd the numbr of unsuccessful students were 9 more,then the ratio of their numbr would have been 2:1 . Find the total numbr of students

Read Solution (Total 3)

Microsoft Other Question

There are three taps A,B and C.they can fill the tank in 10,20,and 25 hrs respectively.At first all of them are opened simultaneously.Then after 2 hrs
tap C is closed and A and B are kept running.After the 4rth hour tap B is closed.The remaining work is done by tap A alone.Find the percentage of the work done by Tap A by itself?
#include
#include
#define MAX(x,y) (x)>(y)?(x):(y)
int main()
{
int i=10;
int j=5;
int k=0;
k=MAX(i++,++j);
printf("
%d %d %d",i,j,k);
return 0;
}