Upload Button Icon Add office photos

Filter interviews by

Coforge DPA Pega Developer Interview Questions and Answers

Updated 23 Aug 2023

Coforge DPA Pega Developer Interview Experiences

1 interview found

Pega Developer Interview Questions & Answers

user image Archana MR

posted on 23 Aug 2023

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

I applied via campus placement at Sri Sairam College of Engineering, Bangalore and was interviewed in Feb 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 - Aptitude Test 

Numerical reasoning ,verbal reasoning, logical reasoning

Round 3 - Technical 

(2 Questions)

  • Q1. Basic knowledge on CSA
  • Q2. All the basic concepts need to know very well

Interview questions from similar companies

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

(1 Question)

  • Q1. Tell me about yourself
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

I was interviewed in Jan 2025.

Round 1 - Group Discussion 

Programming questions related to Python and React.

Round 2 - Group Discussion 

Programmatical problem related to Python and React

Round 3 - HR 

(1 Question)

  • Q1. Salary Discussion
Round 4 - Aptitude Test 

Programming Problems related to react and python.

Round 5 - Technical 

(1 Question)

  • Q1. Object Oriented Programming, Memory Management, Multiprocessing, multithreading, GIL, React Components
Round 6 - Technical 

(1 Question)

  • Q1. Object Oriented Programming, GIL, Multi threading, multiprocessing, React Component, Shallow Copy, Deep Copy
Round 7 - Technical 

(1 Question)

  • Q1. Object Oriented Programming, GIL, Multi threading, multiprocessing, React Component, Shallow Copy, Deep Copy
Round 8 - Technical 

(1 Question)

  • Q1. Object Oriented Programming, GIL, Multi threading, multiprocessing, React Component, Shallow Copy, Deep Copy
Round 9 - One-on-one 

(1 Question)

  • Q1. Object Oriented Programming, GIL, Multi threading, multiprocessing, React Component, Shallow Copy, Deep Copy, Django ORM, Class Inheritance

Interview Preparation Tips

Interview preparation tips for other job seekers - In the name of the client Round, the internal team will contact you to conduct interview calls known as Preparation Call Round before the Client Round, aimed at creating a positive impression for the client. Typically, no additional rounds follow the HR round, but they conducted five more rounds while merely reiterating the aforementioned details, which led me to cancel my own job application.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Coding Test 

It's walkin, so they conducted 1 technical mcqs round.

Round 2 - Technical 

(11 Questions)

  • Q1. Multi threading
  • Q2. Internal working of hashmap
  • Ans. 

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

    • HashMap uses an array of buckets to store key-value pairs.

    • Keys are hashed to determine the index in the array where the key-value pair will be stored.

    • In case of hash collisions, a linked list or a balanced tree is used to store multiple key-value pairs in the same bucket.

    • HashMap allows null keys...

  • Answered by AI
  • Q3. Spring batch related
  • Q4. Non repeating characters in a array
  • Ans. 

    Function to find and return all non-repeating characters in an array of strings.

    • Iterate through the array and count the occurrences of each character using a HashMap.

    • Then iterate through the array again and check if the count of each character is 1, if so add it to the result list.

    • Return the list of non-repeating characters.

  • Answered by AI
  • Q5. 3rd highest salary
  • Ans. 

    To find the 3rd highest salary in a database, we can use a SQL query with the 'LIMIT' and 'OFFSET' keywords.

    • Use a SQL query with 'ORDER BY salary DESC' to sort the salaries in descending order.

    • Use 'LIMIT 1 OFFSET 2' to skip the first two highest salaries and retrieve the third highest salary.

    • Example: SELECT salary FROM employees ORDER BY salary DESC LIMIT 1 OFFSET 2;

  • Answered by AI
  • Q6. Qualifier vs primary
  • Ans. 

    A qualifier in Java is used to specify additional information about a primary, which is the main data type or variable.

    • A primary in Java is the main data type or variable, while a qualifier provides additional information about the primary.

    • Qualifiers can be used to modify the behavior or characteristics of a primary.

    • For example, in Java, 'final' is a qualifier that can be used to make a variable constant.

  • Answered by AI
  • Q7. Controller vs restcontroller
  • Ans. 

    The main difference is that @RestController is a specialized version of @Controller that is used for RESTful web services.

    • Both @Controller and @RestController are used in Spring MVC to handle HTTP requests, but @RestController is specifically used for RESTful web services.

    • @Controller is used to create web pages, while @RestController is used to return data in JSON or XML format.

    • @RestController is a convenience annotati...

  • Answered by AI
  • Q8. Spring boot annotataions
  • Q9. Oops concepts with examples
  • Ans. 

    OOP concepts include inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class. Example: class Dog extends Animal.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: private variables with public getter and setter methods.

    • Polymorphism: Ability for objects to be treated as instances of their paren...

  • Answered by AI
  • Q10. Spring batch configuration
  • Q11. They covered all java, spring and Microservices
Round 3 - Technical 

