Upload Button Icon Add office photos

Filter interviews by

Digibiz Global Resource Management SDE-2 Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

SDE-2 Interview Questions & Answers

Amazon user image Anonymous

posted on 9 Dec 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Hacker Rank test - 4 rounds (Coding, System Design and Work style assessment, Leadership Principles)

Round 2 - Technical 

(2 Questions)

  • Q1. LC - 2 medium difficulty questions
  • Q2. System design discussion

SDE-2 Interview Questions & Answers

BYJU'S user image Anonymous

posted on 12 Dec 2021

I applied via Recruitment Consultant and was interviewed in Nov 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Length of smallest subarray with given sum in linear time complexity
  • Ans. 

    Find length of smallest subarray with given sum in linear time complexity

    • Use sliding window technique to keep track of subarray sum

    • Initialize two pointers at start of array

    • Move right pointer until sum is greater than or equal to given sum

    • Move left pointer until sum is less than given sum

    • Repeat until end of array is reached

    • Return length of smallest subarray found

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Solve medium questions on leetcode.

Skills evaluated in this interview

SDE-2 Interview Questions & Answers

TCS user image CodingNinjas

posted on 16 Sep 2021

I was interviewed in Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

It was in the morning about 10:00AM-10:40AM. The platform used for this round was hackerrank. There are 15 MCQ's which cover portions of Aptitude, Data Structures, DBMS, SQL

  • Q1. Minimum Operations

    You are given an array 'ARR' of 'N' positive integers. You need to find the minimum number of operations needed to make all elements of the array equal. You can perform a...

  • Ans. Brute Force

    For making all elements equal you can select a target value and then you can make all elements equal to that. Now, for converting a single element to a target value you can perform a single operation only once. In this manner, you can achieve your task in the maximum of  ‘N’ operations but you have to minimize this number of operations and for this, your selection of target is very important because if ...

  • Answered by CodingNinjas
Round 2 - HR 

(1 Question)

Round duration - 15 minutes
Round difficulty - Easy

It was in the night around 7:00PM-7:20PM. Platform used for this round was skype. Interviewer was very serious while taking my interview.

  • Q1. Basic HR Questions

    Who is your role model?

    Why should we hire you?

  • Ans. 

    Tip 1 : This question aims to evaluate the candidate’s interest in the role. Are they really motivated to get hired for this specific job or do they just mass-apply to every job ad under the sun? Candidates should show that this application was a conscious decision on their part.
    Tip 2 : With this question, recruiters can assess whether candidates have truly understood the role’s requirements and whether they think they...

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 2 in DelhiEligibility criteriaAbove 7 CGPATata Consultancy Services (TCS) interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OOPS, Data Science, Aptitude, DBMSTime required to prepare for the interview - 3.5 monthsInterview preparation tips for other job seekers

Tip 1 : Practice as much as you can
Tip 2 : Try to get a good hold in Data Structures
Tip 3 : Do atleast 2 projects

Application resume tips for other job seekers

Tip 1 : It should not be too long or too short.
Tip 2 : Each skill should be mentioned properly.

Final outcome of the interviewSelected

SDE-2 Interview Questions & Answers

Genpact user image CodingNinjas

posted on 17 May 2022

I was interviewed before May 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

It is online round and it was conducted around 11 AM on campus. Difficulty was medium. 2 coding questions were asked. One question is based on arrays(easy) and the other question is based on usage of oops concepts like Inheritance, polymorphism. Everything went smooth.

  • Q1. Subarray With Given Sum

    Given an array ARR of N integers and an integer S. The task is to find whether there exists a subarray(positive length) of the given array such that the sum of elements of the subar...

  • Ans. 

    I started with brute force method but test cases were failed due to time complexity. Use a similar approach to a sliding window. Start with an empty subarray, add elements to the subarray until the sum is less than x. If the sum is greater than x, remove elements from the start of the current subarray

  • Answered by CodingNinjas
  • Q2. OOPS Question

    Only java was allowed. Parent class was given and asked to write code for child classes and function overloading.

  • Ans. 

    Be clear with oops concepts. If oops concepts are clear then the question can be solved easily.

  • Answered by CodingNinjas
