Premium Employer

i

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

Coforge Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Coforge Pega Developer Interview Questions and Answers

Updated 23 Aug 2023

Coforge 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 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
  • Ans. 

    CSA (Certified System Architect) is a foundational certification for Pega developers focusing on application development and design.

    • CSA certification validates knowledge of Pega's core principles and application development.

    • It covers topics like case management, user interface design, and data modeling.

    • Example: Understanding how to create and manage cases in Pega applications.

    • The certification is essential for those lo...

  • Answered by AI
  • Q2. All the basic concepts need to know very well

What people are saying about Coforge

View All
a software engineer
6h
Globallogic vs Coforge
Which one should I go: Globallogic (17 fixed) or Coforge (18 fixed).
Got a question about Coforge?
Ask anonymously on communities.

Interview questions from similar companies

I appeared for an interview in Oct 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 75 min
Round difficulty - Medium

This round was MCQ and coding round. 25 MCQs and one coding question were asked. MCQs were based on OS, DBMS, Aptitude and Data Structures.

  • Q1. 

    Minimum Days to Complete Work

    You have 'N' tasks to complete. Each task can only be done on one of two specific days provided in two arrays: day1 and day2.

    For each task i, day1[i] represents the earliest...

  • Ans. 

    Find the minimum number of days required to complete all tasks given specific completion days for each task.

    • Sort the tasks based on day1 in ascending order.

    • For each task, choose the minimum of day1 and day2 as the completion day.

    • Keep track of the maximum completion day for each task.

    • The final answer is the maximum completion day of all tasks.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 30 min
Round difficulty - Easy

This was a Data Structural round. Only one coding question was asked by the interviewer. The interviewer was very friendly. This round was very easy.

  • Q1. 

    Bubble Sort Problem Statement

    Sort the given unsorted array consisting of N non-negative integers in non-decreasing order using the Bubble Sort algorithm.

    Input:

    The first line contains an integer 'T' r...
  • Ans. 

    Bubble Sort algorithm is used to sort an array of non-negative integers in non-decreasing order.

    • Implement the Bubble Sort algorithm to sort the array in place.

    • Compare adjacent elements and swap them if they are in the wrong order.

    • Repeat this process until the array is sorted.

    • Time complexity of Bubble Sort is O(n^2) in the worst case.

    • Example: For input [6, 2, 8, 4, 10], the output should be [2, 4, 6, 8, 10].

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from TIET - Thapar Institute of Engineering And Technology. I applied for the job as SDE - 1 in GurgaonEligibility criteria8Optum interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS,Dynamic Programminng,Operating System,DBMSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Be confident! 
Tip 2 : Maintain high Cgpa
Tip 3 : Do your best

Application resume tips for other job seekers

Tip 1 : Mention clear points
Tip 2 : Atleast 3 projects and never put anything you have not revised

Final outcome of the interviewSelected

Skills evaluated in this interview

Pega Developer Interview Questions Asked at Other Companies

asked in Accenture
Q1. What is the difference between a flow and a flow action?
Q2. What is the difference between Keyed Access and Parameterized Dat ... read more
asked in Accenture
Q3. What is the difference between a decision tree and a decision tab ... read more
asked in Accenture
Q4. How can you achieve batch processing?
Q5. What are Obj- and RDB- Methods in PEGA?

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 75 minutes
Round difficulty - Medium

It was in the evening.
It consisted of 26 questions of easy to hard level.
It consisted of 25 MCQs and only 1 coding problem.

  • Q1. 

    Author and Books Formatting

    Given a structured list of books and their authors, format the information as specified.

    Input:

    The first line of input contains an integer ‘T' representing the number of tes...
  • Ans. 

    The task is to format a list of authors and their books in a specific way as per the given input format.

    • Parse the input to extract the number of test cases, number of authors, author names, and their respective books.

    • Format the output by printing the author names and their books in the specified format.

    • Ensure correct sequence and labeling of authors and books as per the example provided.

    • Handle multiple test cases and a...

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 15 minutes
Round difficulty - Medium

