Forest Interview Questions

4,244 forest interview questions shared by candidates

The second round interview: Implement a binary tree with the given interface, then discuss the implementation via remote desktop and phone. /* * An interface for an sorted binary tree. * * The interface provides methods for inserting values, checking if certain values are contained and iterating over the elements. * Note: Implementing classes should provide an iterator that traverse the inserted object in the sorted order. */ public interface IBinTree<V extends Comparable<V>> extends Iterable<V> { /* * Insert an object into the binary tree. Note: The tree should be sorted, inserting the same object twice is allowed but the insert is expected to be stable. */ void insert(V obj); /* * Batch-insert multiple elements. */ void insert(Vector<V> vec); /* * Check if the object is already in the tree. Return true if it is, false otherwise. */ boolean contains(V obj); }
May 29, 2012

The second round interview: Implement a binary tree with the given interface, then discuss the implementation via remote desktop and phone. /* * An interface for an sorted binary tree. * * The interface provides methods for inserting values, checking if certain values are contained and iterating over the elements. * Note: Implementing classes should provide an iterator that traverse the inserted object in the sorted order. */ public interface IBinTree<V extends Comparable<V>> extends Iterable<V> { /* * Insert an object into the binary tree. Note: The tree should be sorted, inserting the same object twice is allowed but the insert is expected to be stable. */ void insert(V obj); /* * Batch-insert multiple elements. */ void insert(Vector<V> vec); /* * Check if the object is already in the tree. Return true if it is, false otherwise. */ boolean contains(V obj); }

All candidates at Bootcamp are divided in teams. Teams are multinational. All teams are working on the same case study. Case study is a complex problem, that your team need to analyse, propose a best fit solution(s) and you have to present it in front of the jury. Jury is consisted of managers from SAP and HR team. During the process of solving the case, SAP HR takes you out of the group for the short 1-on-1 interviews. You have few this kind interviews during the day. You are interviewed by the SAP managers. They ask you who you understood the case, what's your point of view, what would you do if...
avatar

SAP Academy for Presales Bootcamp

Interviewed at SAP

4.2
May 24, 2015

All candidates at Bootcamp are divided in teams. Teams are multinational. All teams are working on the same case study. Case study is a complex problem, that your team need to analyse, propose a best fit solution(s) and you have to present it in front of the jury. Jury is consisted of managers from SAP and HR team. During the process of solving the case, SAP HR takes you out of the group for the short 1-on-1 interviews. You have few this kind interviews during the day. You are interviewed by the SAP managers. They ask you who you understood the case, what's your point of view, what would you do if...

Viewing 2981 - 2990 interview questions

Glassdoor has 4,244 interview questions and reports from Forest interviews. Prepare for your interview. Get hired. Love your job.