Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Mahindra Logistics Team. If you also belong to the team, you can get access from here

Mahindra Logistics Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Mahindra Logistics SDE Interview Questions and Answers

Updated 3 Mar 2024

Mahindra Logistics SDE Interview Experiences

1 interview found

SDE Interview Questions & Answers

user image Anonymous

posted on 3 Mar 2024

Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Feb 2024. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Some kind of merge sort usage
  • Ans. 

    Merge sort is a divide and conquer algorithm that recursively splits an array into halves, sorts them, and then merges them back together.

    • Merge sort is efficient for sorting large arrays.

    • It has a time complexity of O(n log n).

    • It is a stable sorting algorithm.

    • Example: ['apple', 'banana', 'orange', 'grape', 'kiwi']

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Snakes and ladder design
Round 3 - Technical 

(1 Question)

  • Q1. System design of doctor app
Round 4 - HR 

(1 Question)

  • Q1. COMPANY FIT QUESTIONS

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - Aptitude Test 

Aptitude test for maths and logical easy to medium level.
Technical question are there. technical questions are easy level. 30 min,

Round 3 - Technical 

(2 Questions)

  • Q1. OOPS connect in brief.
  • Ans. 

    OOPS is a programming paradigm that uses objects to represent real-world entities and their interactions.

    • OOPS stands for Object-Oriented Programming System

    • It emphasizes on encapsulation, inheritance, and polymorphism

    • Objects have attributes (data) and methods (functions)

    • Example: A car object can have attributes like color, model, and methods like start, stop

    • Classes are blueprints for creating objects

    • Inheritance allows c...

  • Answered by AI
  • Q2. DSA problem of DP and recursion
  • Ans. 

    Dynamic Programming (DP) is a technique to solve problems by breaking them down into smaller subproblems and solving them recursively.

    • DP is used to solve optimization problems where we need to find the best solution among all possible solutions.

    • DP problems can be solved using either top-down (memoization) or bottom-up (tabulation) approach.

    • Recursion is a technique where a function calls itself to solve a problem. It is...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - DSA is good if you are going for intern.
Good communication.

Skills evaluated in this interview

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

Basic logical reasoning questions

Round 2 - Technical 

(3 Questions)

  • Q1. BRD,FRD,User stories
  • Q2. Case Studies related questions to judge problem solving attitude
  • Q3. Basic SQL questions
Round 3 - HR 

(2 Questions)

  • Q1. Why should we hire you
  • Ans. 

    I have a strong analytical background, excellent communication skills, and a proven track record of delivering valuable insights to drive business decisions.

    • I have a Bachelor's degree in Business Analytics and 3 years of experience in data analysis

    • I am proficient in various data analysis tools such as SQL, Excel, and Tableau

    • I have successfully led cross-functional teams to implement data-driven solutions, resulting in ...

  • Answered by AI
  • Q2. What is your expected CTC
  • Ans. 

    My expected CTC is based on my experience, skills, and the market rate for Business Analyst roles.

    • I have researched the market rates for Business Analyst positions in this industry.

    • I have considered my years of experience and relevant skills in determining my expected CTC.

    • I am open to negotiation based on the overall compensation package offered by the company.

  • Answered by AI
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Hirist and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Csharp basics and a coding questing was given to implement
  • Q2. .net and angular basics questions
Round 2 - One-on-one 

(2 Questions)

  • Q1. Asked deeply about my resume and technologies
  • Q2. Coding question to sort a given array using DSA

Interview Preparation Tips

Interview preparation tips for other job seekers - No response from HR
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell Me about yourself
  • Ans. 

    Experienced Business Analyst with a background in data analysis and process improvement.

    • Over 5 years of experience in analyzing business processes and identifying areas for improvement

    • Skilled in data analysis tools such as Excel, SQL, and Tableau

    • Strong communication and presentation skills, able to effectively communicate findings to stakeholders

    • Certified in Business Analysis (CBAP) and Lean Six Sigma

    • Previous projects ...

  • Answered by AI
  • Q2. How much you use power BI in your day to day work
  • Ans. 

    I use Power BI extensively in my day to day work to analyze data and create visualizations.

    • I use Power BI to create interactive reports and dashboards for stakeholders

    • I utilize Power BI's data modeling capabilities to analyze large datasets

    • I regularly use Power BI's DAX language to create calculated columns and measures

    • I schedule data refreshes and automate report generation using Power BI

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Good coding questions were asked

