Upload Button Icon Add office photos

Filter interviews by

Press Ganey Software Engineer Interview Questions and Answers for Experienced

Updated 22 Oct 2023

Press Ganey Software Engineer Interview Experiences for Experienced

2 interviews found

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Apr 2023. There were 3 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 

(2 Questions)

  • Q1. Questions on kubernetes
  • Q2. Question on aws
Round 3 - One-on-one 

(1 Question)

  • Q1. Questions on can you work in rotation shifts

Interview Preparation Tips

Interview preparation tips for other job seekers - First round was technical felt easy. Second was kinda managerial round.
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in May 2023.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Basic questions about .net
Round 3 - HR 

(1 Question)

  • Q1. Hr sir explained about the role and the company details
Round 4 - Technical 

(1 Question)

  • Q1. Deep discussion on .net and logic programming coding

Interview questions from similar companies

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

I applied via Referral

Round 1 - Coding Test 

2 coding question were asked

Round 2 - Technical 

(2 Questions)

  • Q1. Sum on node in binary tree
  • Ans. 

    Recursively sum the values of nodes in a binary tree

    • Use a recursive function to traverse the tree and add the values of each node

    • Base case: if the current node is null, return 0

    • Recursive step: return the sum of current node value, left subtree sum, and right subtree sum

  • Answered by AI
  • Q2. Lp question asked
Round 3 - Technical 

(2 Questions)

  • Q1. Question on string manipulation
  • Q2. Lp question asked
Round 4 - Technical 

(2 Questions)

  • Q1. Managerial question on projects were asked
  • Q2. Past experience and leadership question

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

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

Round 1 - Technical 

(1 Question)

  • Q1. Internal working of Hashmap
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to quickly retrieve values based on keys.

    • HashMap internally uses an array of linked lists to store key-value pairs.

    • When a key-value pair is added, the key is hashed to determine the index in the array where it will be stored.

    • If multiple keys hash to the same index, a linked list is used to handle collisions.

    • To retrieve a value, the key is hashed a...

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Basic js and react
Round 2 - Technical 

(1 Question)

  • Q1. Advance Js and react
Round 3 - One-on-one 

(1 Question)

  • Q1. Data structure and managerial
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. Basics of your technical skills
Round 3 - Technical 

(1 Question)

  • Q1. More Projects related questions

I applied via Company Website and was interviewed in Apr 2022. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Is java springs good work
  • Q2. Very essay so just Tuff question

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing advice

I applied via Naukri.com and was interviewed in Oct 2021. There were 4 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. 1 : Assignment round- was given a problem statement and app design and was asked to make that app.
  • Q2. 2: Code Discussion round based on the app that I made
  • Q3. 3: Technical 1 questions on basic DSA and deep tech stack based questions on Android everything that you can cover basically for android
  • Q4. 4: Technical 2 questions were high level based on Clean architecture , SOLID principles, Dependency Injection
  • Q5. 5: Managerial round : 30% tech rest was behaviour part and previous organization experiences
  • Q6. Last was salary negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a good grip on the tech stack for which you are applying and brush up on DSA concepts and problem solving not very intensive just that you can come up with an approach.

I applied via Job Portal and was interviewed in Dec 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Self introduction, project, programming basics. The interview questions completely asked in what you mentioned in resume, like project based, skills based that programming language s and all

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, talk attentive and cler, be prepare your self what you mentioned in resume that's it

