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.
Software Developer 2 Interview Questions
450 software developer 2 interview questions shared by candidates
What is the difference between virtual vs pure virtual?
Implement strlen function and walk through the code.
Cannot disclose because of NDA but mostly algos and project discussion
Design a LFU cache (leetcode hard)
Build a data structure that buffers before writing to a file
4 rounds don’t remember one question was recursion with backtracking type
Tell me your toughest technical project
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");
Design a HR portal where HR can manage job openings, candidates can apply, employees can refer.
Viewing 121 - 130 interview questions