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.
Engenheiro De Software 2 Interview Questions
446 engenheiro de software 2 interview questions shared by candidates
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
* Questions about current projects and high level architecture * Sorting algorithm of your choice
There were four rounds , First two round were technical , Medium level DS algo questions on Graphs were asked. Design Patterns were asked.
row level security sql joins
Design a HR portal where HR can manage job openings, candidates can apply, employees can refer.
Viewing 111 - 120 interview questions