InterviewSolution
Saved Bookmarks
| 1. |
What is the Golden Ratio? |
|
Answer» Any two CONSECUTIVE (one after the other) Fibonacci Numbers have a ratio that is very close to the Golden Ratio, which is equal to 1.618034.... (approx). In fact, the larger the pair of Fibonacci Numbers, the closer the approximation. LET's have a look at a few: 3/2 = 1.55/3 = 1.666666666......233/377 = 1.618055556...This also works when we start the sequence with two RANDOM WHOLE numbers. Useful Preparation Resources:Java Automation Testing API Testing SQL |
|