monkey starts climbing up a tree 20ft tall,each hour ,it
hops 3ft and slips back by 2ft .how much time it wil tak to
reach top of the tree?

Answer Posted / aswin

Hey guys it s 18 only...
Here is the logic

17 hrs = 17 ft
18th hr it climbs 3 feet and reaches the top of the tree.
(After that it slips down by 2 feet but it is not of
concern bcoz our target is to reach the tree)

Is This Answer Correct ?    74 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is encapsulation with real life example?

564


What is encapsulation selenium?

549


INSTANCE FIELDS DECLARED private ARE ACCESSIBLE BY THE METHODS ONLY.CAN WE CHANGE THE private FIELD OF AN OBJECT IN A METHOD OF SOME OTHER OBJECT OF THE SAME CLASS?

1628


What is oops with example?

559


Give an example where we have to specifically use C programming language and C++ programming language cannot be used?

1135






What causes polymorphism?

563


How do you define social class?

594


Which type does string inherit from?

608


Will I be able to get a picture in D drive to the c++ program? If so, help me out?

1648


#include #include #include #include void select(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); select(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void select(char *items, int count) { register int a, b, c; int exchange; char t; for(a = 0; a < count-1; ++a) { exchange = 0; c = a; t = items[ a ]; for(b = a + 1; b < count; ++b) { if(items[ b ] < t) { c = b; t = items[ b ]; exchange = 1; } } if(exchange) { items[ c ] = items[ a ]; items[ a ] = t; } } } design an algorithm for Selection Sort

2056


What is the difference between inheritance and polymorphism?

581


What is multilevel inheritance?

715


What is coupling in oop?

585


why reinterpret cast is considered dangerous?

1894


What are the important components of cohesion?

546