Deloitte NLA | Analyst Trainee | Fresher | NLA 3.0 | March 2024 | Off-Campus
Anonymous User
233

Status: Fresher 2024, BTech CSE Tier 3
Position: Analyst Trainee at Deloitte
Time Taken: From December 2023 to March 2024
Opportunity: Off-Campus
CTC: INR 4.5LPA


Interview Process

  1. Applying on the Deloitte NLA3.0 portal:- website link
  2. Resume based shortlisting
  3. Online Assesment
  4. Online Interview

Online Assesment

This test was conducted around mid of Feb 2024
Platform Used: Hirepro
TEST DURATION: 90 Minutes
NUMBER OF QUESTIONS:

  • 65 questions in the Multiple-Choice Questions (MCQ) format
  • 2 questions in the Live Programming/Coding format

4 Sections:

  1. English (13q)
  2. Aptitude (22q)
  3. CS Fundamentals(30q)
  4. Coding(2q)

Q.1 To print from n to 1 (reverse order)

def solve(n: int) -> void:
	for i in range(n,0,-1):
		print(i, end=" ")

Q.2 Given time in 12 hr clock format, find the smallest angle between the hour hand and minute hand

def solve(h: int, m:int) -> int:
	hour_angle = 0.5 * (h * 60 + m)
    minute_angle = 6 * m
    angle = abs(hour_angle - minute_angle)
    angle = min(360 - angle, angle)
	return angle

Online Interview

Platform Used: Hirepro
After 15 days, i have received the interview mail.
I searched on the deloitte archives for this role the final interview round is a mix up of Technical and HR round. I was interviewed by a Senior Product Manager.

It started with my basic introduction and then she asked questions about my skillset which includes ai, ml & python and secondly about my projects related to tech stack, difficult phase, need and it's outcome.
After that, she moved onto the coding part, it starts with the time complexity of all searching algorithms and finally ended with the practical implementation of Bubble sort. I explained both the brute as well as optimal approaches for the same.
Finally, as the time was still remaining she proceeded with a puzzle kind of question, in which i was told to answer that how many auto-rickshaws are present in your city.
My Experience: Overall, the experience was good. If one gone through the archives and previous interview experiences, then he/she will be good to go.


Final Verdict

Rejected


If you have found this post helpful, kindly give it a thumbs up👍and do share.
Also, please free to ask any questions to follow.

Comments (0)