General programming interviews started with a leetcode type of problem, then added more parts that built on the last step.
Frontend Software Engineer Interview Questions
869 frontend software engineer interview questions shared by candidates
Do you have a design portfolio?
Talk about a time when you went above and beyond to improve a user experience
Describe what a hashmap is and what it's use case is.
Questions involving matrix manipulation, counting subarrays which meet a certain condition, etc.
Standard React based challenge - fetching and displaying
In the Live Coding interview, they first asked me to briefly describe my professional experience in a few words. After that, the main task was to implement an AsyncTaskQueue, focusing on concurrency control and efficient task execution.
-Name a time you failed and how did you over come it -How do you keep upto date with the latest technologies -Talk about a time you worked in a group -Why this role -Why the BBC
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.
Interview process: 1. Javascript, HTML, CSS and React questions with live coding 2. System Design 3. Hiring manager round
Viewing 771 - 780 interview questions