Premium Employer

i

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

Pando Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Pando Interview Questions and Answers

Updated 20 Jun 2025
Popular Designations

6 Interview questions

A Node Js Backend Developer Intern was asked 5mo ago
Q. How would you determine if two circles intersect, given their radii and centers?
Ans. 

To check if two circles intersect, compare the distance between their centers to the sum of their radii.

  • Calculate the distance between the centers of the two circles using the distance formula: sqrt((x2 - x1)^2 + (y2 - y1)^2)

  • If the distance between the centers is less than the sum of the radii, the circles intersect

  • If the distance between the centers is equal to the sum of the radii, the circles touch at one point

  • ...

A Python Developer was asked 11mo ago
Q. The Next greater Element for an element x is the first greater element on the right side of x in the array. For elements for which no greater element exists, consider the next greater element as -1. Input: ...
Ans. 

Find the next greater element for each element in the array.

  • Iterate through the array from right to left.

  • Use a stack to keep track of elements with no greater element found yet.

  • Pop elements from the stack until a greater element is found or stack is empty.

  • Store the next greater element for each element in a result array.

View all Python Developer interview questions
A Python Developer was asked 11mo ago
Q. Given an expression string exp, write a program to examine whether the pairs and the orders "{","}","(",")","[","]" are correct in the expression given.
Ans. 

Check if brackets in a string are correctly paired and ordered.

  • Use a stack to track opening brackets.

  • For each closing bracket, check if it matches the top of the stack.

  • If the stack is empty at the end, brackets are balanced.

  • Example: '{[()]}': balanced, '{[(])}': not balanced.

View all Python Developer interview questions
A Python Developer was asked 11mo ago
Q. Features of python, difference between java and python, modules in python, oops concepts, classes and objects,etc.
Ans. 

Python is a versatile programming language known for its simplicity and readability. It supports multiple programming paradigms and has a vast standard library.

  • Python features include dynamic typing, automatic memory management, and support for multiple programming paradigms like procedural, object-oriented, and functional programming.

  • Python is known for its readability and simplicity, making it a popular choice f...

View all Python Developer interview questions
A Python Developer was asked 11mo ago
Q. Types of databases, sql queries,etc.
Ans. 

Types of databases include relational, NoSQL, and NewSQL. SQL queries are used to interact with relational databases.

  • Relational databases store data in tables with rows and columns, using SQL for querying (e.g. MySQL, PostgreSQL)

  • NoSQL databases store data in flexible, non-tabular formats and do not require a fixed schema (e.g. MongoDB, Cassandra)

  • NewSQL databases combine the scalability of NoSQL with the ACID prope...

View all Python Developer interview questions
A Salesforce Developer was asked 5mo ago
Q. Can you reallocate
Ans. 

Yes, I can reallocate resources as needed.

  • I can reallocate resources based on project priorities and deadlines.

  • I can shift team members to different projects if necessary.

  • I can adjust workloads to ensure timely completion of tasks.

View all Salesforce Developer interview questions

Pando Interview Experiences

10 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Aug 2023. There were 3 interview rounds.

Round 1 - Coding Test 

2 coding questions related to arrays, strings and matrix.

Round 2 - Technical 

