Average of a couple 10 years ago was 25. The average
remains same after having a child and twins after 3 years.
What is the present age of the first child
Answer Posted / kirti
Ans=21
Explanation:
10 years ago the average of couple was 25 and their current
ave is also 25.
Total number of People=5
25*5=125
so the current total of their ages=125
and current total age of couple=25*2+10*2=70
125-70=55
So the current total of the ages of 3 children=55
age of the twins=17 each and present age of the first child=21.
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
Do you know what are bitwise shift operators in c programming?
What does the c preprocessor do?
What is selection sort in c?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
Does c have an equivalent to pascals with statement?
Where does the name "C" come from, anyway?
What is c token?
What are types of preprocessor in c?
what is the diffrenet bettwen HTTP and internet protocol
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
What is a static function in c?
Explain data types & how many data types supported by c?
What does == mean in texting?
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??