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...


25. It takes five minutes to pass a rumour from one
person to two other persons. The tree of rumour continues.
Find how many minutes does it take spread the rumour to 768
persons. ?

Answers were Sorted based on User's Feedback



25. It takes five minutes to pass a rumour from one person to two other persons. The tree of rumou..

Answer / pradeep

Yes Bindu, You are right and thanks for correcting me.

and the right answer is 35 minutes.
Please find the logic and the program below:


int ppl , time , i , sum = 0;

printf("Enter the number of ppl u want to spread \r\n");
scanf("%d",&ppl);

while(sum<ppl)
{
sum = pow(3,i);
time = 5 * i;
i++;
}
printf("time in min required is %d \r\n",time);

[
out put:
Enter the number of ppl u want to spread
768
time in min required is 35
]
==================
For your refernce :
1->2 [ total 3 ppl ] took 5 min;
3 -> 6 [ total 9 ppl ] took 10 min
9 ->18 [ total 27 ppl ] took 15 min ..
27 -> 54 [ total 81 ppl ] took 20 min
81 -> 162 [ total 243 ppl ] took 25 min
243 -> 486 [ total 729 ppl ] took 30 min
729 -> 1458 [ total 2187 ppl ] took 35 min

overall it's power of 3
============================

Is This Answer Correct ?    19 Yes 3 No

25. It takes five minutes to pass a rumour from one person to two other persons. The tree of rumou..

Answer / manish panwar

// It's a combination of 1+2+4+8+16+.... and each intervl
takes 5 minutes.

SO

1+2+4+8+16+32+64+128+256+512+1024

11*5 = 55 MINTS IN TOTAL .

Is This Answer Correct ?    11 Yes 5 No

25. It takes five minutes to pass a rumour from one person to two other persons. The tree of rumou..

Answer / bindu

In the first 5 mins three people come to know of the
rumour; including the first person (who is still able to
spread the rumour!), i..e every 5 mins, three times the
people come to know of the rumour. So it just takes 30 mins
for 729 people and 35 mins for 2187 people to know of the
rumour.

Is This Answer Correct ?    8 Yes 2 No

25. It takes five minutes to pass a rumour from one person to two other persons. The tree of rumou..

Answer / bindu

But Pradeep, your logic assumes that the people who have
already passed the rumour in the first 5mins, will not pass
it again in the next 5mins!! In my logic, they keep on
passing it; 1.e. they don't stop after the first time.

Is This Answer Correct ?    5 Yes 0 No

25. It takes five minutes to pass a rumour from one person to two other persons. The tree of rumou..

Answer / karthiga

It takes 30 min only.

Is This Answer Correct ?    3 Yes 0 No

25. It takes five minutes to pass a rumour from one person to two other persons. The tree of rumou..

Answer / steve

45 minutes.

Is This Answer Correct ?    6 Yes 5 No

25. It takes five minutes to pass a rumour from one person to two other persons. The tree of rumou..

Answer / usha

Its 45 min becoz the Ist person spreeds rumour to 2person in
5 min. so in next 5 min the 2 person spreads simultaneously
to 4pesons and these steped is continued tel 45min, such as
2+4+8+16+32+64+128+256+512 this indicate at each addition it
take 5min. so the answer is 45min

Is This Answer Correct ?    2 Yes 1 No

25. It takes five minutes to pass a rumour from one person to two other persons. The tree of rumou..

Answer / dony

9*5+2.2=47.5min

Is This Answer Correct ?    0 Yes 0 No

25. It takes five minutes to pass a rumour from one person to two other persons. The tree of rumou..

Answer / pradeep

It requires 45 minutes:
Find the logic below:
int time;
for ( int i=0,SpreadRate=1,Ppl=0;Ppl<=768;i++)
{
Ppl = Ppl + SpreadRate;
time = 5 * i;
SpreadRate = SpreadRate * 2;

}
printf("time in min %d \r\n"),time);

Is This Answer Correct ?    2 Yes 3 No

25. It takes five minutes to pass a rumour from one person to two other persons. The tree of rumou..

Answer / pradeep

// It's a combination of 1+2+4+8+16+.... and each intervl
takes 5 minutes.
so use the below logic to find out the ryt answer

int time;
for ( int i=0,sum=0;sum<=768;i++)
{
sum = sum+(2*i);
time = 5*i;
}
printf("time in min %d \r\n"),time);

correct answer is 140 minutes [ nothng but 2 hours 20 min]

return TRUE;

Is This Answer Correct ?    4 Yes 12 No

Post New Answer

More C Interview Questions

Write a c program to Find the name that you entered is male name or female name? Such as Sunjay is name of male and Payal is name of female

5 Answers   Infosys, Luminous,


What are enums in c?

0 Answers  


Explain why can’t constant values be used to define an array’s initial size?

0 Answers  


write a fuction for accepting and replacing lowercase letter to'Z' with out using inline function.

5 Answers   Temenos,


What is actual argument?

0 Answers  


What is abstract data structure in c?

0 Answers  


What is #include in c?

1 Answers  


Write a program to reverse a given number in c language?

0 Answers  


write a c program for print your name .but,your name may be small letter mean print a capital letter or your name may be capital letter mean print a small letter .example \\enter ur name : sankar The name is: SANKAR (or) enter your name:SAnkar The name is:saNKAR

5 Answers  


There is a mobile keypad with numbers 0-9 and alphabets on it. take input of 7 keys and then form a word from the alphabets present on those keys.

0 Answers  


why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above

0 Answers  


write an interactive C program that will encode or decode a line of text.To encode a line of text,proceed as follows. 1.convert each character,including blank spaces,to its ASCII equivalent. 2.Generate a positive random integer.add this integer to the ASCII equivalent of each character.The same random integer will be used for the entire line of text. 3.Suppose that N1 represents the lowest permissible value in the ASCII code,and N2 represents the highest permissible value.If the number obtained in step 2 above(i.e.,the original ASCII equivalent plus the random integer)exceeds N2,then subtract the largest possible multiple of N2 from this number,and add the remainder to N1.Hence the encoded number will always fall between N1 and N2,and will therefore always represent some ASCII character. 4.Dislay the characters that correspond to the encoded ASCII values.  The procedure is reversed when decoding a line of text.Be certain,however,that the same random number is used in decodingas was used in encoding.

0 Answers  


Categories