Create a web application that fetches and displays data from a public web API
Software Engineer 2 Interview Questions
451 software engineer 2 interview questions shared by candidates
Python basic and advance level.
Tell me about a time things didn't go as planned
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
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");
row level security sql joins
Second maximum salary from a given employee table
Viewing 101 - 110 interview questions