Graduate Software Engineer Interview Questions

4,497 graduate software engineer interview questions shared by candidates

1. Merge 2 sorted arrays 2. Find the length of the shortest substring whose combination of anagrams would result in the initial string. Ex: 'abbaab' could be done from anagrams of 'ab' or 'ba', so length 2. 'abbbabbba' can be done from anagrams of 'abb' so length 3 and so on. 3. One array of size n with index showing task id and value showing task memory taken to process task. Another array of size n with index showing task id and value showing task type. System can execute a task in 1 time, or two tasks of the same type in paralel in 1 time, as long as the sum of their memory taken is less than maximum memory. Given these details for a list of tasks, find the most efficient way to execute them and return number of times it takes.
avatar

Fresh Graduate Software Engineer

Interviewed at Smarkets

3.5
Sep 16, 2023

1. Merge 2 sorted arrays 2. Find the length of the shortest substring whose combination of anagrams would result in the initial string. Ex: 'abbaab' could be done from anagrams of 'ab' or 'ba', so length 2. 'abbbabbba' can be done from anagrams of 'abb' so length 3 and so on. 3. One array of size n with index showing task id and value showing task memory taken to process task. Another array of size n with index showing task id and value showing task type. System can execute a task in 1 time, or two tasks of the same type in paralel in 1 time, as long as the sum of their memory taken is less than maximum memory. Given these details for a list of tasks, find the most efficient way to execute them and return number of times it takes.

The input is an NxN array of integers representing depth level (higher value = higher depth). With an input of the form string[N], return an array of the same format with all 'cavities' replaced with an 'X' character, where a cavity is a local minima - all surrounding values (non-diagonal) must be a lower depth.
avatar

Graduate Software Developer

Interviewed at Smarkets

3.5
Nov 6, 2017

The input is an NxN array of integers representing depth level (higher value = higher depth). With an input of the form string[N], return an array of the same format with all 'cavities' replaced with an 'X' character, where a cavity is a local minima - all surrounding values (non-diagonal) must be a lower depth.

Viewing 2351 - 2360 interview questions

Glassdoor has 4,497 interview questions and reports from Graduate software engineer interviews. Prepare for your interview. Get hired. Love your job.