Upload Button Icon Add office photos

Filter interviews by

PDI Software Interview Questions and Answers

Updated 9 Oct 2024

PDI Software Interview Experiences

Popular Designations

3 interviews found

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

I was interviewed before Oct 2023.

Round 1 - Technical 

(1 Question)

  • Q1. Questions regarding project and previous experience
Round 2 - Technical 

(1 Question)

  • Q1. Technical Java questions

Software Engineer III Interview Questions asked at other Companies

Q1. Find the highest floor, from where if an egg is dropped will not break. k floor building and n eggs are given.
View answer (2)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Mar 2023. 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 - Technical 

(3 Questions)

  • Q1. How to use iterator in list and Map in java
  • Ans. 

    Iterators are used to traverse through elements in a collection. In Java, you can use iterators with lists and maps.

    • For lists, you can use the iterator() method to get an iterator and then use hasNext() and next() methods to iterate through the elements.

    • For maps, you can use the entrySet() method to get a set of key-value pairs, then get an iterator from the set and use hasNext() and next() methods to iterate through t

  • Answered by AI
  • Q2. Detailed review of BDD framework used in project
  • Ans. 

    BDD framework is used for behavior-driven development to write test cases in plain language

    • BDD framework helps in collaboration between developers, testers, and business stakeholders

    • It focuses on the behavior of the system rather than implementation details

    • Common BDD frameworks include Cucumber, SpecFlow, and JBehave

    • Test scenarios are written in a human-readable format using Given-When-Then syntax

  • Answered by AI
  • Q3. Status code of all rest assured api responses
  • Ans. 

    Status codes of REST Assured API responses are used to indicate the outcome of the request.

    • Status code 200 - OK: Indicates that the request was successful.

    • Status code 201 - Created: Indicates that a new resource was successfully created.

    • Status code 400 - Bad Request: Indicates that the request was malformed or invalid.

    • Status code 401 - Unauthorized: Indicates that authentication is required.

    • Status code 404 - Not Found:...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - learn more about Oops and collections in java

Skills evaluated in this interview

Software Tester Interview Questions asked at other Companies

Q1. Which is a best technique to generate automated test report ?
View answer (1)

I applied via Referral and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Networking related questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for basic networking questions available at google.

Technical Support Engineer Interview Questions asked at other Companies

Q1. Admin Questions :- What is Relationships what are types of relationships
View answer (4)

Jobs at PDI Software

View all

Interview questions from similar companies

Assistant Manager growth marketing Interview Questions & Answers

Swiggy user image Anonymous

posted on 14 Feb 2025

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Jan 2025.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself and workex, One campaign you are proud of and what you did, The interview lasted for 30 mins.
  • Q2. Why are you leaving your current company and details on that.
Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself, 2 digital campaigns that you did and what you learn from them, Logical question on bulb : 3 bulbs are in a room and it's switches are outside the room, and you can only enter the ro...
  • Q2. How many times does whatsapp application gets open in your household?

Interview Preparation Tips

Interview preparation tips for other job seekers - Structure your answers well, they analyse your thought process, analysis skills and observation
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - One-on-one 

(4 Questions)

  • Q1. Good communication with our team and my colleagues
  • Q2. Need improve my skills and strictly fallow up our EHS values
  • Q3. Target is more important in your life, keep doing work unless get your unreachable targets.
  • Q4. Good behaviour build your team and save ethics.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep doing work unless get your unreachable targets.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(3 Questions)

  • Q1. Introduction about your self
  • Q2. Joining day after tomorrow
  • Q3. Report in time at office
Round 2 - One-on-one 

(2 Questions)

  • Q1. Introduction about your self
  • Q2. Joining the day after tomorrow
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Jan 2025.

Round 1 - Technical 

(7 Questions)

  • Q1. Basic Javascript questions were asked like Hoisting, Event Loop, Closure.
  • Q2. What are semantic tags? << HTML based question
  • Ans. 

    Semantic tags in HTML are specific tags that provide meaning to the content they enclose.

    • Semantic tags help search engines and screen readers understand the structure of a webpage.

    • Examples of semantic tags include <header>, <footer>, <nav>, <article>, <section>, <aside>, <main>, <figure>, <figcaption>.

    • Using semantic tags improves SEO and accessibility of a website.

  • Answered by AI
  • Q3. What is currying in js?
  • Ans. 

    Currying is a technique in functional programming where a function with multiple arguments is transformed into a sequence of nested functions, each taking a single argument.

    • Currying helps in creating reusable functions and partial application.

    • It allows you to create new functions by fixing some parameters of an existing function.

    • Example: const add = (a) => (b) => a + b; add(2)(3) will return 5.

  • Answered by AI
  • Q4. What is the difference between Map and Filter?
  • Ans. 

    Map is used to transform each element of an array, while Filter is used to select elements based on a condition.

    • Map returns a new array with the same length as the original array, but with each element transformed based on a provided function.

    • Filter returns a new array with only the elements that pass a provided condition function.

    • Example for Map: [1, 2, 3].map(num => num * 2) will result in [2, 4, 6].

    • Example for Fi...

  • Answered by AI
  • Q5. What is the difference between Map and ForEach?
  • Ans. 

    Map creates a new array with the results of calling a provided function on every element, while forEach executes a provided function once for each array element.

    • Map returns a new array with the same length as the original array, while forEach does not return anything.

    • Map does not mutate the original array, while forEach can mutate the original array.

    • Map is more suitable for transforming data and creating a new array, w...

  • Answered by AI
  • Q6. What is the difference between Authentication and Authorization?
  • Ans. 

    Authentication verifies the identity of a user, while authorization determines the user's access rights.

    • Authentication confirms the user's identity through credentials like username and password.

    • Authorization determines what actions the authenticated user is allowed to perform.

    • Authentication precedes authorization in the security process.

    • Example: Logging into a website (authentication) and then accessing specific pages

  • Answered by AI
  • Q7. What is the difference between Local storage and Session storage?
  • Ans. 

    Local storage persists even after the browser is closed, while session storage is cleared when the browser is closed.

    • Local storage has no expiration date, while session storage expires when the browser is closed.

    • Local storage stores data with no limit, while session storage has a limit of around 5MB.

    • Local storage data is available across all windows/tabs for that domain, while session storage data is only available wit...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. This was the Final round, it lasted for around 30 mins and the interviewer gave me a coding question to build a Countdown Timer app.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for Live coding round that's the important one.
