SRDT interview experience Real time questions & tips from candidates to crack your interview

Software Engineer Trainee

SRDT
upvote
share-icon
2 rounds | 4 Coding problems

Interview preparation journey

expand-icon
Journey
I have been preparing for the interview for the last three months and have been practicing the basic DSA questions, and questions related to my project for the interview.
Application story
One day I was scrolling through my LinkedIn DMS, and I jumped into one of the posts from my friend mentioning the off-campus drive for SRDT. I quickly applied through the provided link for this job.
Why selected/rejected for the role?
I feel I was rejected for the role because I wasn't able to communicate properly during the interview.
Preparation
Duration: 3 months
Topics: Data Structures, DBMS, OOPS, Algorithms
Tip
Tip

Tip 1: Be clear with your basics.
Tip 2: Have confidence in you.
Tip 3: Always be ready for feedback.

Application process
Where: Linkedin
Eligibility: 6 CGPA
Resume Tip
Resume tip

Tip 1:Write what you can deliver during your interview 
Tip 2:Mention at least one project in trending technology

Interview rounds

01
Round
Easy
Online Coding Test
Duration60 minutes
Interview date10 Dec 2023
Coding problem2

Timings: 10:00 AM.
Environment was good.
The platform was very user friendly.

1. It was a two-sum question wrapped up in a story.

Easy
10m average time
90% success
0/40
Asked in companies
Chegg Inc.FacebookAmazon

You are given an array of integers 'ARR' of length 'N' and an integer Target. Your task is to return all pairs of elements such that they add up to Target.

Note:

We cannot use the element at a given index twice.

Follow Up:

Try to do this problem in O(N) time complexity. 
Try solving now

2. Check given Number is Prime or Not.

Easy
15m average time
80% success
0/40
Asked in companies
HSBCSalesforceDeutsche Bank

You are given a positive integer ‘N’. Your task is to print all prime numbers less than or equal to N.

Note: A prime number is a natural number that is divisible only by 1 and itself. Example - 2, 3, 17, etc.

You can assume that the value of N will always be greater than 1. So, the answer will always exist.

Problem approach

The isPrime function takes an integer n as input and returns true if n is a prime number; otherwise, it returns false.
If the number is less than or equal to 1, it immediately returns false because 0 and 1 are not prime numbers.
It iterates from 2 to the square root of n (i * i <= n) and checks if n is divisible by any number in this range.
If n is divisible by any number, it returns false because it means the number has divisors other than 1 and itself.
If no divisors are found, it returns true, indicating that the number is prime.
In the main function, it prompts the user to enter a number, checks if it's prime using the isPrime function, and displays the result.
This code uses a basic method to determine if a number is prime or not by checking for divisors up to the square root of the number. If there's no divisor found within that range, the number is considered prime.

Try solving now
02
Round
Easy
Video Call
Duration30 minutes
Interview date27 Dec 2023
Coding problem2

Timing- Evening
Environment Was good
Sometimes, technical interviews may also include questions about your previous experiences, teamwork, problem-solving in real-world scenarios, etc., to gauge your interpersonal and soft skills

1. DBMS

Difference Between truncate and delete Commands in SQL. (Learn)
Explain ACID Properties in DBMS.

Problem approach

Tip 1:Listen the Question Properly and answer according to this.
Tip 2: Practice SQL commands properly.
 

2. Questions about project :

What Technology do I use in the project and Why?
How did I manage the team and What was my role in this project?

Problem approach

Tip 1:Prepare your project well.
Tip 2:Write in the resume the project that you can deliver in the interview.
 

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

What is recursion?

Choose another skill to practice
Similar interview experiences
company logo
SDE - 1
3 rounds | 7 problems
Interviewed by OYO
4657 views
0 comments
0 upvotes
company logo
SDE - Intern
2 rounds | 3 problems
Interviewed by Amazon
961 views
0 comments
0 upvotes
company logo
SDE - 1
2 rounds | 5 problems
Interviewed by Meesho
6450 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 9 problems
Interviewed by Salesforce
3452 views
0 comments
0 upvotes