I applied online. The process took 2 weeks. I interviewed at SAP in Apr 2024
Interview
- Interviewer introduces himself
- Explains application process (2 interviews, 2nd interview is 2 1/2 h?)
- Explains orga structure (different teams + where they are located)
- Explains what the teams actually do
- Interviewer questions
- Interviewee questions (regarding position)
- Says until when one can expect feedback (regarding the 2nd round)
Interview questions [1]
Question 1
- Tell me about your previous projects
- Are these things applicable in our projects?
- What problems do you see if we were to implement your solutions?
- Do you have experience in automatic testing?
- Code challenge:
c1 = [1, -2, 3, 5, 6, 765, 23, 867, 23]
c2 = ["sunday", "b", "asdf", "sunday", "sunday", "sunday", "af", "monday", "sunday"]
#WHAT TYPE of "data structure" is this data above?
#select avg(c1*c1) from tab where c2='sunday'
# Implement the line above in python
# WHAT COULD GO WRONG in your solution (SPOILER: DivBy0)?
# What would a db return in case there's an (divby0) error?