First phone interview coding question: Write a function that splits a filename of the form "hello#123"
Software Development Engineer I Interview Questions
1,214 software development engineer i interview questions shared by candidates
Who is your customer?
1. Longest palindromic sub-string 2. check if two linked lists merge a some point and report the merging node 3. 2 similar questions that could be solved using binary search 4. convert a BST to DLL 5. A DP question : minimum number of jumps to reach the end 6. A design based questions: Make a software to schedule appointments. Not much was expected here, just discussed some ideas of possible algos and how I would implement 7. Discussion on OOPS & OS concepts
Group interview project
Tech stack from the previous company
you are given an array [1,5,3,6,2,4,4,7] now print all the pairs whose sum is equal to 8, for example 1,7 4,4 5,3 6,2
You're converting a string (s1) into another (s2) by changing the characters in s1. You can do add/delete/replace the characters of s1 to get s2. The cost of any of those operation for a character is 1. Find the minimum cost to convert s1 into s2. Write program and test cases for the same. For example: Convert "Hi" into "Hey". This would require minimum two cost. 1. Replace 'i' with 'e' in s1 2. Add 'y' to s1. Now we've s2.
Please give us an overview of your background experience.
What are Inner / Outer Joins in SQL? How are they different?
Coin weight puzzle. find out which coin bag is heavy.
Viewing 101 - 110 interview questions