I applied through college or university. The process took 3 days. I interviewed at Adobe (Bengaluru) in Aug 2025
Interview
It started with an introduction, then proceeded to some DSA questions. We then discussed some of my projects, and the session concluded with some questions from me. It lasted around 40 minutes.
Interview questions [4]
Question 1
You are managing a system that needs to execute n distinct processes, labeled from 0 to n - 1.
You're given a list called dependencies, where dependencies[i] = [a, b] means that Process a depends on Process b, i.e., Process b must complete before Process a can begin.
Your task is to determine whether it is possible to execute all processes given their dependencies.
For example, the pair [0, 1] indicates that Process 0 depends on Process 1, meaning Process 1 must be executed before Process 0 can begin.
Return true if all processes can be executed successfully without any circular dependencies. Otherwise, return false if there is a cycle that makes it impossible to resolve all process dependencies.
numProcesses = 3
dependencies = [[1, 0], [2, 1]]
numProcesses = 3
dependencies = [[0, 1], [1, 2], [2, 0]]
I applied through college or university. The process took 5 days. I interviewed at Adobe (Vāranāsi) in Aug 2024
Interview
The first round is a test which contains MCQs on ML, DL, etc followed by a single round of interview, in which they mainly go through your projects in deep, grilling you with the methodologies, ur approach, fundamentals, thinking, etc
Interview questions [1]
Question 1
I was asked two projects, one on Computer Vision, another one on Data Science, they went deep into the fundamentals, the things i applied, reasons behind them, any alternate approaches, analogies etc
The interview process was very good. there were 3 roundes for technical consultant profile. and I have cleared screening and written round without any issue but in the finel round interviewer asked bit tough questions.
Interview questions [1]
Question 1
interviewer asked javascript output based questions