It was more of CV based round. A brief discussion on projects was there followed by some questions like why optum.

  • Q1. 

    Delete a Node from a Linked List

    You are provided with a linked list of integers. Your task is to implement a function that deletes a node located at a specified position 'POS'.

    Input:

    The first line co...
  • Ans. 

    Implement a function to delete a node from a linked list at a specified position.

    • Traverse the linked list to find the node at the specified position.

    • Update the pointers of the previous and next nodes to skip the node to be deleted.

    • Handle edge cases such as deleting the head or tail of the linked list.

    • Ensure to free the memory of the deleted node to avoid memory leaks.

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 15 minutes
Round difficulty - Easy

A short round where some basic dbms questions like procedure, cursor were asked. Then some questions on whether I would prefer working alone or in a team. Where I see myself in 5 years.

  • Q1. 

    Graph Coloring Problem

    You are given a graph with 'N' vertices numbered from '1' to 'N' and 'M' edges. Your task is to color this graph using two colors, such as blue and red, in a way that no two adjacen...

  • Ans. 

    Given a graph with 'N' vertices and 'M' edges, determine if it can be colored using two colors without adjacent vertices sharing the same color.

    • Use graph coloring algorithm like BFS or DFS to check if the graph can be colored with two colors without conflicts.

    • Check if any adjacent vertices have the same color. If so, it is not possible to color the graph as described.

    • If the graph has connected components, color each co...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 8 CGPA, Computer oriented branchesOptum interview preparation:Topics to prepare for the interview - DBMS, Data Structures, Algorithms, Puzzles, Operating Systems, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Projects do not matter much for this company.
Tip 2 : I did almost all the puzzles from Interviewbit.
Tip 3 : DBMS is really important. Practice queries in SQL thoroughly. You should know the use of limit and top also. It may be asked to write the same query in more than 1 form.
Tip 4 : Practice all the data structures. Questions were simple and you should know the basics of every data structure.

Application resume tips for other job seekers

Tip 1 : Don't write anything just for the sake of it.
Tip 2 : If you are writing some project then be thorough with all the details. If you are not much confident, then simply remove it and focus on other subjects.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Basic questions related to skillset

Interview Questionnaire 

1 Question

  • Q1. Diff between c#, Asp.net and mvc
  • Ans. 

    C# is a programming language, ASP.NET is a web framework, and MVC is a design pattern for building web applications.

    • C# is used to write code for various applications, including web applications.

    • ASP.NET is a web framework that provides tools and libraries for building web applications.

    • MVC is a design pattern that separates an application into three components: Model, View, and Controller.

    • ASP.NET MVC is a web framework t...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - learn mvc , oops concepts

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. Reverse linked list
  • Ans. 

    Reversing a linked list involves changing the direction of its nodes to point to the previous node instead of the next.

    • 1. Initialize three pointers: previous (prev), current (curr), and next.

    • 2. Traverse the list: while curr is not null, set next to curr.next.

    • 3. Reverse the link: curr.next = prev.

    • 4. Move prev and curr one step forward: prev = curr; curr = next.

    • 5. Repeat until curr is null; prev will be the new head of t...

  • Answered by AI
  • Q2. Invert tree
  • Ans. 

    Invert a binary tree by swapping left and right children recursively.

    • Use a recursive approach to swap left and right children.

    • Base case: If the node is null, return.

    • Example: For a tree with root 1, left 2, right 3, after inversion, left becomes 3, right becomes 2.

    • Iterative approach can also be used with a queue or stack.

  • Answered by AI

I appeared for an interview in Oct 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Test was active from 28th September 8 PM till 2 AM (29th September’20). We could attempt at any time. 
1.5 Hr Duration
Two coding questions.

  • Q1. 

    Cycle Detection in Undirected Graph Problem Statement

    You are provided with an undirected graph containing 'N' vertices and 'M' edges. The vertices are numbered from 1 to 'N'. Your objective is to determi...

  • Ans. 

    Detect cycles in an undirected graph.

    • Use Depth First Search (DFS) to detect cycles in the graph.

    • Maintain a visited array to keep track of visited vertices.

    • If a visited vertex is encountered again during DFS, a cycle exists.

    • Check for cycles in each connected component of the graph.

    • Consider edge cases like disconnected graphs and self-loops.

  • Answered by AI
  • Q2. 

    Number of Islands Problem Statement

    You are provided with a 2-dimensional matrix having N rows and M columns, containing only 1s (land) and 0s (water). Your goal is to determine the number of islands in t...

  • Ans. 

    Count the number of islands in a 2D matrix of 1s and 0s.

    • Use depth-first search (DFS) to traverse the matrix and identify connected groups of 1s.

    • Maintain a visited array to keep track of visited cells to avoid redundant traversal.

    • Increment the island count each time a new island is encountered.

    • Consider all eight possible directions for connectivity while traversing the matrix.

    • Handle edge cases such as out-of-bounds indi...

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

