1. Scope and Hoisting Example: var x = 10; function outer() { var x = 20; function inner() { x++; console.log(x); // NaN (due to hoisting) var x = 30; console.log(x); // 30 } inner(); } outer();
Software Engineer 2 Interview Questions
450 software engineer 2 interview questions shared by candidates
How do you setup Webpack for Vanilla JS and CSS Why Loaders in Webpack?
Medium and Hard Difficult LC questions
LC style questions. Easy - Medium OOD question
I was asked about the most recent problem I remember, the biggest challenge I faced, and how I would patch an npm package step by step, from the first step to the last.
Finding middle node of a linked list Bit masking
Sliding window: Given date to flight price data map. Find min flight price in a range of days from start to end(sliding window).
Behavioural round taken by a manager which was vising from London office. Where do you see yourself in 3 yrs? Have you ever worked for a failed product? Characteristics of failed product? Best compliment received so far? How do you judge your manager? Conflict with a colleague? Strengths and weaknesses How do you give peer feedback? Example of improvement(negative) feedback given? How do you plan your growth? Example of feedback given and you incorporated it
please tell me about yourself
First round was Hackerrank test followed by a one on one interview, The interview was about basic DSA and a bit of core c++ concepts and a predict the output question.
Viewing 321 - 330 interview questions