Flip each word in a sentence.
Software Engineer 2 Interview Questions
450 software engineer 2 interview questions shared by candidates
Tell me your toughest technical project
4 rounds don’t remember one question was recursion with backtracking type
Given a list of 0s and 1s and a parameter K. Find max length of substring of 1s after converting at most k 0 to 1.
2. Promises and Chaining Example: console.log("Start"); const x = new Promise((resolve) => { setTimeout(() => resolve(1), 100); }); x.then((d) => { console.log(d); return d * 2; }) .then((d) => { console.log(d); return d * 3; }); x.then((d) => { console.log(d); return d * 5; }) .then((d) => { console.log(d); return d * 7; }); console.log("Reached");
When would you use a linked list over an array?
Runtime and compile time polymorphism
Java : difference between String buffer and String builder
Database related questions
Design a HR portal where HR can manage job openings, candidates can apply, employees can refer.
Viewing 121 - 130 interview questions