JS core concepts like : event loop, execution stack, timeout based problems
Software Development Engineer I Interview Questions
1,214 software development engineer i interview questions shared by candidates
How would you implement TinyURL?
How do You handle relocation
Some coding questions
coding test: Give a linked list, what is the most efficient way to find the middle node?
General questions nothing fancy that I recall.
Some other standard questions: 1. Given a BST and a range, print all the numbers that comes in that range. Ex: the function will be something like: print(node * head, int x, int y); It has to print all numbers within the rage x&y 2. Print max height (level) of a binary search tree. 3. Given an array of integers, determine the sub array which makes max sum. 4. Find LCA of the binary search tree.
Imagine there are n cities (say c1, c2....cn) connected circularly and each of them has a petrol bunk (say p1,p2...pn). The distance between each cities are d1, d2...dn. Here 1unit of petrol will be used to travel 1unit of distance. You can start from any city so that you can go through all of them and reach the same location (city). Find from where we've to begin the navigation. FOR EXAMPLE: c1-->c2-->c3-->c1 p1 has 2ltr p2 has 10ltr p3 has 4ltr and the distance between each cities: c1<-->c2: 3 c2<-->c3: 2 c3<-->c1: 8 Here we've to start at c2 in-order to come back again to the same place. Explain the logic to find whether u can come back to the same location. Find where to start. Write a program for the same. Write test cases for the same.
You have a string "CAT" fin its anagram from the given set of strings ACT, TAC, DOG, TCA, BOB, JUM Ans: ACT, TAC, TCA
Extract a list of numbers from a list of strings such as ["A2D", "1B", "3F5", "67FE2", "AA"] such that the final result would be [2, 1, 3, 5, 67, 2].
Viewing 211 - 220 interview questions