Software Development Internship Interview Questions

205 software development internship interview questions shared by candidates

I was given a scenario in which I was a restaurant manager and I had to create a software for managing reservations. I had to tell him the use cases and also which classes would I be using and I was told to code an example entity class.
avatar

Software Development Engineer Internship

Interviewed at Amazon

3.5
Apr 25, 2012

I was given a scenario in which I was a restaurant manager and I had to create a software for managing reservations. I had to tell him the use cases and also which classes would I be using and I was told to code an example entity class.

Given three strings s1, s2 and s3. Write a function that checks whether s3 is an interleaving of s1 and s2. s3 is said to be interleaving s1 and s2, if it contains all and only characters of s1 and s2 and order of all characters in individual strings is preserved. Input: s1 = “AB”, s2 = “C”, s3 = “ACB”, Output: true s3 has all characters of s1 and s2 and retains order of characters of s1. Input: s1 = “XXY”, s2 = “XXZ”, s3 = “XXXXZY”, Output: true The string BBAZXY has all characters of the other two strings and in the same order. Input: s1 = “YX”, s2 = “X”, s3 = “XXY” Output: false XXY is not interleaved of YX and X. The strings that can be formed are YXX and XYX
avatar

Software Development Internship

Interviewed at Tekion

4.3
Oct 10, 2024

Given three strings s1, s2 and s3. Write a function that checks whether s3 is an interleaving of s1 and s2. s3 is said to be interleaving s1 and s2, if it contains all and only characters of s1 and s2 and order of all characters in individual strings is preserved. Input: s1 = “AB”, s2 = “C”, s3 = “ACB”, Output: true s3 has all characters of s1 and s2 and retains order of characters of s1. Input: s1 = “XXY”, s2 = “XXZ”, s3 = “XXXXZY”, Output: true The string BBAZXY has all characters of the other two strings and in the same order. Input: s1 = “YX”, s2 = “X”, s3 = “XXY” Output: false XXY is not interleaved of YX and X. The strings that can be formed are YXX and XYX

Viewing 81 - 90 interview questions

Glassdoor has 205 interview questions and reports from Software development internship interviews. Prepare for your interview. Get hired. Love your job.