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

Compare button icon Compare button icon Compare

Filter interviews by

Pando Interview Questions, Process, and Tips

Updated 16 Jan 2025

Top Pando Interview Questions and Answers

Pando Interview Experiences

Popular Designations

9 interviews found

Node Js Backend Developer Intern 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
-
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

Software Engineer Intern Interview Questions asked at other Companies

Q1. Check if two trees are MirrorYou are given two arbitrary binary trees consisting of N and M number of nodes respectively, your task is to check whether the two trees are mirror of each other or not. Two trees are said to be mirror of each o... read more
View answer (2)
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.

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (171)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at SRM Institute of Science & Technology, Chennai 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.
  • 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

Python Developer Interview Questions asked at other Companies

Q1. Tell me the logic of program to reverse a given string word by word without using any built in function.
View answer (9)

Pando interview questions for popular designations

 Software Engineer

 (3)

 Python Developer

 (1)

 Salesforce Developer

 (1)

 Senior Product Designer

 (1)

 Software Developer

 (1)

 Software Engineer Intern

 (1)

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

Salesforce Developer Interview Questions asked at other Companies

Q1. Write a trigger to update contact when accounts phone changed.
View answer (6)
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

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)

Jobs at Pando

View all
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.

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (185)
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.

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (41)

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

Senior Product Designer Interview Questions asked at other Companies

Q1. What would be the design solutions for improving the efficieny of a Swiggy Chat Support Executive so that they can satisfy more customers in less time?
View answer (1)

Interview questions from similar companies

Accounts Manager Interview Questions & Answers

Vyapar user image Satya Prakash Jena

posted on 23 Feb 2025

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

If someone is considering an insider trade in Vyapar, it is a poor choice.

Round 2 - Aptitude Test 

The interviewer will administer an aptitude test, and those who pass will proceed to the final round.

Round 3 - One-on-one 

(4 Questions)

  • Q1. Some basic questions about sell, how to make company growth, give 3 benefits of sell
  • Q2. Previous Internship experience.
  • Q3. How much revenue contribution towards the our company within one month
  • Q4. Why you are interested to be joining as a sells person

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 Supply Chain, Logistics, SAAS, Data Analysis and SAP.
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. Features of python, difference between java and python, modules in python, oops...read more
  3. next was to check whether two circles intersect, given their radii and cente...read more

Tell us how to improve this page.

Pando Interview Process

based on 10 interviews

Interview experience

4.3
  
Good
View more
Join Pando #1 Software for Autonomous Supply Chains

Interview Questions from Similar Companies

ITC Interview Questions
3.9
 • 552 Interviews
Tata Group Interview Questions
4.2
 • 358 Interviews
Adani Group Interview Questions
3.9
 • 185 Interviews
Bajaj Group Interview Questions
3.9
 • 3 Interviews
View all

Pando Reviews and Ratings

based on 33 reviews

3.5/5

Rating in categories

3.6

Skill development

3.4

Work-life balance

3.5

Salary

3.4

Job security

3.9

Company culture

3.0

Promotions

3.5

Work satisfaction

Explore 33 Reviews and Ratings
Digital Marketing Specialist

Chennai

3-7 Yrs

₹ 6-12 LPA

Integration Lead

Chennai

3-7 Yrs

Not Disclosed

Delivery Client Partner

Chennai

4-7 Yrs

Not Disclosed

Explore more jobs
Software Engineer
12 salaries
unlock blur

₹8 L/yr - ₹19 L/yr

Software Developer
9 salaries
unlock blur

₹8.9 L/yr - ₹34.4 L/yr

Market Analyst
7 salaries
unlock blur

₹4.2 L/yr - ₹5.7 L/yr

Product Manager
7 salaries
unlock blur

₹20 L/yr - ₹28.8 L/yr

Analyst
6 salaries
unlock blur

₹4.2 L/yr - ₹11 L/yr

Explore more salaries
Compare Pando with

Reliance Industries

4.0
Compare

Tata Group

4.2
Compare

Aditya Birla Group

4.1
Compare

Hindustan Unilever

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