Also prepare the questions based on HTML, CSS
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Dec 2024.

Round 1 - Technical 

(4 Questions)

  • Q1. The Electrical technician job description entails participating in independent maintenance related training activities organized by the field operations teams and coordinating shutdowns to ensure that ...
  • Q2. Commercial and Industrial Electrical Maintenance is the process of regularly inspecting, testing, cleaning, and repairing electrical systems and components to ensure they are safe and functioning Prope...
  • Q3. The technician’s role also includes participating in planning, ensuring effective spare parts management, and supervising continuous project improvement.
  • Q4. Electrical technicians perform various functions, depending on the particular operations of the company or organization they work with. However, their role is majorly to ensure effective repairs and mainte...

Interview Preparation Tips

Interview preparation tips for other job seekers - Electrical safety
Power suppliers
Electrical troubleshooting
PLC Electrical control panel
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Case Study 

As discussed please check and confirm

Round 2 - One-on-one 

(2 Questions)

  • Q1. One -one round questions and answers
  • Q2. Working time table is only experience

Interview Preparation Tips

Interview preparation tips for other job seekers - My friend is only and family members
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Jan 2025.

Round 1 - One-on-one 

(1 Question)

  • Q1. What is your current work experience, and can you provide a case study on how to improve monetization for Netflix?
Round 2 - One-on-one 

(1 Question)

  • Q1. Case Study - Favourite product

Interview Preparation Tips

Interview preparation tips for other job seekers - I interviewed with Meesho for a role I was excited about and completed 2 rounds successfully. However, after the interviews, I received no feedback or updates from the HR Team. Despite multiple followups via email, WhatsApp and call, there was no response - just complete silence.

Ghosting candidates after they invest time and effort into the hiring process in unprofessional and disrespectful. It reflects poorly on Meesho's hiring culture and raises questions about their values. Providing feedback, even if it's a rejection, it's a basic courtesy that candidates deserve.

The experience has left a negative impression of Meesho's professionalism. I hope they improve their hiring practices to treat candidates with the respect they deserve

PDI Software Interview FAQs

How many rounds are there in PDI Software interview?
PDI Software interview process usually has 2 rounds. The most common rounds in the PDI Software interview process are Technical and Resume Shortlist.
How to prepare for PDI Software 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 PDI Software. The most common topics and skills that interviewers at PDI Software expect are SQL, Linux, Logistics, Windows and Javascript.
What are the top questions asked in PDI Software interview?

Some of the top questions asked at the PDI Software interview -

  1. how to use iterator in list and Map in j...read more
  2. Detailed review of BDD framework used in proj...read more
  3. Status code of all rest assured api respon...read more

Tell us how to improve this page.

PDI Software Interview Process

based on 3 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

IBM Interview Questions
4.0
 • 2.4k Interviews
Oracle Interview Questions
3.7
 • 897 Interviews
SAP Interview Questions
4.2
 • 308 Interviews
Salesforce Interview Questions
4.1
 • 272 Interviews
Adobe Interview Questions
3.9
 • 250 Interviews
Blue Yonder Interview Questions
3.9
 • 58 Interviews
View all

PDI Software Reviews and Ratings

based on 18 reviews

4.0/5

Rating in categories

3.6

Skill development

3.8

Work-life balance

3.8

Salary

3.6

Job security

3.8

Company culture

3.5

Promotions

3.5

Work satisfaction

Explore 18 Reviews and Ratings
Software Engineer IV

Chennai

3-5 Yrs

Not Disclosed

System Administrator I

Chennai

3-4 Yrs

Not Disclosed

Software Engineer III

Chennai

1-9 Yrs

Not Disclosed

Explore more jobs
Software Engineer
35 salaries
unlock blur

₹7.4 L/yr - ₹13.8 L/yr

Software Engineer III
12 salaries
unlock blur

₹15 L/yr - ₹30 L/yr

Senior Software Engineer
11 salaries
unlock blur

₹12.7 L/yr - ₹25 L/yr

Automation Test Engineer
9 salaries
unlock blur

₹4.1 L/yr - ₹12.9 L/yr

Softwaretest Engineer
8 salaries
unlock blur

₹3 L/yr - ₹6.1 L/yr

Explore more salaries
Compare PDI Software with

Manhattan Associates

3.8
Compare

Blue Yonder

3.9
Compare

SAP

4.2
Compare

Oracle

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