General/standard interview questions, a bit of a deep dive during the panel interview which included system design and code review (from the ByteBoard exercise) sections.
Software Engineer Staff Interview Questions
2,548 software engineer staff interview questions shared by candidates
They asked both technical details regarding the coding exercise, and process questions during behavioral. The conversation flowed naturally.
they asked how would you handle this situation type of questions, nothing very difficult xxxxxxxxxxxxxxxxxxxxxxxxx xxx xxxxxxxx cccccccc cc c ccc cccccccccc
when the application become very slow, what the problem it maybe.
No specifics, but there were two coding questions in the loop - one medium and one hard. The DoorDash interview guide and DoorDash tagged LeetCode questions should prepare you well.
What is your weakness?
Design BookMyShow kind of app.
Questions on security and a programming question
Variant of LeetCode 1169. Invalid Transactions and then write a Unit Test to verify the solution. /* Fraud Detection: Find Suspicious Transactions A bank wants to detect fraudulent transactions. A transaction is suspicious if: - The same user makes two transactions within 100 seconds of each other. - A single transaction amount exceeds $10,000. Return a list of users who have made fraudulent transactions. Example Input: transactions = [ { "userId": "Alice", "amount": 5000, "timestamp": 10050 }, { "userId": "Alice", "amount": 2000, "timestamp": 10200 }, { "userId": "Bob", "amount": 12000, "timestamp": 10400 }, { "userId": "Alice", "amount": 6000, "timestamp": 10700 } ] Output: ["Alice", "Bob"] */
A problem to solve and code : A pagination problem having an array of a given length and a page size and page number will be provided you. You are required to fetch that page array elements from the array
Viewing 391 - 400 interview questions