I applied online. I interviewed at Google (New York, NY) in Apr 2020
Interview
interview process is quite good and their questions are little tricky and the data structures and algorithms part is most important trees graphs were asked in the hiring process so prepare yourself for the technical rounds as well as interview rounds
Interview questions [1]
Question 1
data structures and algorithm questions were asked in the interview
I applied online. I interviewed at Google (Bengaluru) in Jan 2022
Interview
Two rounds of interview with coding testing thinking skills.
Difficulty level was high.
Thoughtful process.
More of data structures questions.
Algorithms and Design patterns included.
Object oriented programming questions were asked. This was the hiring process followed. Managerial rounds were there, following
Interview questions [1]
Question 1
Data structures and algorithms and problem solving
Phone call and asked me three questions. I told the interviewer I use java. So the interviewer ask me about the basic java questions and then ask me oop and coding.
Interview questions [1]
Question 1
/**
* Given an array of jobs with different time requirements,
* where each job consists of start time, end time and CPU load.
* The task is to find the maximum CPU load at any time if all jobs are running on the same machine.
* Input: jobs[] = {{1, 4, 3}, {2, 5, 4}, {7, 9, 6}}
* Output: 7
*/