Round 2 - Video Call 

(4 Questions)

Round duration - 50 minutes
Round difficulty - Medium

Round started with self introduction and discussion of project. Everything went fine.
Note: we didn't have hr round due to time constraint. You can expect hr round.

  • Q1. Find Duplicate

    You have been given an integer array/list(ARR) of size N which contains numbers from 0 to (N - 2). Each number is present at least once. That is, if N = 5, the array/list constitutes values ...

  • Ans. 

    Step 1: create an array of fixed size 256 as 256 ascii characters are available. Initialise all the elements of array with 0.
    Step 2: iterate over array and store the frequency of every character.
    Step 3: Iterate over the array and print the characters with frequency more than 1.
    Note: problem can be solved using maps too.

  • Answered by CodingNinjas
  • Q2. DBMS Questions

    Explain the concept of normalisation and types.

  • Ans. 

    Tip 1 : Explain everything clearly.
    Tip 2 : Don't use the words that you are not confident about. Interviewer might ask questions based on your answers.

  • Answered by CodingNinjas
  • Q3. DBMS Question

    Explain ACID properties

  • Ans. 

    Tip 1 : Go through DBMS concepts thoroughly.

  • Answered by CodingNinjas
  • Q4. OOPS Question

    Explain oops concepts with real life examples.

  • Ans. 

    Tip 1 : Go through oops concepts thoroughly

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 2 in BangaloreEligibility criteriaAbove 7cgpaGenpact interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Operating systems, DBMS, Computer Networks, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Don't get frustrated if not selected, keep believing yourself.
Tip 2 : Prepare data structures and algorithms well. Practice coding daily. OOPS in any programming language will do. Prefer quality of codes to quantity.
Tip 3 : If possible do a project on full stack development.

Application resume tips for other job seekers

Tip 1 : Keep it simple and try to adjust everything in one page. As a fresher it is better if you can have 2 projects in your cv.
Tip 2 : Don't add unnecessary details such as parents details.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before May 2021.

Round 1 - Telephonic Call 

(2 Questions)

Round duration - 30 minutes
Round difficulty - Medium

  • Q1. Remove Duplicates

    Given a string S, remove consecutive duplicates from it recursively.

    Input Format :
    String S
    
    Output Format :
    Output string
    
    Constraints :
    1 <= |S| <= 10^3
    where |S| represen...
  • Ans. 

    use the LinkedHashSet (Set Interface) to retain the original insertion order of the elements into the set.

    The main factor that we must keep in mind when dealing with arrays is not the elements that have duplicates. The main problem here is removing the duplicates instead. Arrays are static data structures that are of fixed length, thus not possible to be altered. So, to delete elements from arrays, you need to create n...

  • Answered by CodingNinjas
  • Q2. DSA Questions

    1. Benefits of Learning Data Structures ?
    2. Can you explain the difference between file structure and storage structure?
    3. What is a multidimensional array?
    4. What is a stack? What are the app...

Round 2 - Face to Face 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

  • Q1. Reverse String

    You are given a string ‘S’. You are also given ‘M’ integers in an array ‘A’. You perform ‘M’ operations on this string. The operations are given in an array ‘A’ of size ‘M’.

    You perform th...

  • Ans. 

    Declare a string.
    Take out the length of that string.
    Loop through the characters of the string.
    Add the characters in reverse order in the new string.
    String str = "hello";

    String reverse = "";

    int length = str.length();

    for (int i = 0; i < length; i++) {

    reverse = str.charAt(i) + reverse;

    }

    System.out.println(reverse);

  • Answered by CodingNinjas
  • Q2. DSA and OOPS Questions

    How can you find the largest or smallest number in an array of integers?
    What is an AVL Tree?
    What is the difference between tree and graph data structure?
    Oops concepts with principal.
    B...

Round 3 - HR 

(1 Question)

