What is a closure in JavaScript?
Full Stack Software Engineer Interview Questions
15,799 full stack software engineer interview questions shared by candidates
given an array of integers, without reordering, determine the maximum difference between any element and prior smaller element. If there is never a lower prior element, return -1. example arr = [5,3,6,7,4] there are no earlier elements than arr[0]. there is no earlier reading with a value lower than arr[1]. there are two lower earlier readings with a value lower than arr[2]=6: • arr[2] - arr[1] = 6 - 3 = 3 • arr[2] - arr[0] = 6 - 5 = 1 there are three lower earlier readings with a lower value than arr[3]=7: • arr[3] - arr[2] = 7 - 6 = 1 • arr[3] - arr[1] = 7 - 3 =4 • arr[3] - arr[0] = 7 - 5 =2 there is one lower earlier reading with a lower value than arr[4]=4: • arr[4] - arr[1] = 4 - 3 = 1 the maximum trailing record is arr[3] - arr[1] = 4
The difference between Dynamic programming and Greedy algorithms?
based on arrays
What are my expected salary
SOLID principles, Microservices Architecture, ASP.NET MVC and WebApi, AngularJs components, Bootsrap, etc.
O que vc melhoraria no projeto do seu teste técnico?
In which type of projects have you worked before. What was your main contribution to those projects.
Sql query to join two tables and group
Viewing 1701 - 1710 interview questions