Questions on security and a programming question
Staff Software Engineer Interview Questions
2,608 staff software engineer interview questions shared by candidates
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
1. What J2EE patterns do you know?
They asked about some projects that I mentioned in my resume.
Bloom filters in hive or spark
Explain how some data structure works
code to Order the threads code to deadlock the threads code to implement custom Lock api code to find indexes of pair of numbers in given array whose sum is equal to given number code to find the palindrome numbers in given array provide the design/technical stack to develop a ecommerce website
Design and implementation of a distributed application
NDA
Viewing 411 - 420 interview questions