Online video call round on Microsoft Teams
Interviewer was very friendly.
This round is often called Domain Discussion Round.

  • Q1. 

    Longest Repeating Substring Problem Statement

    Given a string str consisting of lowercase English alphabet letters, and an integer K, you are allowed to perform at most K operations on this string. An oper...

  • Ans. 

    Find the length of the longest substring consisting of repeating characters after performing K operations.

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

    • Keep track of the frequency of characters in the window.

    • Update the window by changing characters to maximize the length of repeating substring.

    • Return the length of the longest repeating substring obtained.

  • Answered by AI
Round 3 - HR 

Round duration - 60 minutes
Round difficulty - Medium

One hour HR round.
Also called Core Values Interview.
The Interviewer was a senior level employee and was very friendly.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in GurgaonEligibility criteriaAbove 6.5 GPA, CS and Allied StreamsPublicis Sapient interview preparation:Topics to prepare for the interview - DS/ALGO, Competitive Programming, OS, DBMS, SQL Queries, Computer Networks BasicsTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Interview is more like a two-way discussion rather than a question-answer session, feel free to ask for help/hints if you're stuck. 
Tip 2 : Even if you don't know the solution to the problem just try to work out a naive solution. You can optimize it later. 
Tip 3 : Make sure to read out the interview experiences of other people who have applied for the same role/company in the past

Application resume tips for other job seekers

Tip 1: Keep it concise and to the point.
Tip 2: Don't forget to show your best achievements

Final outcome of the interviewSelected

Skills evaluated in this interview

Are these interview questions helpful?

I applied via Campus Placement and was interviewed in Dec 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Program for pattern printing ,bubble sort
  • Ans. 

    Program to print a pattern and implement bubble sort on an array of strings.

    • For pattern printing, use nested loops to print the desired pattern.

    • For bubble sort, compare adjacent elements and swap if necessary.

    • Use a loop to iterate through the array until no more swaps are needed.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics

Skills evaluated in this interview

I appeared for an interview in Dec 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

  • Q1. Can you explain Bipolar Junction Transistors (BJTs)?
  • Ans. 

    BJTs are three-terminal semiconductor devices used for amplification and switching of electronic signals.

    • BJTs have three regions - emitter, base, and collector.

    • They can be NPN or PNP type, depending on the arrangement of semiconductor materials.

    • BJTs are current-controlled devices, where a small current at the base terminal controls a much larger current between the collector and emitter.

    • Common BJT examples include 2N22...

  • Answered by AI
  • Q2. 

    Graph Coloring Problem

    You are given a graph with 'N' vertices numbered from '1' to 'N' and 'M' edges. Your task is to color this graph using two colors, such as blue and red, in a way that no two adjacen...

  • Ans. 

    Graph coloring problem where vertices need to be colored with two colors such that no adjacent vertices share the same color.

    • Check if the graph can be colored using two colors without any adjacent vertices sharing the same color.

    • Use graph coloring algorithms like Greedy Coloring or Backtracking to solve the problem.

    • If there are odd-length cycles in the graph, it is not possible to color the graph with two colors.

    • If the...

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 30 minutes
Round difficulty - Easy

  • Q1. Can you explain in detail about Stacks and Graphs?
  • Ans. 

    Stacks are data structures that follow the Last In First Out (LIFO) principle, while Graphs are data structures that consist of nodes and edges to represent relationships.

    • Stacks are used for implementing functions, backtracking, and expression evaluation.

    • Graphs are used for representing networks, social connections, and shortest path algorithms.

    • Stacks can be implemented using arrays or linked lists.

    • Graphs can be direct...

  • Answered by AI
  • Q2. 

    Rat in a Maze: All Paths Problem

    You are provided with an N * N maze where a rat is positioned at starting cell MAZE[0][0]. The goal is to determine and print all possible paths that the rat can take to r...

  • Ans. 

    Find all possible paths for a rat in a maze from start to finish.

    • Use backtracking to explore all possible paths in the maze.

    • At each cell, check if it is a valid move and mark it as part of the path.

    • Explore all four directions (up, down, left, right) recursively.

    • When reaching the destination cell, add the path to the result.

    • Return all valid paths found in the maze.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Lokmanya Tilak College of Engineering. Eligibility criteria5+ CGPAHexaware Technologies interview preparation:Topics to prepare for the interview - Data Structures, OOPS, DBMS, OOPs, Algorithms, DP, Greedy, Electronics BasicsTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Do learn EDC.