(2 Questions)

  • Q1. Given an expression string exp, write a program to examine whether the pairs and the orders "{"."}","(",")","[","]" are correct in the expression given.
  • Ans. 

    Check if brackets in a string are correctly paired and ordered.

    • Use a stack to track opening brackets.

    • For each closing bracket, check if it matches the top of the stack.

    • If the stack is empty at the end, brackets are balanced.

    • Example: '{[()]}': balanced, '{[(])}': not balanced.

  • Answered by AI
  • Q2. The Next greater Element for an element x is the first greater element on the right side of x in the array. For elements for which no greater element exists, consider the next greater element as -1. Input:...
  • Ans. 

    Find the next greater element for each element in the array.

    • Iterate through the array from right to left.

    • Use a stack to keep track of elements with no greater element found yet.

    • Pop elements from the stack until a greater element is found or stack is empty.

    • Store the next greater element for each element in a result array.

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Features of python, difference between java and python, modules in python, oops concepts, classes and objects,etc.
  • Ans. 

    Python is a versatile programming language known for its simplicity and readability. It supports multiple programming paradigms and has a vast standard library.

    • Python features include dynamic typing, automatic memory management, and support for multiple programming paradigms like procedural, object-oriented, and functional programming.

    • Python is known for its readability and simplicity, making it a popular choice for be...

  • Answered by AI
  • Q2. Types of databases, sql queries,etc.
  • Ans. 

    Types of databases include relational, NoSQL, and NewSQL. SQL queries are used to interact with relational databases.

    • Relational databases store data in tables with rows and columns, using SQL for querying (e.g. MySQL, PostgreSQL)

    • NoSQL databases store data in flexible, non-tabular formats and do not require a fixed schema (e.g. MongoDB, Cassandra)

    • NewSQL databases combine the scalability of NoSQL with the ACID properties...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The rounds were probably of medium and easy difficulty and one needs to practice DSA and DBMS to qualify the rounds.

Skills evaluated in this interview

Interview Questions & Answers

user image Anonymous

posted on 16 Jan 2025

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Two questions that I solved in JavaScript: one on arrays and the other on binary search.

Round 2 - Technical 

(2 Questions)

  • Q1. In the DSA round, I was asked to write code to determine whether two rectangles intersect, given the top left corner, length, and breadth of both rectangles.
  • Q2. Next was to check whether two circles intersect, given their radii and centers?
  • Ans. 

    To check if two circles intersect, compare the distance between their centers to the sum of their radii.

    • Calculate the distance between the centers of the two circles using the distance formula: sqrt((x2 - x1)^2 + (y2 - y1)^2)

    • If the distance between the centers is less than the sum of the radii, the circles intersect

    • If the distance between the centers is equal to the sum of the radii, the circles touch at one point

    • If th...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - After the second round, I was supposed to have a technical round; however, the HR and the company did not respond. I even wrote to her multiple times. This disappointing behavior is concerning; they should at least adhere to some ethical standards and provide me with a formal rejection.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Python questions
  • Q2. Sql questions Query
  • Q3. Functions, oops
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 simple coding question

Round 2 - One-on-one 

(2 Questions)

  • Q1. Introduction and procjects and internships any previous
  • Q2. DSA PREPARE WELL BASIS LEVEL

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare the DSA
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Pointless basic questions is what they asked
Round 2 - Technical 

(1 Question)

  • Q1. They had this round for hours together

Interview Preparation Tips

Interview preparation tips for other job seekers - Kindly do not attend interview at Pando. They make the interview process long and tedious. They had less budget despite knowing that they wasted my time and efforts on the whole the company is not well structured and their HR team is very poor. They are a typical unstructured startup company with poor work ethics and culture.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Can you reallocate
  • Ans. 

    Yes, I can reallocate resources as needed.

    • I can reallocate resources based on project priorities and deadlines.

    • I can shift team members to different projects if necessary.

    • I can adjust workloads to ensure timely completion of tasks.

  • Answered by AI
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 tips
Round 2 - Coding Test 

Asked DSA. Questions from Matrix, linked list, tree. Mostly medium level leetcode problems.

Round 3 - HR 

(2 Questions)

  • Q1. Asked about relocation
  • Q2. Interested to change tech stack

Interview Preparation Tips

Interview preparation tips for other job seekers - Do exercise medium level leetcode problems
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed before Jul 2023. There were 3 interview rounds.

Round 1 - Coding Test 

1. Implementation of linked list with its operations in nodejs

Round 2 - One-on-one 

(2 Questions)

  • Q1. Basics of NODEjs
  • Q2. Advanced concepts of NodeJs
Round 3 - HR 

(2 Questions)

  • Q1. Any recently faced problems and how we solved it
  • Q2. Why do you want to leave the current company

Interview Preparation Tips

Topics to prepare for Pando Software Engineer interview:
  • Data Structures
  • Nodejs
  • Problem Solving
Interview preparation tips for other job seekers - Perpare basic concepts of data structure.
Array solving problems.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Apr 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Basic Data Structures and algorithms questions. 45 mins to 1 hr duration. Friendly and helpful interviewers. Analyse only thought process.

