Upload Button Icon Add office photos

Filter interviews by

Coforge DPA Pega Developer Interview Questions and Answers for Experienced

Updated 23 Aug 2023

Coforge DPA Pega Developer Interview Experiences for Experienced

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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. React questions
  • Q2. JavaScript questions
Round 2 - Technical 

(2 Questions)

  • Q1. React questions
  • Q2. JavaScript questions
Round 3 - HR 

(2 Questions)

  • Q1. Company related questions
  • Q2. Questions based on previous experience
Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
No response

I applied via Walk-in

Round 1 - Technical 

(5 Questions)

  • Q1. Hibernate, MicroService static keywords,super key words
  • Q2. SQL group by query
  • Q3. Hibernate annotations
  • Q4. Singleton class
  • Q5. Controller and rest controller

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics question of Java
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Tell about ursellf and experiences
  • Q2. Coding program and complexity
  • Ans. 

    Coding programs can vary in complexity depending on the requirements and functionalities needed.

    • Complexity can be measured using Big O notation, which describes the worst-case scenario for time and space complexity.

    • Factors affecting complexity include data structures used, algorithms implemented, and the size of input data.

    • Examples of complex programs include machine learning algorithms, large-scale distributed systems

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Dynamic pragramming backtracking coding
  • Q2. Experinces and how you perform
  • Ans. 

    I have over 5 years of experience in software development, with a strong focus on web applications and database management.

    • Developed web applications using HTML, CSS, JavaScript, and various frameworks like Angular and React

    • Proficient in database management with SQL and NoSQL databases such as MySQL and MongoDB

    • Experience in version control systems like Git for collaborative development

    • Strong problem-solving skills and ...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Comparable vs Comparator
  • Ans. 

    Comparable is an interface used for natural ordering, while Comparator is used for custom ordering in Java.

    • Comparable interface is used to define the natural ordering of objects. It is implemented by the class whose objects are to be sorted.

    • Comparator interface is used to define custom ordering of objects. It is implemented by a separate class that compares objects based on specific criteria.

    • Example: Sorting a list of ...

  • Answered by AI
  • Q2. Difference between List and Set
  • Ans. 

    List allows duplicate elements and maintains insertion order, while Set does not allow duplicates and does not maintain order.

    • List can contain duplicate elements, Set cannot

    • List maintains insertion order, Set does not guarantee order

    • List is implemented by classes like ArrayList, LinkedList, Set is implemented by classes like HashSet, TreeSet

    • Example: List list = new ArrayList<>(); Set set = new HashSet<>();

Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(5 Questions)

  • Q1. Types of Relationship, What things needs to be done before deployment
  • Q2. Lifecycle hook of lwc
  • Ans. 

    Lifecycle hooks in LWC are methods that allow developers to interact with the component at specific stages of its lifecycle.

    • ConnectedCallback - called when a component is inserted into the DOM

    • RenderedCallback - called after a component's template has been rendered

    • DisconnectedCallback - called when a component is removed from the DOM

  • Answered by AI
  • Q3. Uses of aura component
  • Ans. 

    Aura components are used in Salesforce to build dynamic web applications with reusable components.

    • Create interactive user interfaces

    • Enhance user experience with dynamic content

    • Enable communication between components

    • Leverage event-driven architecture

    • Support client-side controller logic

  • Answered by AI
  • Q4. Connected apps via salesforce
  • Ans. 

    Connected apps in Salesforce allow external applications to integrate with Salesforce using APIs.

    • Connected apps are created in Salesforce to establish a secure connection with external applications.

    • They use OAuth protocol for authentication and authorization.

    • Connected apps define the permissions and access levels for external applications.

    • They can be used to integrate third-party applications, such as marketing automat

  • Answered by AI
  • Q5. Trigger based scenario question

Skills evaluated in this interview

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 

(2 Questions)

  • Q1. How is GIL and how python handle multi threading
  • Ans. 

    GIL stands for Global Interpreter Lock in Python, which limits execution of multiple threads at once.

    • GIL is a mutex that protects access to Python objects, preventing multiple threads from executing Python bytecodes at once.

    • Due to GIL, Python threads are not suitable for CPU-bound tasks but are still useful for I/O-bound tasks.

    • To handle multi-threading in Python, one can use multiprocessing module or asynchronous progr...

  • Answered by AI
  • Q2. Explain How React works under the hood.
  • Ans. 

    React uses a virtual DOM to efficiently update the actual DOM based on changes in state or props.

    • React creates a virtual DOM representation of the actual DOM.

    • When state or props change, React compares the virtual DOM with the actual DOM to determine the minimal set of changes needed.

    • React then updates the actual DOM efficiently to reflect the changes.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Deep understanding of technology you apply for

Skills evaluated in this interview

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

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

Round 1 - Technical 

(5 Questions)

  • Q1. Interview questions based on your technology
  • Q2. If database,what is procedure & function
  • Ans. 

    Procedures and functions are stored routines in a database that can be called to perform specific tasks.

    • Procedures are a set of SQL statements that perform a specific task. They can have input and output parameters.

    • Functions are similar to procedures but return a value. They can be used in SQL queries like any other function.

    • Both procedures and functions can improve code reusability and maintainability in a database sy

  • Answered by AI
  • Q3. What is trigger
  • Ans. 

    A trigger is a special kind of stored procedure that is automatically executed when certain events occur in a database.

    • Triggers are used to maintain data integrity by enforcing business rules or cascading changes.

    • They can be set to execute before or after INSERT, UPDATE, or DELETE operations.

    • Examples include auditing changes to a table, updating related records in other tables, or enforcing constraints.

  • Answered by AI
  • Q4. What'sis database
  • Ans. 

    A database is a structured collection of data that is stored and accessed electronically.

    • Database organizes and stores data in tables

    • It allows for efficient retrieval, insertion, and updating of data

    • Examples include MySQL, Oracle, MongoDB

  • Answered by AI
  • Q5. What is primary key?
  • Ans. 

    Primary key is a unique identifier for each record in a database table.

    • Primary key ensures each record in a table is uniquely identified.

    • It must have a unique value for each record.

    • Primary key can be a single column or a combination of columns.

    • Examples: ID column in a user table, combination of first name and last name in an employee table.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare and attend

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Version control
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

(1 Question)

  • Q1. Design airline service.
  • Ans. 

    Design an airline service for booking flights and managing reservations.

    • Create a user-friendly website or mobile app for customers to search and book flights.

    • Implement a secure payment system for online bookings.

    • Develop a system for managing flight schedules, seat availability, and reservations.

    • Include features for customers to check-in online, select seats, and view flight status.

    • Offer loyalty programs and discounts f

  • Answered by AI

Skills evaluated in this interview

Coforge DPA Interview FAQs

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

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

  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.

People are getting interviews through

based on 1 Coforge DPA interview
Campus Placement
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.6
 • 3.6k Interviews
LTIMindtree Interview Questions
3.9
 • 2.7k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Tata Motors Interview Questions
4.2
 • 965 Interviews
WNS Interview Questions
3.4
 • 946 Interviews
Infosys BPM Interview Questions
3.7
 • 910 Interviews
View all
Coforge DPA Pega Developer Salary
based on 5 salaries
₹4.1 L/yr - ₹7.2 L/yr
26% 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 & Benefits

4.0

Job Security

4.0

Company culture

4.0

Promotions/Appraisal

4.0

Work Satisfaction

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

₹7 L/yr - ₹18 L/yr

Software Engineer
36 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 Technology Specialist
10 salaries
unlock blur

₹23 L/yr - ₹30 L/yr

Explore more salaries
Compare Coforge DPA with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.6
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