I was asked about space complexity to find duplicates in a list of integers.
Fullstack Developer Interview Questions
3,983 fullstack developer interview questions shared by candidates
Do you know test driven development?
One of the key questions was about implementing stack and queue data structures using TypeScript generic classes.
Implement an async waterfall function in javascript. An async waterfall function is a function that get two parameters: Tasks - An array of async functions to run. Each function should complete with any number of result values. The result values will be passed as arguments, in order, to the next task. callback - A callback to run once all the functions have completed. This will be passed the results of the last task's callback. Invoked with (err, [results]). The tasks from should run one after the other asynchronously. A call to this function should look like this: AsyncWaterfall([ function One(callback) { console.log("One called with", arguments) callback(null, 'one', 'two', 'three', 'four'); }, function Two(arg1, arg2, arg3, arg4, callback) { console.log("Two called with", arguments) // arg1 now equals 'one' and arg2 now equals 'two' setTimeout(function () { callback(null, 'three'); }, 1500) }, function Three(arg1, callback) { console.log("Three called with", arguments) // arg1 now equals 'three' callback(null, 'done'); }, ], function Done(err, result) { if (err) { console.log("Error!", err) } else { console.log("Done", result) } });
Find three unique elements resulting in target sum.
What is Node js? What is Asynchronous in JavaScript?
To complete a Challenge. The challenge consisted in develop a project with both Client and Server side. It was open for me to choose the stack. Client had to have some behaviour and features, and server needed an API REST.
Find if the given numbers are Palindrome or not
Q: Can you tell me a little bit more about your background?
Write simple SQL query, write simple (and I mean simple) javascript function
Viewing 501 - 510 interview questions