The Lottery question - given a number N, write a class that allows a user to call getK and receive K different balls (with different numbers), chosen randomly from the relevant balls that are still in the system (not previously returned to customer). All numbers are unique, and should be from 1 to N.
Graduate Software Engineer Interview Questions
7,623 graduate software engineer interview questions shared by candidates
Explain the concept of multiple inheritance and describe how it relates to Java.
One of the test questions was calculating a statistic after creating combinations. I cannot go more into depth without giving out the test question.
Codility's 1st question
Tell me about a time questions
The first question was: Given a file containing the description of seats on a plane, implement an algorithm that finds the cheapest N consecutive seats on the same row. The input file give the position of each seat, wether they are already taken and the price of the seat. Additionally, the value of N is provided.
Talk about a time you had to deal with confrontation in a development team.
Design a picture-sharing app.
A review on the CV and some few technical questions
For the technical test, i remember one task, so.. You have an array of strings which describes rectangles as (A, B, C, D) values A ___________ | | | | D | |B | | | | ------------------ C Implement method to recognize 3 kind of figures: - squares (each side equals to others, A = B = C = D) - rectangles (each side equals to the opposite A = C, B = D) - and other figures (A != B != C != D) So the output must the 3 numbers of figures counters separated with space symbol. Input data: { "36 30 36 30", "15 15 15 15", "46 96 90 100", "86 86 86 86", "100 200 100 200", "-100 200 -100 200" } Output data: 2 2 2 Maybe that was a little joke which spreads a bit of my time, but the main thing I founded with the output data - the answer is incorrect, because if we look at input data and simply count figures, we will have 2 squares, 3 rectangles and 1 other figure. However, I made correct implementation, which had output if "2 3 1". HackerRank platform didn't recognize my answer as correct. Second task I made correct and HackerRank recognize it as fully completed, and the third one I made mostly complete. Recruiter answered me that I'm confirmed for the next round which would be Phone Interview. I had 2 days to prepare, and made a list of questions (made search on this site) and all of them was on the interview: 1. What do you know about Booking.com? Do you know the business model of Booking.com? How does Booking get their revenue? 2. What are my motivations for applying? 3. Illustrate both my academic and working background. 4. What is my expectation of the position. 5. What can be improved in the Booking app and site?
Viewing 571 - 580 interview questions