Round 2 - UI and DB assessments 

(1 Question)

  • Q1. Questions from basic UI concepts, DB queries, and scenario based question.
Round 3 - Technical 

(1 Question)

  • Q1. Discussions based on your previous experience, System Designs on a scenario and related stuffs.
Round 4 - HR 

(1 Question)

  • Q1. HR Discussions on package and benifits

Interview Preparation Tips

Topics to prepare for Pando Software Developer interview:
  • Data Structures
  • Algorithms
  • Node.Js
  • Python
  • Problem Solving
  • System Design
Interview preparation tips for other job seekers - Be strong in Data structures, mainly in Basic data structures like Arrays, Linked lists, and trees. Other topics are not concentrated a lot. Be string in Front-end, Vue,js is preferable. React and Angular is ok. Be good in System designs. Be confident throughout interview.

I applied via Naukri.com and was interviewed in Jan 2022. There were 4 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Introduction, Design Process, Portfolio Presentation
Round 2 - Case Study 

Brainstorming, Discussion, Whiteboard

Round 3 - Assignment 

Assignment on Case study discussed in Round 2

Round 4 - One-on-one 

(1 Question)

  • Q1. Review Assignment, Process, Document collection

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics of Design process, Problem solving skill, logical thinking

Top trending discussions

View All
Interview Tips & Stories
4d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Pando?
Ask anonymously on communities.

Pando Interview FAQs

How many rounds are there in Pando interview?
Pando interview process usually has 2-3 rounds. The most common rounds in the Pando interview process are Coding Test, One-on-one Round and Technical.
How to prepare for Pando 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 Pando. The most common topics and skills that interviewers at Pando expect are Logistics, Supply Chain, Supply Chain Management, SAAS and SQL.
What are the top questions asked in Pando interview?

Some of the top questions asked at the Pando interview -

  1. The Next greater Element for an element x is the first greater element on the r...read more
  2. Given an expression string exp, write a program to examine whether the pairs an...read more
  3. Features of python, difference between java and python, modules in python, oops...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.3/5

based on 11 interview experiences

Difficulty level

Moderate 80%
Hard 20%

Duration

Less than 2 weeks 75%
2-4 weeks 25%
View more
Join Pando #1 Software for Autonomous Supply Chains

Interview Questions from Similar Companies

Vyapar Interview Questions
3.5
 • 60 Interviews
Fleetx.io Interview Questions
3.6
 • 29 Interviews
Classplus Interview Questions
3.4
 • 28 Interviews
LambdaTest Interview Questions
4.5
 • 26 Interviews
Tata nexarc Interview Questions
3.1
 • 25 Interviews
Twilio Interview Questions
3.9
 • 24 Interviews
Springworks Interview Questions
4.5
 • 23 Interviews
View all

Pando Reviews and Ratings

based on 42 reviews

3.4/5

Rating in categories

3.5

Skill development

3.4

Work-life balance

3.3

Salary

2.9

Job security

3.8

Company culture

2.9

Promotions

3.4

Work satisfaction

Explore 42 Reviews and Ratings
Data Warehouse Engineer

Chennai

2-5 Yrs

Not Disclosed

Python Developer

Chennai

2-3 Yrs

Not Disclosed

Python Developer

Chennai

2-4 Yrs

Not Disclosed

Explore more jobs
Software Developer
12 salaries
unlock blur

₹4 L/yr - ₹14.8 L/yr

Software Engineer
10 salaries
unlock blur

₹5 L/yr - ₹11.5 L/yr

Market Analyst
8 salaries
unlock blur

₹4.2 L/yr - ₹7 L/yr

Consultant
7 salaries
unlock blur

₹9 L/yr - ₹10.6 L/yr

Product Manager
7 salaries
unlock blur

₹23.3 L/yr - ₹28.8 L/yr

Explore more salaries
Compare Pando with

Vyapar

3.5
Compare

Tata nexarc

3.1
Compare

Classplus

3.4
Compare

Fleetx.io

3.6
Compare
write
Share an Interview