Site Reliability Engineer Interview Questions

2,547 site reliability engineer interview questions shared by candidates

Using the Fibonacci sequence, print out a lower case letter (from the English alphabet) the number of times of the Fibonacci number in the corresponding index. A number in the Fibonacci sequence is calculated by: n[x-2] + n[x-1] = n[x] The sequence starts with n[1] = 1 and n[2] = 1. The index begins at 1, not 0. Be careful of off by 1 errors. You do not have to worry about exceeding the English alphabet s max index of 26. Example: Input: 5 Letter = e Fibonacci number n[5] = 5 Output: eeee Input: A single integer. Output: A number of lower case letters as described above.
avatar

Site Reliability Engineer

Interviewed at IBM

3.9
Oct 14, 2017

Using the Fibonacci sequence, print out a lower case letter (from the English alphabet) the number of times of the Fibonacci number in the corresponding index. A number in the Fibonacci sequence is calculated by: n[x-2] + n[x-1] = n[x] The sequence starts with n[1] = 1 and n[2] = 1. The index begins at 1, not 0. Be careful of off by 1 errors. You do not have to worry about exceeding the English alphabet s max index of 26. Example: Input: 5 Letter = e Fibonacci number n[5] = 5 Output: eeee Input: A single integer. Output: A number of lower case letters as described above.

Viewing 1541 - 1550 interview questions

Glassdoor has 2,547 interview questions and reports from Site reliability engineer interviews. Prepare for your interview. Get hired. Love your job.