Round 2 - Technical 

(1 Question)

  • Q1. What is Difference between Word2Vec and Glove
  • Ans. 

    Word2Vec and Glove are both popular algorithms for generating word embeddings, but they differ in their approach to training.

    • Word2Vec is a predictive model that learns word embeddings by predicting the surrounding words in a sentence.

    • GloVe (Global Vectors for Word Representation) is a count-based model that learns word embeddings by looking at global word co-occurrence statistics.

    • Word2Vec is trained on a large corpus o...

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Regarding projects
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is the concept of oops
  • Ans. 

    OOPs (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOPs focuses on creating objects that interact with each other to solve problems

    • Key concepts include encapsulation, inheritance, and polymorphism

    • Encapsulation allows data to be hidden within an object and only accessed through methods

    • Inheritance allows a class to inherit properties and methods f...

  • Answered by AI
Round 1 - One-on-one 

(2 Questions)

  • Q1. Show me the PowerBi Data Relations
  • Ans. 

    PowerBI Data Relations show how tables are related to each other in a data model.

    • Data relations are created by linking columns between tables.

    • One table can have multiple relationships with other tables.

    • Data relations can be one-to-one, one-to-many, or many-to-many.

    • PowerBI automatically detects and creates relationships based on column names.

    • Data relations can be edited and managed in the Relationship view.

  • Answered by AI
  • Q2. Python code issue resolve

Interview Preparation Tips

Interview preparation tips for other job seekers - Strict Interviews. Be sure what you speak. Technically they seek every information. They see What you know ,how you look for problem solving.
Round 1 - Aptitude Test 

It was good

Round 2 - Group Discussion 

Good

Round 3 - One-on-one 

(1 Question)

  • Q1. It was challenging and good

Interview Preparation Tips

Interview preparation tips for other job seekers - Sound accounting knowledge required
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. About BA.. Agile Software Development
Round 3 - Aptitude Test 

Interview Preparation Tips

Interview preparation tips for other job seekers - just prepare your resume...no technical will be asked

Mahindra Logistics Interview FAQs

How many rounds are there in Mahindra Logistics SDE interview?
Mahindra Logistics interview process usually has 4 rounds. The most common rounds in the Mahindra Logistics interview process are Technical and HR.
What are the top questions asked in Mahindra Logistics SDE interview?

Some of the top questions asked at the Mahindra Logistics SDE interview -

  1. some kind of merge sort us...read more
  2. system design of doctor ...read more
  3. Snakes and ladder des...read more

Tell us how to improve this page.

Mahindra Logistics SDE Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

ElasticRun Interview Questions
3.5
 • 249 Interviews
Blue Dart Express Interview Questions
4.0
 • 102 Interviews
GATI-KWE Interview Questions
3.9
 • 86 Interviews
DP World Interview Questions
3.9
 • 63 Interviews
TCI Express Interview Questions
3.9
 • 37 Interviews
Maersk Line Interview Questions
4.2
 • 29 Interviews
V-Trans Interview Questions
4.0
 • 28 Interviews
Aka Logistics Interview Questions
3.2
 • 24 Interviews
View all
Operations Executive
902 salaries
unlock blur

₹1.5 L/yr - ₹5 L/yr

Senior Executive
642 salaries
unlock blur

₹2 L/yr - ₹6.3 L/yr

Executive
472 salaries
unlock blur

₹1.4 L/yr - ₹5.3 L/yr

Operations Associate
410 salaries
unlock blur

₹1.5 L/yr - ₹4.1 L/yr

Deputy Manager
382 salaries
unlock blur

₹4 L/yr - ₹12 L/yr

Explore more salaries
Compare Mahindra Logistics with

Blue Dart Express

4.0
Compare

GATI-KWE

3.9
Compare

TCI Express

3.9
Compare

Allcargo Logistics

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview