Blackstone Technology Group Interview Questions

Blackstone Technology Group Interview Guides

Click or hover over a slice to explore questions for that topic.
Data Modeling
(2)
Machine Learning
(2)
Data Structures & Algorithms
(2)
Behavioral
(2)

Blackstone Technology Group Interview Questions

Practice for the Blackstone Technology Group interview with these recently asked interview questions.

QuestionTopicDifficulty
Data Structures & Algorithms
Medium

The Fibonacci sequence is a series of numbers in which each number is the sum of the two preceding ones, usually starting with 0 and 1. It is often used in algorithm examples, and is defined by the following formula: F(n) = F(n-1) + F(n-2), with F(0) = 0 and F(1) = 1.

Your task is to implement the Fibonacci algorithm in three different methods: 1. Recursively 2. Iteratively 3. Using Memoization

Example 1:

Input:

n = 5

Output:

fibonacci(n) -> 5

Example 2:

Input:

n = 10

Output:

fibonacci(n) -> 55

The Fibonacci sequence starts as follows: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55…

Data Structures & Algorithms
Medium
Behavioral
Medium
Loading pricing options

View all Blackstone Technology Group questions

Challenge

Check your skills...
How prepared are you for working at Blackstone Technology Group?

Discussion & Interview Experiences

?
There are no comments yet. Start the conversation by leaving a comment.

Discussion & Interview Experiences

There are no comments yet. Start the conversation by leaving a comment.

Jump to Discussion