Ho presentato la mia candidatura tramite l'università. La procedura ha richiesto un giorno. Ho sostenuto un colloquio presso Bay Systems Consulting (Nuova Delhi) nel mese di nov 2024
Colloquio
The 1st round involves an online assessment (OA) with basic DSA and OS questions, including MCQs and coding. The 2nd round is a technical interview focusing on solving medium to advanced DSA problems efficiently.
Domande di colloquio [1]
Domanda 1
### 3Sum
The 3Sum problem requires finding triplets in an array that sum to a target (typically zero). Common approaches include sorting and using two-pointer techniques for \(O(n^2)\) efficiency.
### Recurrence Equation
Recurrence equations define problems in terms of smaller subproblems, often used in dynamic programming or divide-and-conquer, such as \( T(n) = T(n/2) + O(n) \).