Sr Developer Interview Questions

97,963 sr developer interview questions shared by candidates

Implement a class called AirMap that has two methods: 1. add_route(start, destination) - adds ONE WAY connecting flight from one airport to another 2. print_all_routes(start, destination) - prints all possible routes from start to destination Given the following routes, print all possible routes between the airport C and D: A -----> B B -----> A A -----> C C -----> A A -----> D D -----> A B -----> C C -----> B B -----> D D -----> B Expected Output: C,A,B,D C,A,D C,B,A,D C,B,D
avatar

Senior Software Engineer

Interviewed at Bloomberg

4
Nov 1, 2021

Implement a class called AirMap that has two methods: 1. add_route(start, destination) - adds ONE WAY connecting flight from one airport to another 2. print_all_routes(start, destination) - prints all possible routes from start to destination Given the following routes, print all possible routes between the airport C and D: A -----> B B -----> A A -----> C C -----> A A -----> D D -----> A B -----> C C -----> B B -----> D D -----> B Expected Output: C,A,B,D C,A,D C,B,A,D C,B,D

Given a list of versions (in string format). The versions can have invalid characters (requires cleaning). Print the list in sorted order of increasing versions. Input: ["1.2.34", "$5.j8", "3.4#", "3.45"] output: 1.2, 3.4, 3.45
avatar

Senior Software Engineer

Interviewed at Informatica

4
Apr 25, 2018

Given a list of versions (in string format). The versions can have invalid characters (requires cleaning). Print the list in sorted order of increasing versions. Input: ["1.2.34", "$5.j8", "3.4#", "3.45"] output: 1.2, 3.4, 3.45

Viewing 191 - 200 interview questions

Glassdoor has 97,963 interview questions and reports from Sr developer interviews. Prepare for your interview. Get hired. Love your job.