Round duration - 50 minutes
Round difficulty - Medium

  • Q1. Basic HR Questions

    Why should we hire you ? 
    How you are fit for this position ? 
    Why you are looking into service based organization ? 
    Tell me about your family in brief. 
    How soon will yo...

  • Ans. 

    Tip 1 : Be confidence about introduction part do not get hesitated during your HR discussion
    Tip 2 : Try to be uniform the way & show them interested to join the organization.
    Tip 3 : Majorly the focus on behavioural and communication skills.

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 2 in BangaloreEligibility criteria60%Tech Mahindra interview preparation:Topics to prepare for the interview - Java, Data Structures, Oops Concept, Angular, Basic fundamental of Computer ScienceTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare well for resume & confidence for basic part of CS.
Tip 2 : Good knowledge of skills set which mentioned in CV.
Tip 3 : Explain about projects which you have worked earlier & your roles and responsibilities.

Application resume tips for other job seekers

Tip 1 : Mentioned all the skills & certificate till date update your resume every 3 month's. 
Tip 2 : Proper skills set with project explanation and duration of project which you have worked on

Final outcome of the interviewSelected

Skills evaluated in this interview

SDE-2 Interview Questions & Answers

Amazon user image Anonymous

posted on 3 Sep 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Amazon Online assessment which consisted of 2 coding DSA medium question

Round 2 - One-on-one 

(3 Questions)

  • Q1. Question related to TreeMap
  • Q2. Question related BFS
  • Q3. System Design - Design Feed system

Interview Preparation Tips

Interview preparation tips for other job seekers - Be ready to answer questions in 25 minuted both coding and system design

SDE-2 Interview Questions & Answers

TCS user image CodingNinjas

posted on 15 Sep 2021

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 360 minutes
Round difficulty - Hard

Timing- Any 6 hours of my choice in the 24 hour window. (10:00 p.m. to 4:00 a.m. I selected)
Environment was very friendly and easy to use.
No significant activity.
This was the only coding round.

  • Q1. Prime time again

    You have been given two integers ‘DAY_HOURS’ and ‘PARTS’. Where ‘DAY_HOURS’ is the number of hours in a day and a day can be divided into ‘PARTS’ equal parts. Your task is to find total i...

  • Ans. 

    Step1:First we had to decide whether the user enters valid parts which can occur in a day according to our question.
    Step 2:Search for the prime time and valid times which can occur in the clock for the given range.
    Step 3: Print the next valid time otherwise print 0.

  • Answered by CodingNinjas
Round 2 - Telephonic Call 

(1 Question)

Round duration - 10-15 minutes
Round difficulty - Easy

Timing- 12:15 p.m. 
Environment was very good .
Not any significant activity.
The interviewer was very friendly and talked like friends.

  • Q1. DBMS Questions

    1) A table was shown to me and I was asked to write a query for displaying unique elements.
    2) What is RDBMS ?
    3) Difference between MySql & NoSql.

  • Ans. 

    Tip 1 : Do practice SQL queries.
    Tip 2 : Must have theoretical knowledge of DBMS.
    Tip 3 : Read SDLC Waterfall Model thoroughly

  • Answered by CodingNinjas
Round 3 - HR 

(1 Question)

Round duration - 20 minutes
Round difficulty - Medium

Timing- 12:30 p.m. to 12:45 p.m
Environment was very comfortable.
No other significant activity.
Interviewer was very good and talking very politely & friendly.

  • Q1. HR Discussion
  • Ans. 

    Tip 1 : Make you you know the history, work culture and CEO of whichever company you are going for the interview.
    Tip 2 : Tell optimistic answers so that they are impressed.
    Tip 3 : My approach was very normal & I gave answers to the point.

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from D Y Patil School Of Engineering Academy,Ambi.. I applied for the job as SDE - 2 in PuneEligibility criteriaAbove 6.75 CGPA, No running backlogsTata Consultancy Services (TCS) interview preparation:Topics to prepare for the interview - DBMS, Sorting Algorithms, SDLC, Computer Networks, Basics of DSATime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Make sure what you have learnt in DSA you can do it practically by writing codes.
Tip 2 : Must have a hands-on experience in writing SQL commands.
Tip 3 : Do atleast 3-4 projects so that you have an option to explain any one of them if the interviewer asks.

