Explain the architecture diagram for uber.
Lead Developer Interview Questions
3,913 lead developer interview questions shared by candidates
Some Leetcode medium questions only and basic LLD and HLD concepts.
add method of ArrayList, find a file recursively, normalization, basic linked list operations, hashmap
How soon can you join us?
You never worked in Business Process Management domain. How soon will you be able to be up to speed?
Typical softball Android development questions.
Mostly revolved around my technical experience, overall it was good.
Conte sobre sua experiência em reestruturação de sistemas/escalabilidade. Descreva um desafio técnico complexo que você resolveu.
How do internet packets get to their destination?
/* you are given N courses, from 0 to N-1. prerequisites[i] = [ai, bi], you must complete course bi before taking course ai. Return true if you are able to complete all the tasks. Else return false. Example 1: Input: numCourses = 2, prerequisites = [[1,0]] Output: true Explanation: There are a total of 2 courses to take. To take course 1 you should have finished course 0. So it is possible. Example 2: Input: numCourses = 5, prerequisites = [[1,0], [2, 0], [4, 3]] Output: false Explanation: There are a total of 2 courses to take. To take course 1 you should have finished course 0, and to take course 0 you should also have finished course 1. So it is impossible. */
Viewing 3581 - 3590 interview questions