Have you ever published any open source code?
Graduate Software Developer Interview Questions
4,963 graduate software developer interview questions shared by candidates
Tell us about yourself?
Where do you see yourself in 5 years?
He asked on how would you extend two or more classes in one class.
He asked how to read and/or write a file in java. Not for the code but a general idea.
Explain a technical concept as if we are none technical.
Describe a time when you did something to make someone happy. Explain why you think that action made the person happy.
HackerRank Challenge Question 1: For a set of numbers (e.g. {1, 2, 2, 2, 3, 4, 1, 5, 1, 6}) the degree of the set is the largest number of occurences of the same element. In the given example the degree is 3 as both element 1 and element 2 occur 3 times each. Given a set of numbers, return the length of the smallest subset that has the same degree as the original set. For the given example, the two subsets with the same degree as the original set are {1, 2, 2, 2, 3, 4, 1, 5, 1} and {2, 2, 2}. The first subset is 9 elements long and the second one is 3 elements long, so the program should return 3. HackerRank Challenge Question 2: Given the length of a path and a set of back and forth runs on this path, return the position on the path that is visited most often at the end of all runs. If there are multiple positions that meet this criterion, return the lowest position. Example: Path length: 9 Path positions: 1 2 3 4 5 6 7 8 9 Set of runs: {2, 7, 3, 9, 1, 5} The set of runs translates to: start at 2, run to 7; start at 7, run to 3; start at 3, run to 9; start at 9, run to 1; start at 1, run to 5. Note that each position is visited once when the run ends there and once when the run starts there, so for example when you run from 2 to 7 and then from 7 to 3, you have visited 7 twice. Given the above example, positions 3, 4 and 5 would all have been visited 5 times, which is the largest number of visits, but the program should return the lowest such positions, which is 3.
Write a function which searches an array of integers and returns a boolean if any two sum to a specificied integer
Technical: - Use sets for a Medium leet code question in a pseudo-code format Interview: - When have you previously had to showcase upstanding morals/ethics?
Viewing 591 - 600 interview questions