Tell me about a time you overcame an obstacle.
Software Development Intern Interview Questions
2,990 software development intern interview questions shared by candidates
They asked me questions surrounding Amazon LPs fo the behaviorals.
Given n the height of a binary tree return the binary tree
The Second question was something like this: In an Array there are some numbers: numbers that are considered true values, a number that is the the some of those true values and outlier/s. write an algorithm to find the biggest outlier (there might be 2 outliers in the array).
How to join two lists in cpp.
Design an in-memory file system supporting ls, mkdir, addContentToFile, and readContentFromFile.
Expect lots of questions about examples in your working or study life where you've enacted one of the Amazon leadership priniciples
They asked about yourself and data structure questions
Two DSA questions (two pointers problem and a binary tree problem)
Q2 - Amazon is developing a new word game where players rearrange letters within words while maintaining the structure of the phrase. The game has an interesting scoring system based on valid arrangements. Game Rules:1. Players receive a phrase where words are separated by single spaces2. Players can shuffle letters within each word, but can't move letters between words 3. Word order must stay the same4. The goal is to find all possible unique arrangements For example, if a player gets the phrase "code jam": - They can create "eocd maj" (valid - letters shuffled within each word) - They cannot create "jam code" (invalid - word order changed) - They cannot create "codj ame" (invalid - letters moved between words) Challenge: You're part of the game development team, and you need to create a function that calculates how many different valid arrangements are possible for a given phrase. Since this number can be very large, return the result modulo 10^9 + 7. Can you help create an algorithm that counts all possible valid arrangements?
Viewing 1221 - 1230 interview questions