Given an array of numbers where every number >= 0. The items need to be connected. If no answer exists return maxInt example 1: arr = [1, 4, 45, 6, 0, 19] target = 51 output -> 3 because sum([4, 45, 6]) > 51 example 2: arr = [1, 10, 5, 2, 7] target = 9 output -> 1 because sum([10]) > 9
Senior Developer Interview Questions
29,999 senior developer interview questions shared by candidates
Years of experience, architecture, best practices
Why would you want to work here
How do you develop a test-driven design Task?
1. Find missing element in 2 arrays. a={1,2,3,4}, b={1,2,4}. Ans=3 2. Count no of ON bits in a number. a=3 Ans=2 3. Print all permutations of string. s="12". Ans=12,21. - Use dynamic programming 4. Find 2 strings are anagrams, any other method than sorting?
Name most useful oracle hints
Have you worked with SSIS package? Do you know NoSQL? Have you worked on any new technologies? Do you have experience in Angular or react or redux? Have you worked on any cloud plateform - Azure, AWS or Google? What services you have used?
What is JS `this` ?
Live coding test: JS fibonacci(n) function start from 0 fib(0) => 1
Tell me one crazy thing you've done
Viewing 291 - 300 interview questions