Describe a disagreement with a colleague or manager
Frontend Software Engineer Interview Questions
8,921 frontend software engineer interview questions shared by candidates
** * ## Balanced Binary Tree Visualization * * Task: * Create a balanced binary tree visualization using nested squares where: * - Root: One square * - Level 1: Two squares side by side * - Level 2: Two squares inside each Level 1 square * * Colors should be assigned in pre-order traversal: * (root -> left subtree -> right subtree) * * Input: * const VIBGYOR_colors_named = [ * 'Violet', * 'Indigo', * 'Blue', * 'Green', * 'Yellow', * 'Orange', * 'Red' * ]; * * Expected color assignment: * - Root: Violet * - Left subtree: Indigo (parent) -> Green, , Yellow (children) * - Right subtree: Blue (parent) -> Orange, Red (children) */ second dsa question was based on concentric square which was easy to solve and solved it.
First leetcode was the coin change problem, but you can use a greedy algorithm to solve it since the denominations include a 1 dollar coin. If you solve it fast they follow up with a very easy tree navigating problem. The second leet code was related to RegEx where they invent a regular expression to match strings, and you build an algorithm that performs the match. Much easier than it sounds, just think it through. The takehome assignment takes between 6-10 hours and involve building an application that displays statistics about your current and historical CPU load. They give you a lot of good hints, so focus on making it pretty and flashy. The "system design" interview is just a UI interview in disguise. They'll describe an application and you just have to come up with what the UI looks like, and ask questions about tradeoffs and what the user's requirements are. Don't dive into system design details, because they will ask you to get back on task with the UI stuff.
Explain Redux in your own words.
What's SASS/SCSS/LESS, and what's BEM
What was the last thing you have learned?
Flatten a nested object and ask each and every question related to React.
Verfahren der Minimierung der Ladezeiten der Webseite
Leetcode question write a function to merge two sorted arrays.
Describe a challenge you faced in a past internship or project.
Viewing 1231 - 1240 interview questions