Upload Button Icon Add office photos

Filter interviews by

Transport Solutions India Interview Questions and Answers

Updated 8 Jun 2024

Transport Solutions India Interview Experiences

Popular Designations

4 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Basic Details About self
Round 2 - Case Study 

Should understand about the company basic things that's it

Round 3 - HR 

(2 Questions)

  • Q1. What u want to work for this company
  • Q2. Then Offer letter

Quality Assurance Interview Questions asked at other Companies

Q1. Explain your Project. Explain V model. Explain SDLC. Explain STLC. Explain Agile ceremonies. Do you attend all the agile ceremonies? Tell me the positive and negative test cases for water bottle. What is difference between Retesting and Reg... read more
View answer (1)
Interview experience
5
Excellent
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 Resume tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. What is your focus on your future professional career?
  • Ans. My focus is in growing not only in my designation but also in all that responsiblities of that company which could be the backbone of the organaization may be i could be in other part of the department but seeking the backbone process would give me better understanding and helps me to move upward in my career.
  • Answered by harpreet singh bhatia
  • Q2. What is Main goal while working in an organization?
  • Ans. Main goal is developing my skills no issue weather i am in non technical profile by enaging in other working process of company could lead to develop me more skills which is goal of my personal career.
  • Answered by harpreet singh bhatia

Interview Preparation Tips

Interview preparation tips for other job seekers - Confidently only focus on what your are saying don't just copy any of the ideas to crack interviews..

Agent Interview Questions asked at other Companies

Q1. If you had 1 crore rupees what would you do with them?
View answer (2)

I applied via Recruitment Consultant and was interviewed before Oct 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. The interview lasted for almost an hour. I was asked questions related to my past experiences, success and failures, questions on change management, Budget, compliance, Governance and controls, Data Manage...

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Be factual and take a realistic approach
2. Answer to the point
3. Explain answers with examples which you have come across
4. Keep numbers and data handy to elaborate your answers and approach
5. Have (and demonstrate ) enthusiasm and genuine interest while you interact.

Director Human Resources Interview Questions asked at other Companies

Q1. Selected one topic and tell me few words about the topic ?
View answer (1)

Verifier Interview Questions & Answers

user image Anonymous

posted on 1 Oct 2021

I applied via Naukri.com and was interviewed before Oct 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Self intro and work experience

Interview Preparation Tips

Interview preparation tips for other job seekers - speak well, they will check your communication and stability.

Verifier Interview Questions asked at other Companies

Q1. Aa a verifier if you failed to convince the customer to go head for payment how you will handle the situation.
View answer (1)

Transport Solutions India interview questions for popular designations

 Agent

 (1)

 Verifier

 (1)

 Quality Assurance

 (1)

 Director Human Resources

 (1)

Interview questions from similar companies

I was interviewed before May 2021.

Round 1 - Assignment 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Medium

  • Q1. Design a class booking application for students.
  • Ans. 

    A class booking application for students to schedule and manage their classes.

    • Create a class booking system where students can view available classes, book classes, and manage their schedule.

    • Include features like class search, class details, booking confirmation, and calendar view.

    • Implement user authentication to ensure only registered students can book classes.

    • Allow students to cancel or reschedule classes with proper...

  • Answered by AI
Round 2 - Telephonic Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

The interviewer understand the current problem statement I was working on. 
Asked the clarifying questions and alternative approaches to solve the same and their tradeoffs.
Also, asked about the technologies I was using in depth and reason for choosing the same.

  • Q1. 

    Gas Tank Problem Statement

    You have a car with a gas tank of infinite capacity. There are 'N' gas stations located along a circular route, numbered from 0 to N-1. You begin your journey with an empty tank...

  • Ans. 

    Find the starting gas station index to complete a circular route with gas and cost arrays.

    • Iterate through gas stations, keeping track of gas remaining after each station

    • If gas remaining is negative, reset starting station to current station + 1

    • If total gas remaining at the end is greater than or equal to total cost, return starting station index

  • Answered by AI
