system design questions to do performance tuning.
Senior Full Stack Engineer Interview Questions
1,781 senior full stack engineer interview questions shared by candidates
What is the output of the following code snippet? `const person = { name: 'John', age: 30, greet() { console.log(`Hi, my name is ${this.name} and I'm ${this.age} years old.`); } }; const greet = person.greet; greet();`
What is the output of the following code snippet? `var a = 1; function foo() { console.log(a); var a = 2; } foo();`
What is the output of the following code snippet? `function Animal(name) { this.name = name; } Animal.prototype.walk = function() { console.log(`${this.name} is walking.`); }; function Dog(name) { Animal.call(this, name); } Dog.prototype = Object.create(Animal.prototype); const myDog = new Dog('Rover'); myDog.walk();`
Previous jobs that i did
General behavioral interview in thge 2nd stage Nothing really set in stone for the other stages
What is difference between indexes and index in Mysql?
Tell me about your previous position?
Most recent ambiguous project you worked on.
What is your favorite product (doesn't have to be related to tech or SSC)?
Viewing 461 - 470 interview questions