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 / 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 |
Post New Answer View All Answers
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.
How can you access memory located at a certain address?
Differentiate between the expression “++a” and “a++”?
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
Describe the header file and its usage in c programming?
What are identifiers and keywords in c?
What is data structure in c language?
What is #error and use of it?
What is new line escape sequence?
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
Create a simple code fragment that will swap the values of two variables num1 and num2.
Is c is a procedural language?
Differentiate between static and dynamic modeling.
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
Multiply an Integer Number by 2 Without Using Multiplication Operator