Round 3 - Telephonic Call 

Round duration - 45 Minutes
Round difficulty - Medium

This round was their with the CTO and was mostly the culture fitment round.

 

Round 4 - HR 

Round duration - 30 Minutes
Round difficulty - Easy

This round was with the cofounder and was mostly culture fitment.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in GurgaonEligibility criteriaNo criteriaRIVIGO interview preparation:Topics to prepare for the interview - Data Structures, Competitive Programming, Databases, Java, Spring , Hibernate, Jenkins, AWSTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice questions on leetcode
Tip 2 : Understand the best solutions in depth and algorithm used
Tip 3 : Ask clarifying questions to the interviewer and break the problem to smaller sub parts

Application resume tips for other job seekers

Tip 1 : Highlight your most impactful work on the resume
Tip 2 : Keep it easy to understand

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Jun 2020. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. Sir .. which programming language perfect for interview ?
  • Q2. Sir .. write any one c++ program ..
  • Q3. Sir .. explain that c++ program
  • Q4. Tell me your ambition ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Perfect and confidence

I applied via Referral and was interviewed in Jul 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. No technical questions
  • Q2. BASIC INTERVIEW LIKE L1

Interview Preparation Tips

Interview preparation tips for other job seekers - No job guaranty, Non technical HOD, Unmanaged Infra

Interview Preparation Tips

Interview preparation tips for other job seekers - I gave attitude and dark personality test in Delhivery. But after clearing this rounds. They don't take my interview. They said that they have shortlisted another candidate. They even don't pick up call and clarify it.

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

Interview Questionnaire 

2 Questions

  • Q1. What is DHCP,DNS,etc
  • Ans. 

    DHCP is a protocol that assigns IP addresses to devices on a network. DNS is a system that translates domain names to IP addresses.

    • DHCP assigns IP addresses to devices on a network

    • DNS translates domain names to IP addresses

    • DHCP reduces the need for manual IP address configuration

    • DNS allows users to access websites using domain names instead of IP addresses

  • Answered by AI
  • Q2. Dynamics host configuration Protocol Domain Name System

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Transport Solutions India Interview FAQs

How many rounds are there in Transport Solutions India interview?
Transport Solutions India interview process usually has 2-3 rounds. The most common rounds in the Transport Solutions India interview process are HR, Resume Shortlist and One-on-one Round.

Recently Viewed

INTERVIEWS

Tata Motors

No Interviews

SALARIES

Geekster

INTERVIEWS

RedBus

No Interviews

SALARIES

AccioJob

INTERVIEWS

Regal Rexnord Corporation

No Interviews

LIST OF COMPANIES

Bridgestone

Locations

LIST OF COMPANIES

Brakes India

Locations

LIST OF COMPANIES

SkillCircle

Locations

INTERVIEWS

Paytm

No Interviews

SALARIES

Tech Mahindra

Tell us how to improve this page.

Transport Solutions India Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Delhivery Interview Questions
3.9
 • 455 Interviews
DTDC Express Interview Questions
3.7
 • 151 Interviews
Blue Dart Express Interview Questions
4.0
 • 102 Interviews
GATI-KWE Interview Questions
3.9
 • 86 Interviews
TCI Express Interview Questions
3.9
 • 37 Interviews
VRL Logistics Interview Questions
3.8
 • 18 Interviews
View all

Transport Solutions India Reviews and Ratings

based on 89 reviews

3.9/5

Rating in categories

3.5

Skill development

3.5

Work-life balance

3.2

Salary

3.4

Job security

3.4

Company culture

2.9

Promotions

3.4

Work satisfaction

Explore 89 Reviews and Ratings
Associate
32 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Associate
21 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead
12 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Executive
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Manager
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Transport Solutions India with

Delhivery

3.9
Compare

Blue Dart Express

4.0
Compare

GATI-KWE

3.9
Compare

Mahindra Logistics

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