The interview took place at career fair and the recruiter was nice and straight forward. He was reviewing interviewees resumes and ask us to elaborate about the projects on the resume.
Interview questions [1]
Question 1
Name your favorite algorithm an explain how it works.
I applied through university. The process took 1 week. I interviewed at L3Harris (Palm Bay, FL) in Oct 2022
Interview
one round over the phone, very basic programming questions. Asked about rtos for embedded systems and Java basics. Mostly topics from introductory comp sci classes. "why use a for loop instead of a while loop"
Interview questions [1]
Question 1
Describe the fundamentals of object oriented programming
I applied through an employee referral. The process took 2 weeks. I interviewed at L3Harris (Waterdown, ON) in Feb 2024
Interview
Got the interview through a referral. Applied on the company website then got email from recruiter.
Had an initial call with a hiring manager describing general job experience, going over resume, discussing what I'm looking for etc.
Had a follow up behavioral and technical interview with actual manager of team and some team members.
Interview questions [1]
Question 1
countingBits problem:
given a number, write C code that detects how many bits would be set in the binary representation of the number
What are the issues with the below code:
int calcSquare(volatile int* num){
return *num * *num;
}