Tip 2 : Should know about Multivibrators and electronics basics.
Tip 3 : Do learn some extra technologies eg. ML/AI.

Application resume tips for other job seekers

Tip 1: Do not lie at all
Tip 2: Write every project/internship

Final outcome of the interviewRejected

Skills evaluated in this interview

I appeared for an interview in Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 50 Minutes
Round difficulty - Medium

first round was aptitude round + coding round.

  • Q1. 

    Ninja Competition Problem Statement

    Ninja is organizing a coding competition where two teams compete at a time. To keep it fair and interesting, both teams must have an equal number of members. Ninja’s ta...

  • Ans. 

    Given an integer N, determine if two teams with equal members can be formed based on the divisors of N.

    • Iterate through all divisors of N and assign members to two teams based on whether the divisor is even or odd.

    • Keep track of the number of members in each team and check if they are equal at the end.

    • Return true if the number of members in both teams is equal, false otherwise.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Lovely Professional University. I applied for the job as SDE - 1 in ChennaiEligibility criteria6 CGPAHexaware Technologies interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic Programming, OSTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice more coding problem
Tip 2 : Brush Data structure thoroughly
Tip 3 : Be confident in interview and be clear while explaining solution to interviewer.

Application resume tips for other job seekers

Tip 1 : Try to make it more concise
Tip 2 : Try to add more projects as well as about hackathon.

Final outcome of the interviewRejected

Coforge Interview FAQs

How many rounds are there in Coforge Pega Developer interview?
Coforge interview process usually has 3 rounds. The most common rounds in the Coforge interview process are Resume Shortlist, Aptitude Test and Technical.
How to prepare for Coforge Pega Developer 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 Coforge. The most common topics and skills that interviewers at Coforge expect are Pega, Application Development, Design Development, Communication Skills and Leadership.

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
Join Coforge Engage with the emerging!

Interview Questions from Similar Companies

LTIMindtree Interview Questions
3.7
 • 3k Interviews
Mphasis Interview Questions
3.3
 • 851 Interviews
DXC Technology Interview Questions
3.6
 • 842 Interviews
EXL Service Interview Questions
3.7
 • 804 Interviews
Nagarro Interview Questions
4.0
 • 793 Interviews
NTT Data Interview Questions
3.8
 • 662 Interviews
Publicis Sapient Interview Questions
3.5
 • 645 Interviews
View all
Coforge Pega Developer Salary
based on 95 salaries
₹4.3 L/yr - ₹8 L/yr
17% less than the average Pega Developer Salary in India
View more details

Coforge Pega Developer Reviews and Ratings

based on 13 reviews

3.5/5

Rating in categories

3.4

Skill development

3.7

Work-life balance

2.7

Salary

3.6

Job security

3.4

Company culture

2.8

Promotions

3.3

Work satisfaction

Explore 13 Reviews and Ratings
Senior Software Engineer
4.9k salaries
unlock blur

₹6.2 L/yr - ₹23.2 L/yr

Technical Analyst
2.8k salaries
unlock blur

₹17.8 L/yr - ₹32 L/yr

Software Engineer
2.2k salaries
unlock blur

₹3.5 L/yr - ₹8 L/yr

Senior Test Engineer
1.8k salaries
unlock blur

₹5.7 L/yr - ₹16.6 L/yr

Technology Specialist
1.3k salaries
unlock blur

₹21.9 L/yr - ₹39 L/yr

Explore more salaries
Compare Coforge with

Capgemini

3.7
Compare

Cognizant

3.7
Compare

Accenture

3.7
Compare

Infosys

3.6
Compare
write
Share an Interview