(4 Questions)

  • Q1. Microservices architecture
  • Q2. How do Microservices communicate
  • Ans. 

    Microservices communicate with each other through various communication protocols like HTTP, messaging queues, and gRPC.

    • Microservices can communicate over HTTP using RESTful APIs.

    • Messaging queues like RabbitMQ or Kafka can be used for asynchronous communication between microservices.

    • gRPC is a high-performance, open-source RPC framework that can be used for communication between microservices.

    • Service discovery mechanism...

  • Answered by AI
  • Q3. How to access the Microservice end point
  • Ans. 

    Microservice endpoints can be accessed using HTTP requests with the appropriate URL

    • Use HTTP methods like GET, POST, PUT, DELETE to interact with the microservice

    • Construct the URL with the base URL of the microservice and the specific endpoint path

    • Include any necessary headers or parameters in the request for authentication or data filtering

  • Answered by AI
  • Q4. Why we use microservices
  • Ans. 

    Microservices allow for modular, scalable, and flexible software development by breaking down applications into smaller, independent services.

    • Microservices enable easier maintenance and updates as each service can be developed, deployed, and scaled independently.

    • They improve fault isolation, as failures in one service do not necessarily affect the entire application.

    • Microservices promote agility and faster time-to-mark...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Coding Test 

It was an amazing interview.

Round 2 - Assignment 

S abJDQdlqd qk; qdkq;q bdkq;d

Round 3 - One-on-one 

(5 Questions)

  • Q1. Dbjas xjhqvUGQJQ mnq
  • Q2. Add qbnjq j qj slx qx
  • Q3. DaD JDQ d KNX ax sqkd
  • Q4. Bj q dsa k xkqs xkna ;x
  • Q5. DJ m qd s Jhdvaljcbaf
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. How can we return multiple data with different data types from a function in .c#
  • Ans. 

    To return multiple data with different data types from a function in .c#, use Tuple or create a custom class with properties for each data type.

    • Use Tuple to return multiple data with different data types. For example: Tuple

    • Create a custom class with properties for each data type and return an instance of that class. For example: public class CustomData { public int Number { get; set; } public string

  • Answered by AI
  • Q2. How to Optimize Stored Procedure
  • Ans. 

    Optimizing stored procedures involves reducing execution time and resource usage.

    • Use proper indexing on tables involved in the stored procedure

    • Avoid using SELECT * and only fetch necessary columns

    • Minimize the use of temporary tables and cursors

    • Avoid using scalar functions in WHERE clauses

    • Consider using table-valued functions instead of scalar functions

  • Answered by AI
  • Q3. How do you run Azure Functions Locally
  • Ans. 

    Azure Functions can be run locally using Azure Functions Core Tools

    • Install Azure Functions Core Tools using npm

    • Create a new Azure Functions project using func init command

    • Run the Azure Functions project locally using func start command

  • Answered by AI
  • Q4. API Rate Limiting
  • Q5. API Return Types
  • Q6. What is a Partial Class
  • Ans. 

    Partial class is a class that allows splitting the definition of a class into multiple files.

    • Partial classes are used to divide a large class into smaller, more manageable parts.

    • Each part of a partial class must use the 'partial' keyword.

    • All parts of a partial class must be in the same namespace and assembly.

    • Partial classes are commonly used in code generation scenarios.

    • Example: public partial class MyClass { }

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected

I applied via Company Website

Round 1 - Coding Test 

2 DSA medium questions was asked.

Round 2 - Coding Test 

2 DSA coding questions and CS fundamentals

Round 3 - Technical 

(1 Question)

  • Q1. System design questions in a projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Know the fundamentals & go through must do easy and medium questions.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. MC question on desing pattern
  • Q2. Graph question, tree and hash
  • Q3. Design Book my show
Round 2 - Coding Test 

Dp question of jump game

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

(1 Question)

  • Q1. How to optimise fetching 1 lakh entries from db
  • Ans. 

    Use pagination, indexing, caching, and query optimization to fetch 1 lakh entries efficiently from the database.

    • Implement pagination to fetch data in smaller chunks

    • Create indexes on columns frequently used in queries

    • Use caching to store frequently accessed data

    • Optimize queries by avoiding unnecessary joins and using appropriate indexes

    • Consider using database-specific optimizations like query hints or stored procedures

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Ask questions related to CSS, Javascript, React, Node and Cloud stuff

Coforge DPA Interview FAQs

How many rounds are there in Coforge DPA Pega Developer interview?
Coforge DPA interview process usually has 3 rounds. The most common rounds in the Coforge DPA interview process are Resume Shortlist, Aptitude Test and Technical.
What are the top questions asked in Coforge DPA Pega Developer interview?

Some of the top questions asked at the Coforge DPA Pega Developer interview -

  1. All the basic concepts need to know very w...read more
  2. Basic knowledge on ...read more

Tell us how to improve this page.

Coforge DPA Pega Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Flipkart Interview Questions
4.0
 • 1.4k Interviews
Tata Motors Interview Questions
4.2
 • 991 Interviews
WNS Interview Questions
3.4
 • 977 Interviews
Infosys BPM Interview Questions
3.7
 • 928 Interviews
View all
Coforge DPA Pega Developer Salary
based on 5 salaries
₹4.1 L/yr - ₹7.2 L/yr
24% less than the average Pega Developer Salary in India
View more details

Coforge DPA Pega Developer Reviews and Ratings

based on 2 reviews

4.3/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

4.0

Salary

4.0

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 2 Reviews and Ratings
Senior Software Engineer
49 salaries
unlock blur

₹7 L/yr - ₹20 L/yr

Software Engineer
37 salaries
unlock blur

₹4 L/yr - ₹8.4 L/yr

Technology Specialist
19 salaries
unlock blur

₹8.6 L/yr - ₹30 L/yr

Software Developer
12 salaries
unlock blur

₹5.2 L/yr - ₹15 L/yr

Senior Test Engineer
7 salaries
unlock blur

₹5.3 L/yr - ₹8.6 L/yr

Explore more salaries
Compare Coforge DPA with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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