Upload Button Icon Add office photos
Engaged Employer

i

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

Pegasystems Verified Tick

Compare button icon Compare button icon Compare
3.6

based on 299 Reviews

Filter interviews by

Pegasystems Agile Project Manager Interview Questions and Answers

Updated 26 Mar 2024

Pegasystems Agile Project Manager Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I was interviewed in Feb 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. How would you coach difficult stakeholders
  • Q2. Tell me of a time when you had to work with a senior stakeholder to address a divergent point of view
Round 2 - One-on-one 

(1 Question)

  • Q1. More personal questions -how many team members you managed, what were the levels of your span.
Round 3 - One-on-one 

(1 Question)

  • Q1. Why Pega, what inspired you and what tires you

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Tech questions in agile process and PM role
Round 2 - Technical 

(1 Question)

  • Q1. Secnario base questions...like how will you handle this business case, what is your approach to solve the issue ... etc
Round 3 - HR 

(1 Question)

  • Q1. They just collect data and made an offer, no negotion on salary...they have an fix range for banda
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Explain OOPS concept and how you apply it in your implementation
  • Ans. 

    OOPS is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOPS focuses on the concept of classes and objects

    • Encapsulation: bundling data and methods that operate on the data within a single unit

    • Inheritance: allows a class to inherit properties and behavior from another class

    • Polymorphism: ability to present the same interface for diffe...

  • Answered by AI
  • Q2. Difference between Comparable and Comparator. Difference between Abstract Class and Interface
  • Ans. 

    Comparable is an interface used for natural ordering, Comparator is an interface used for custom ordering. Abstract class can have method implementations, Interface cannot.

    • Comparable interface is used to define the natural ordering of objects. Example: String class implements Comparable interface for natural ordering based on alphabetical order.

    • Comparator interface is used to define custom ordering of objects. Example:...

  • Answered by AI
  • Q3. Given a string. Find the number of occurrences of each character
  • Ans. 

    Count occurrences of each character in a given string

    • Create an array to store the count of each character

    • Iterate through the string and increment the count of each character in the array

    • Return the array with counts for each character

  • Answered by AI
  • Q4. Given an array. Remove the number of duplicates
  • Ans. 

    Remove duplicates from an array of strings

    • Iterate through the array and store each element in a set to keep track of unique values

    • Create a new array with the unique values from the set

  • Answered by AI
  • Q5. Given a student object having name and grade data variables. Sort the object on the basis of highest grade.

Skills evaluated in this interview

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

I applied via campus placement at National Institute of Technology (NIT), Raipur and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

The coding test consists of multiple-choice questions and one medium-hard level coding question.

Round 2 - Technical 

(5 Questions)

  • Q1. Given three jugs with different capacities and no measuring tools, how can you measure out a specific amount of water using the jugs you have?
  • Q2. What is the angle between the minute and hour hand of a clock at 3:45?
  • Q3. What is indexing in Database Management Systems (DBMS)?
  • Q4. What is the lifecycle of a React component?
  • Q5. How you delete entry in mongodb database

Software Engineer Interview Questions & Answers

Amadeus user image Atul Singh Jamwal

posted on 18 Jun 2024

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

I applied via Approached by Company and was interviewed in May 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Why you want to join Amadeus
  • Q2. WHy left the previous company
  • Q3. What do you know about Amadeus
  • Q4. Why we should pay you this much

Interview Preparation Tips

Interview preparation tips for other job seekers - Do study more about Amadues
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Coding Test 

They gave 3 questions from File Handling, Trees and Arrays. Have to slove atlest one question in that minutes.

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

I applied via Recruitment Consulltant and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Project details question
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 - Technical 

(1 Question)

  • Q1. LRU Cache question and couple on array
Round 3 - Technical 

(1 Question)

  • Q1. System Design question related to Lift
Round 4 - One-on-one 

(1 Question)

  • Q1. Managerial, project related and SQL
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jun 2023. There were 4 interview rounds.

Round 1 - Coding Test 

2 Coding questions, 1 SQL and a few MCQs.

Round 2 - Technical 

(2 Questions)

  • Q1. Given a String find the lexicographically lowest substring containing k number of 1s
  • Ans. 

    Find the lexicographically lowest substring with k 1s in a given string.

    • Iterate through the string and maintain a sliding window of size k.

    • Keep track of the count of 1s in the window and update the result if a valid substring is found.

    • Return the lexicographically lowest substring with k 1s.

  • Answered by AI
  • Q2. Given to solve SQL Questions based on Join and group by.
Round 3 - Technical 

(5 Questions)

  • Q1. Technical Discussion
  • Q2. Questions based on operating Systema and OOPs
  • Q3. Difference between Abstract class and interface
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructors, fields, and methods, while interface cannot have any implementation.

    • A class can only extend one abstract class, but can implement multiple interfaces.

    • Abstract classes are used to define a common behavior for subclasses, while interfaces are used to define a contract for cl...

  • Answered by AI
  • Q4. Process Synchronisation
  • Q5. Was asked what project would I take up if I get funded and list the challenges of taking up the project.
Round 4 - HR 

(1 Question)

  • Q1. Just Basic HR Questions

Interview Preparation Tips

Topics to prepare for Akamai Technologies Software Engineer interview:
  • DSA
  • Operating Systems
  • OOPs
  • Computer Newtworks
  • Distributive Systems
  • System Design
  • SQL
Interview preparation tips for other job seekers - Be confident and don't let the interviewer's attention away from you.
If you don't know the solution, start small and make the interviewer know that you hold a good grip on the concepts.
Ask Interviewers may questions, this way you would let them know that you are interested in the company and the role.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

4 questions been asked in coding test

Round 2 - Technical 

(1 Question)

  • Q1. DSA been asked in the interview
Round 3 - HR 

(1 Question)

  • Q1. How do u deal with the members who are having conflict of interest

Pegasystems Interview FAQs

How many rounds are there in Pegasystems Agile Project Manager interview?
Pegasystems interview process usually has 3 rounds. The most common rounds in the Pegasystems interview process are One-on-one Round.

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 790 Interviews
Adobe Interview Questions
4.0
 • 248 Interviews
View all
Software Engineer
200 salaries
unlock blur

₹7.8 L/yr - ₹26 L/yr

Senior Software Engineer
159 salaries
unlock blur

₹11 L/yr - ₹35 L/yr

Senior Solution Engineer
148 salaries
unlock blur

₹9.5 L/yr - ₹22.5 L/yr

Solution Engineer
124 salaries
unlock blur

₹7.8 L/yr - ₹19 L/yr

Principal Software Engineer
97 salaries
unlock blur

₹17.4 L/yr - ₹41.6 L/yr

Explore more salaries
Compare Pegasystems with

Salesforce

4.1
Compare

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

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