Ho presentato la mia candidatura tramite segnalazione di un dipendente. La procedura ha richiesto 2 giorni. Ho sostenuto un colloquio presso FPL Technologies (Poona) nel mese di apr 2023
Colloquio
Interview questions were of easy to medium level. Interviewer was very calm, friendly and smart. The recruiting team was also very supportive. Interview went smooth. Questions were related to general programming and problem solving.
Domande di colloquio [1]
Domanda 1
Q1. Refactor below code to remove if-else logic by applying clean coding and design principle. public double calculateInsurance(double income) { if (income <= 10000) { return income*0.365; } else if (income <= 30000) { return (income-10000)*0.2+35600; } else if (income <= 60000) { return (income-30000)*0.1+76500; } else { return (income-60000)*0.02+105600; } } Q2. Create a screen which hits an api to show data in the list form. Try to write code with clean and objective coding structure.