Sr Software Engineer Interview Questions

71,597 sr software engineer interview questions shared by candidates

Why is the Single Responsibility Principle important? What is Inversion of Control? How does that relate to dependency injection? How does a 3 tier application differ from a 2 tier one? Show me a portfolio of all the applications you worked on, and tell me how you contributed to design them. What are some alternate ways to store data other than a relational database? Why would you do that, and what are the trade-offs?
avatar

Senior Software Engineer

Interviewed at Whole Foods Market

3.6
Nov 20, 2018

Why is the Single Responsibility Principle important? What is Inversion of Control? How does that relate to dependency injection? How does a 3 tier application differ from a 2 tier one? Show me a portfolio of all the applications you worked on, and tell me how you contributed to design them. What are some alternate ways to store data other than a relational database? Why would you do that, and what are the trade-offs?

Very easy - 2 puzzles , finding socks pair, hat problem . 1. given an array of positive and negative numbers form an arrray with alternate +ve and -ves 2. replace every element in an array with multiplication of all others without using division operator
avatar

Senior Software Developer

Interviewed at Times Internet

3.6
Aug 20, 2017

Very easy - 2 puzzles , finding socks pair, hat problem . 1. given an array of positive and negative numbers form an arrray with alternate +ve and -ves 2. replace every element in an array with multiplication of all others without using division operator

1. experiences. 2. a graph related question as follows, later on I found out a tricky solution online. //problem: count islands in a graph // // A graph is a collection of nodes that are connected to each other with // edges. There are N nodes, numbered 1..N. and M edges. Each edge connects // two different node numbers. Here is an example graph with N= 8, M=6: // // 1---2---3 6 8 // | | | // 4---5 7 // // The goal is to count the number of islands in the graph. An island is a // graph of nodes that are connected only to themselves and not to any of the // other nodes in the graph. The above example has three islands. As a node // not connected to anything at all is regarded as it own island. // Implement the function IslandCount() below. The values N and M are passed // in, along with the array E which contains pairs of node numbers that are // connected by edges. The above example has E equal to // // E = { 1,2,2,3, 1,4, 2, 5, 4,5, 6, 7} // // IslandCount() should return the number of islands in the graph.
avatar

Senior Software Engineer

Interviewed at Nuro

4.2
Jul 2, 2019

1. experiences. 2. a graph related question as follows, later on I found out a tricky solution online. //problem: count islands in a graph // // A graph is a collection of nodes that are connected to each other with // edges. There are N nodes, numbered 1..N. and M edges. Each edge connects // two different node numbers. Here is an example graph with N= 8, M=6: // // 1---2---3 6 8 // | | | // 4---5 7 // // The goal is to count the number of islands in the graph. An island is a // graph of nodes that are connected only to themselves and not to any of the // other nodes in the graph. The above example has three islands. As a node // not connected to anything at all is regarded as it own island. // Implement the function IslandCount() below. The values N and M are passed // in, along with the array E which contains pairs of node numbers that are // connected by edges. The above example has E equal to // // E = { 1,2,2,3, 1,4, 2, 5, 4,5, 6, 7} // // IslandCount() should return the number of islands in the graph.

Viewing 691 - 700 interview questions

Glassdoor has 71,597 interview questions and reports from Sr software engineer interviews. Prepare for your interview. Get hired. Love your job.