7 notes · co-occurs with 2 tags · last updated May 18, 2026

Notes tagged #interview
01
Behavioral interviews
Behavioral interview is a stage of the job interview process in which candidates are asked to describe specific situations from their past experiences to demonstrate their skills, abilities, and character traits.
May 18, 2026
Interview_preparation
02
Deep Learning questions
Q: What is the number of the parameters of convolution? A: (3*3*3 + 1) *3 Q: We have a multiclass neural net, what should we change in it, if we want to make it multilabel? A: Change the output activation function from softmax to sigmoid and the loss function from categorical cross-entropy to binary...
May 18, 2026
Interview_preparation
03
General ML questions
Model fundamentals Q: Is it possible to build a linear model to predict the XOR operation? A: No.
May 18, 2026
Interview_preparation
04
Leetcode code templates
Two pointers: one input, opposite ends def fn(arr): left = ans = 0 right = len(arr) - 1 while left < right: # do some logic here with left and right if CONDITION: left += 1 else: right -= 1 return ans Two pointers: two inputs, exhaust both def fn(arr1, arr2): i = j = ans = 0 while i < len(arr1...
May 18, 2026
Interview_preparation
05
ML System design
ML System Design interview is a stage of the job interview process focused on assessing a candidate’s ability to design and implement machine learning systems at scale.
May 18, 2026
Interview_preparation
06
Questions to ask the interviewers
During the interview process, it is important not just to answer questions but also to ask your own questions.
May 18, 2026
Interview_preparation
07
Statistics questions
Q: You have three independent binary classifiers with 80% f1 score.
May 18, 2026
Interview_preparation