Application resume tips for other job seekers

Tip 1 : Write only true data in resume. Don't bluff as you may get caught which will be very embarrassing.
Tip 2 : Have some latest technology related projects in your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

SDE-2 Interview Questions & Answers

Amazon user image Anonymous

posted on 6 Jul 2022

Round 1 - Coding Test 

Diameter of a binary tree and bfs and dfs questions

Round 2 - Coding Test 

Data structure and algorithms

Round 3 - Technical 

(1 Question)

  • Q1. System design questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare data structure well and system design

SDE-2 Interview Questions & Answers

TCS user image CodingNinjas

posted on 16 Sep 2021

I was interviewed in Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 180 minutes
Round difficulty - Hard

Timing: 8 a.m. to 11a.m.
Environment was optimum.
No significant activity.

  • Q1. Edit Distance

    You are given two strings 'S' and 'T' of lengths 'N' and 'M' respectively. Find the "Edit Distance" between the strings.

    Edit Distance of two strin...

  • Ans. Recursive Approach
    • We will write a recursive approach.
    • The base case would be if the length of the first string is 0 then we need to add all the characters of the second string to the first string hence return the length of the second string. Similarly, if the length of the second string is 0 return length of the first string.
    • Now the recurrence relation is as follows:
      • If the last characters of two strings are not the same...
  • Answered by CodingNinjas
Round 2 - Video Call 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

Timing: 12:00 p.m. to 12:30 p.m.
The environment was quite good.
No significant activity.
Interviewers were very friendly. They were behaving like friends.

  • Q1. SQL Qusestions

    What is the difference between drop and truncate?
    How would you sort and display a column of table in descending order?
    Create a table with primary key.
    Set the marks of student to 50 whose addr...

Round 3 - HR 

(1 Question)

Round duration - 15 minutes
Round difficulty - Easy

Timing: 3:00 p.m. to 3:20 p.m.
Environment was very good.
No significant activity was monitored.
HR was very good and friendly.

  • Q1. Basic HR Questions

    Why tcs?

    What are your expectations?

    Where do you see yourself in 5 years?

  • Ans. 

    Tip 1 : Answered yes to relocation questions.
    Tip 2 : Told them that I am not interested in studying further.
    Tip 3 : I answered honestly on what would I choose my hometown(Patna) for work or my college location(Kolkata).

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI completed Civil Engineering from Heritage Institute of Technology. I applied for the job as SDE - 2 in KolkataEligibility criteriaAbove 6.5 CGPATata Consultancy Services (TCS) interview preparation:Topics to prepare for the interview - Data Structures, Dynamic Programming, OOPS, Computer Networks, System DesignTime required to prepare for the interview - 7 monthsInterview preparation tips for other job seekers

Tip 1 : Do minimum 3 projects
Tip 2 : Prepare every topic of DSA for interview
Tip 3 : Hands on experience in performing MySql commands

Application resume tips for other job seekers

Tip 1 : Be precise and don't bluff
Tip 2 : Learn atleast 2 programming languages
Tip 3 : Do projects on latest technologies like Artificial Intelligence and Machine Learning

Final outcome of the interviewSelected

Skills evaluated in this interview

SDE-2 Interview Questions & Answers

Amazon user image Anonymous

posted on 18 Apr 2022

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Behavioural questions related to leadership principle.

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing specific, respond back based on your experience

Tell us how to improve this page.

SDE-2 Interview Questions from Similar Companies

Amazon SDE-2 Interview Questions
4.1
 • 16 Interviews
Flipkart SDE-2 Interview Questions
4.0
 • 5 Interviews
TCS SDE-2 Interview Questions
3.7
 • 3 Interviews
BYJU'S SDE-2 Interview Questions
3.1
 • 1 Interview
View all
Compare Digibiz Global Resource Management with

TCS

3.7
Compare

Accenture

3.9
Compare

Wipro

3.7
Compare

Cognizant

3.8
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview