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. ?
Answer Posted / 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 |
Post New Answer View All Answers
What are the different types of data structures in c?
What is the mean of function?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
What is this infamous null pointer, anyway?
What is the difference between procedural and functional programming?
What is the difference between procedural and declarative language?
What is type qualifiers?
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
what will be the output for the following main() { printf("hi" "hello"); }
When should the const modifier be used?
What is pass by reference in c?
How can I do serial ("comm") port I/O?
Write a c program to build a heap method using Pointer to function and pointer to structure ?
Explain indirection?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)