Upload Button Icon Add office photos

Filter interviews by

Mgh Logistics Interview Questions and Answers

Updated 23 Jan 2024

Mgh Logistics Interview Experiences

Popular Designations

2 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jul 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

They ask about basic civil engineering concept

Round 2 - Technical 

(2 Questions)

  • Q1. Ask what is the chemical name of cement and other basic questions
  • Q2. And some questions about relocation

Interview Preparation Tips

Topics to prepare for Mgh Logistics Graduate Trainee interview:
  • Civil Engineering
Interview preparation tips for other job seekers - That was the best interview experience

Graduate Trainee Interview Questions asked at other Companies

Q1. Given an array, how do you get the count of pairs that sum to even
View answer (8)

I applied via Naukri.com and was interviewed before Feb 2021. There were 2 interview rounds.

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 - HR 

(5 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Share details of your previous job.
  • Q4. Tell me about yourself.
  • Q5. Have you knowledge Export Import documentations
  • Ans. 

    Yes, I have knowledge of Export Import documentations.

    • I have experience in preparing and reviewing export and import documents such as commercial invoices, packing lists, bills of lading, and certificates of origin.

    • I am familiar with customs regulations and procedures related to export and import documentation.

    • I have worked with shipping companies, freight forwarders, and customs brokers to ensure smooth documentation ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Hello, how are you, I have knowledge of export import documentations CHA , Freight Forwarding and manufacturing ,

Export Import Documentation Executive Interview Questions asked at other Companies

Q1. have you knowledge Export Import documentations
View answer (2)

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed in May 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What is diameter of Binary Tree? Write full working code.
  • Ans. 

    Diameter of a binary tree is the longest path between any two leaf nodes.

    • Calculate the height of left and right subtrees recursively.

    • Calculate the diameter recursively using the formula max(left_height + right_height + 1, max(left_diameter, right_diameter)).

    • Return the maximum diameter.

  • Answered by AI
  • Q2. Find interchanged terms from an AP, where terms are arranged in series
  • Ans. 

    To find interchanged terms from an AP series

    • Identify the common difference between terms

    • Swap the positions of adjacent terms

    • Check if the new series is also an AP

    • Repeat until no more interchanged terms can be found

  • Answered by AI
  • Q3. Explain database indexing
  • Ans. 

    Database indexing is a technique to improve the performance of database queries.

    • Indexing creates a data structure that allows for faster retrieval of data.

    • Indexes are created on one or more columns of a table.

    • Queries that use indexed columns can be executed faster.

    • Indexes can be clustered or non-clustered.

    • Clustered indexes determine the physical order of data in a table.

    • Non-clustered indexes create a separate structure...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on basic data structures, operating systems and database.

Skills evaluated in this interview

I applied via Internshala and was interviewed before Sep 2021. There were 2 interview rounds.

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 - One-on-one 

(1 Question)

  • Q1. Only simple about myself questions as well as finance operations terms

Interview Preparation Tips

Interview preparation tips for other job seekers - Hojata hai aaram se but thoda dhyan rkhna ki stuck na ho beech m

I applied via Company Website and was interviewed before May 2019. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Sales related and market bases... And how to handle clients with all issues?
  • Q2. Good Knowledge of marketing Fields and good communication with clients solving issues and problems?

Interview Preparation Tips

Interview preparation tips for other job seekers - Always keep learning
Always Curiose to grow and ready to what's your learn your job profile on your duration time period
Simple look and high thinking ......

I applied via Referral and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. What is FMCG .
  • Ans. 

    FMCG stands for Fast Moving Consumer Goods, which are products that are sold quickly and at a relatively low cost.

    • FMCG products are typically non-durable goods that are consumed or used up quickly, such as food, beverages, toiletries, and cleaning products.

    • These products are sold in large quantities and at a low profit margin, but generate high sales volume due to their high demand.

    • FMCG companies often rely on extensiv...

  • Answered by AI
  • Q2. How to develop the distribution
  • Ans. 

    Developing distribution involves identifying target markets, creating a distribution strategy, and building relationships with distributors.

    • Conduct market research to identify potential target markets

    • Create a distribution strategy that aligns with the company's goals and objectives

    • Build relationships with distributors by offering incentives and providing excellent customer service

    • Regularly evaluate and adjust the distr...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Very good interview I try to improve my self

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Retail sales knowledge

Interview Questionnaire 

1 Question

  • Q1. About customer service???

I applied via Naukri.com and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. What expectations you have from these company?

I applied via Campus Placement and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Design a stack that support getmin in O(1) time and O(1) space complexities
  • Ans. 

    Design a stack that supports getmin in O(1) time and O(1) space complexities.

    • Use two stacks, one for storing the actual values and the other for storing the minimum values.

    • When pushing a new value, check if it is smaller than the current minimum value and push it to the minimum stack if it is.

    • When popping a value, check if it is the current minimum value and pop it from the minimum stack if it is.

    • To get the minimum val...

  • Answered by AI
  • Q2. Questions related OS and DBMS
  • Q3. Binary tree traversal
  • Ans. 

    Binary tree traversal is the process of visiting each node in a binary tree exactly once in a specific order.

    • There are three main types of binary tree traversal: inorder, preorder, and postorder.

    • Inorder traversal visits the left subtree, then the root, then the right subtree.

    • Preorder traversal visits the root, then the left subtree, then the right subtree.

    • Postorder traversal visits the left subtree, then the right subt...

  • Answered by AI
  • Q4. LRU cache explanation
  • Ans. 

    LRU cache is a data structure that stores the most recently used items and discards the least recently used items.

    • LRU stands for Least Recently Used

    • It has a fixed size and when the cache is full, the least recently used item is removed to make space for a new item

    • It uses a combination of a doubly linked list and a hash map to achieve O(1) time complexity for both insertion and deletion

    • Example: A web browser cache that ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good with your programming skills and fundamentals.

Skills evaluated in this interview

Mgh Logistics Interview FAQs

How many rounds are there in Mgh Logistics interview?
Mgh Logistics interview process usually has 2 rounds. The most common rounds in the Mgh Logistics interview process are Resume Shortlist, HR and Aptitude Test.
How to prepare for Mgh Logistics interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Mgh Logistics. The most common topics and skills that interviewers at Mgh Logistics expect are Accounts Payable, Accounts Receivable, Freight Forwarding, Accounting and Budgeting.
What are the top questions asked in Mgh Logistics interview?

Some of the top questions asked at the Mgh Logistics interview -

  1. have you knowledge Export Import documentati...read more
  2. Ask what is the chemical name of cement and other basic questi...read more
  3. And some questions about relocat...read more

Tell us how to improve this page.

Mgh Logistics Interview Process

based on 4 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

Delhivery Interview Questions
3.8
 • 477 Interviews
ElasticRun Interview Questions
3.5
 • 252 Interviews
Maersk Interview Questions
4.1
 • 204 Interviews
Xpo Logistics Interview Questions
3.6
 • 13 Interviews
Trackon Courier Interview Questions
3.6
 • 10 Interviews
YCH Logistics Interview Questions
4.0
 • 9 Interviews
LPS Bossard Interview Questions
3.8
 • 9 Interviews
View all

Mgh Logistics Reviews and Ratings

based on 46 reviews

4.3/5

Rating in categories

4.4

Skill development

4.2

Work-life balance

4.5

Salary

4.3

Job security

4.4

Company culture

4.3

Promotions

4.3

Work satisfaction

Explore 46 Reviews and Ratings
Assistant Manager
11 salaries
unlock blur

₹6 L/yr - ₹10.6 L/yr

Senior Executive
11 salaries
unlock blur

₹4.5 L/yr - ₹10.2 L/yr

Senior Accounts Executive
6 salaries
unlock blur

₹4 L/yr - ₹6.4 L/yr

Key Account Manager
6 salaries
unlock blur

₹10.1 L/yr - ₹14.1 L/yr

Manager
5 salaries
unlock blur

₹6.1 L/yr - ₹9.4 L/yr

Explore more salaries
Compare Mgh Logistics with

Delhivery

3.8
Compare

Ecom Express

3.8
Compare

Maersk

4.1
Compare

Trackon Courier

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