Resume review, technical short answer questions, leetcode easy and medium.
Software Engineer Intern Interview Questions
9,360 software engineer intern interview questions shared by candidates
Q: What test cases can you come up with?
LRU Cache ( refer the leet codes).
Interview questions are team dependent but for the team I interviewed for: What is something that you dread/dislike while coding? I was told that Round 2 of the interview (technical round) did not involve LeetCode-style questions or coding at all—more so picking your brain about your technical skills and thinking.
Write a C function to isolate n bits at offset k.
Traverse a Matrix in Clockwise fashion and print all the elements
Given an n*m grid, you enter the grid at some cell in the first row and leave the grid at some cell in the nth(last) row. Every cell has four directional parameter, indicating whether the cell in that direction can be visited. Print the Shortest possible path.
Write a function calculate the sum of numbers written in a string separated by a comma.
Problem 1: Ball Collisions Goal: Count how many times a specific ball at position x collides with others. Logic: A collision happens if a faster ball is behind a slower one Check balls behind x: If any ball to the left of x is faster than x, it will hit x. Check balls ahead of x: If x is faster than any ball to its right, x will hit them.
find a pattern that matches in string.
Viewing 2991 - 3000 interview questions