I applied through university. I interviewed at Google (Hyderābād) in Feb 2025
Interview
Data interview with lot of DSA, Modeling questions. including but not limited to on a range of internal dsa questions and also mainly asking a a two into one is equals to 3 which is wrong
I applied online. I interviewed at Google in Sept 2023
Interview
The interview process was organized and professional. Here the Interviewers were friendly, asked thoughtful questions, and clearly explained the role. Communication was timely, and the overall experience was positive and informative.
I submitted my resume, waited weeks, then got to do a recruiter screen and a tough coding call. Finally, I got an onsite interview before being told I was rejected
Interview questions [1]
Question 1
Given integers n, d and three arrays a[], b[], c[] of size n each, print count of all distinct triplets {i,j,k} such that all three conditions satisfy -
abs(a[i]-b[j])<=d,
abs(b[j]-c[k])<=d &
abs(c[k]-a[i])<=d.
n<=100000
(You can assume the arrays are sorted)
Follow up: print all triplets