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.
Ingeniero De Software 2 Interview Questions
558 ingeniero de software 2 interview questions shared by candidates
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
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");
Some python basic to advanced stuff followed by design approach for a problem statement.
Different types of security attacks
JS output questions and leetcode medium questions on array, string and matrix.
row level security sql joins
Design a HR portal where HR can manage job openings, candidates can apply, employees can refer.
Viewing 141 - 150 interview questions