What is your favorite Google product?
Senior Software Engineer Interviews
Senior Software Engineer Interview Questions
"Senior software engineers are the most experienced member of a software team and usually carry the most responsibility and authority of that team. Because of this, interviews will be designed to find candidates who have expert knowledge of the field and years of experience as a software engineer. Expect to be asked tough technical questions and to give examples of previous projects that you have worked on."
67,420 senior software engineer interview questions shared by candidates
Nothing was too difficult, but the process is bad because they won't tell you why they won't continue with you.
DSA - Scenaria based, priority quesue was to be used with creating classes
Imagine you are given 10,000 files each containing 1 Million integers. I would you sum all of them and give the final result? ---> Interviewer wanted to test scalability, distributed concepts. He has written the basic code and wanted to improve upon that. Here's the basic code. public getSum(String[] file_names) { int sum = 0; for(String f: file_names) { sum = sum + sumOfFile(f); } return sum; } Questions: What's wrong with above code? Ans: Integer overflow How would you implement sumOfFile? What if 'sumOfFile' takes lot of time to finish computing? How do you fasten the program?
4. Randomly Pick n elements from a given array of m elements.
Did you write an application using our api?
Design, coding and behavior
How Spring Boot use in application and benefits.
balloon popping algorithm implementation for high scalability
Explain the difference between Factory and Abstract factory pattern
Viewing 2081 - 2090 interview questions