J'ai postulé en ligne. Le processus a pris 2 mois. J'ai passé un entretien chez Honeywell (Atlanta, GA) en févr. 2017
Entretien
Interview Process was good.
1. Online Test (Behavioral and Coding challenge)
2. One Manager round (Phone)
3. One Technical round (Phone)
Onsite
4. HR discussion
5. Hiring Manager Discussion
6. Coding Challenge
After a week
7. Technical discussion (Phone)
Questions d'entretien [1]
Question 1
Technical:
1. https://www.facebook.com/hackercup/problem/403525256396727/
2. http://www.geeksforgeeks.org/count-ways-reach-nth-stair/
3. In english alphabet "a-z and A-Z" letters.
As we know all numbers can be represented by a fibonacci number.
1 2 3 5 8 13 21 34 55 89
Suppose 6 = 5 + 1, can be encoded as 1001
16 = 13 + 3 = 100100
4 = 3 + 1 = 101
Similarly, all the letters "a-z and A-Z" should be converted to ASCII number then convert them to Fibonacci encoded number
Then read decode them back to origonal character.
H E L L O
ASCII values of all the letters from (HELLO)
Then covert them to corresponding binary values
e.g H = 72 = 55 + 13 + 3 + 1 = 100100101
And add "1" (number 1) to end of all charcter to find out the number ends there.
So H = 100100101 + 1 = 1001001011 (Not mathematical add, string add or append)
4. What you like to do in leisure time?
5. What you have done something interesting beyond your scope?
6. How do you manage a day in your place when you are heavily loaded?
7. Why are you looking for a change?
....
J'ai postulé via un recruteur. J'ai passé un entretien chez Honeywell (Bengaluru) en mars 2026
Entretien
The take technical rounds first you just have to check top Javascript interview questions and the interviewer will blindly ask you those questions. They are not willing to check how good you approach a problem, all they care about is how you can byheart documentation and top questions.
J'ai postulé en ligne. Le processus a pris 3 semaines. J'ai passé un entretien chez Honeywell (Kraków)
Entretien
1st Screening interview
2nd Technical assignment on hackerrank, assignment was a bit complicated but could be solved using brute force, few tests were failing because of performance reasons
3rd Technical and soft skills interview, interview from C and C++, questions were easy for someone who is using both languages daily
Questions d'entretien [1]
Question 1
3rd interview they asked why we use virtual destructors, what is RAII etc.
J'ai postulé via la recommandation d'un employé. Le processus a pris plus d'une semaine. J'ai passé un entretien chez Honeywell (Bengaluru) en sept. 2024
Entretien
Easy to medium leet code questions , java basics & spring, springboot based questions, focused on multithreading , mutex, semaphore, ConcurrentHashMap, HashMap , garbage collection,How does Streams API handle lazy evaluation
Questions d'entretien [1]
Question 1
Difference between @Controller and @RestController.
How does request mapping resolution happen?