I applied via Recruitment Consultant and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. What is comp & comp 3 differance ?
  • Ans. 

    COMP and COMP-3 are data types used in COBOL programming language.

    • COMP is a binary data type that stores numeric values as binary integers.

    • COMP-3 is a packed decimal data type that stores numeric values as packed decimal digits.

    • COMP uses less storage space compared to COMP-3.

    • COMP-3 is more suitable for decimal arithmetic operations.

    • COMP-3 values are stored in a packed format, where each digit occupies half a byte.

    • COMP-...

  • Answered by AI
  • Q2. How to check file is empty or not ?
  • Ans. 

    To check if a file is empty or not, we can use the file's size or read the file and check for any content.

    • Get the size of the file using file system APIs and check if it is zero.

    • Read the file and check if it contains any content.

    • Handle exceptions or errors that may occur during file operations.

  • Answered by AI
  • Q3. How many ways data pass jcl to cobol program ?
  • Ans. 

    Data can pass from JCL to COBOL program in multiple ways, such as through input files, system symbols, and program parameters.

    • Input files: Data can be passed to a COBOL program through input files specified in the JCL.

    • System symbols: JCL can define system symbols that can be accessed by the COBOL program to retrieve data.

    • Program parameters: JCL can pass parameters to the COBOL program, which can be used to receive data...

  • Answered by AI
  • Q4. How to data insert or update in table ?
  • Ans. 

    To insert or update data in a table, use SQL statements like INSERT INTO or UPDATE.

    • For inserting data, use the INSERT INTO statement followed by the table name and column names.

    • Specify the values to be inserted using the VALUES keyword.

    • For updating data, use the UPDATE statement followed by the table name.

    • Set the column values to be updated using the SET keyword.

    • Use conditions with the WHERE clause to specify which row

  • Answered by AI
  • Q5. What is array ? how to load data ?
  • Ans. 

    An array is a data structure that stores a collection of elements of the same type.

    • Arrays can be used to store and access multiple values using a single variable.

    • To load data into an array of strings, you can assign values to each element individually or use a loop.

    • Example: String[] names = {"John", "Jane", "Mike"};

    • Example: for(int i = 0; i < names.length; i++) { names[i] = "Value" + i; }

  • Answered by AI
  • Q6. 1 have 1000 records i will get abend in 590 th record how to restart logic using ?
  • Q7. We have 2 files eliminate duplicates and send to duplicate files in to another out put file how to achieve it ?
  • Ans. 

    To eliminate duplicates from 2 files and send them to another output file, we can use a combination of file reading, hashing, and file writing.

    • Read the contents of both files and store them in separate arrays or lists.

    • Create a hash table or dictionary to keep track of the unique elements in the arrays.

    • Iterate through the arrays and add each element to the hash table. If the element already exists, skip it.

    • Write the con...

  • Answered by AI
  • Q8. Soc 7 abend how to find ? resolve it ?
  • Ans. 

    S0C7 abend is a mainframe error caused by invalid data. It can be resolved by identifying the source of the error and correcting it.

    • S0C7 abend is caused by invalid data in a numeric field

    • To resolve it, identify the source of the error and correct it

    • Common causes include incorrect data types, invalid characters, and overflow

    • Debugging tools like IBM Debug Tool can help identify the source of the error

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - its going good

Skills evaluated in this interview

Press Ganey Interview FAQs

How many rounds are there in Press Ganey Software Engineer interview for experienced candidates?
Press Ganey interview process for experienced candidates usually has 3-4 rounds. The most common rounds in the Press Ganey interview process for experienced candidates are Technical, Resume Shortlist and HR.
What are the top questions asked in Press Ganey Software Engineer interview for experienced candidates?

Some of the top questions asked at the Press Ganey Software Engineer interview for experienced candidates -

  1. Deep discussion on .net and logic programming cod...read more
  2. Basic questions about ....read more
  3. Questions on kuberne...read more

Tell us how to improve this page.

Press Ganey Software Engineer Salary
based on 10 salaries
₹4 L/yr - ₹7 L/yr
35% less than the average Software Engineer Salary in India
View more details

Press Ganey Software Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

5.0

Work-Life balance

5.0

Salary & Benefits

3.0

Job Security

4.0

Company culture

3.0

Promotions/Appraisal

4.0

Work Satisfaction

Explore 1 Review and Rating
Software Engineer
10 salaries
unlock blur

₹4 L/yr - ₹7 L/yr

Support Analyst
8 salaries
unlock blur

₹1.8 L/yr - ₹4 L/yr

Analyst
5 salaries
unlock blur

₹2.8 L/yr - ₹3.4 L/yr

Quality Analyst
5 salaries
unlock blur

₹2.5 L/yr - ₹7 L/yr

Senior Software Engineer
4 salaries
unlock blur

₹8 L/yr - ₹19.5 L/yr

Explore more salaries
Compare Press Ganey with

NRC Health

5.0
Compare

Qualtrics XM

2.2
Compare

Medallia

4.1
Compare

UKG

3.2
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview