I applied through university. The process took 2 months. I interviewed at TAAZAA (Noida) in Oct 2023
Interview
Our on-campus drive consisted of four rounds:
Aptitude + Reasoning + Coding Questions
This round included a mix of aptitude and reasoning questions, along with two coding problems to assess logical thinking and programming skills.
Technical Round 1
This round focused on technical knowledge and problem-solving abilities. Questions were primarily based on core subjects and technical skills relevant to the job role.
Technical Round 2
In this round, advanced technical questions were asked to further evaluate in-depth knowledge and expertise in specific areas. This round often included problem-solving scenarios and discussions about previous projects.
HR Interview
The final round was an HR interview, which included questions to assess cultural fit, communication skills, career aspirations, and overall personality.
Each round was designed to comprehensively evaluate different aspects of the candidates' abilities and potential for the role.
Interview questions [1]
Question 1
DSA Question:
1. Find the Middle of a Linked List
Given a singly linked list, write a function to find the middle of the list. If there are two middle nodes, return the second middle node.
2. Detect a Cycle in a Linked List
Write a function to detect if a cycle exists in a linked list. If a cycle exists, return true; otherwise, return false.
3. Merge Two Sorted Arrays
Given two sorted arrays, write a function to merge them into a single sorted array.
4. Binary Search in a Rotated Sorted Array
Given a rotated sorted array, write a function to search for a target value. If found, return its index; otherwise, return -1.
5. Find the Kth Largest Element in an Array
Given an array of integers, write a function to find the kth largest element in the array.