Upload Button Icon Add office photos

Filter interviews by

Virtusa Consulting Services Senior Pega Developer Interview Questions and Answers

Updated 6 Jun 2023

Virtusa Consulting Services Senior Pega Developer Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed in May 2023. There were 2 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. How to handle exceptions in connect REST
  • Ans. 

    Exceptions in connect REST can be handled using error handling mechanisms like try-catch blocks and error codes.

    • Use try-catch blocks to catch exceptions and handle them appropriately

    • Utilize error codes to identify the type of exception and take necessary actions

    • Implement error handling logic in the response mapping to handle errors from the REST service

  • Answered by AI
  • Q2. Scopes of data page
  • Ans. 

    Data pages in Pega used to store and manage data for reuse across applications.

    • Data pages can be sourced from various sources like database tables, reports, or clipboard.

    • They can be used to store data temporarily or permanently.

    • Data pages can be shared across multiple rules and applications for consistency.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Virtusa Consulting Services Senior Pega Developer interview:
  • Integration
  • Case management

Interview questions from similar companies

Interview Questionnaire 

4 Questions

  • Q1. All questions about java only. 1. Different between interface and abstract class . 2.questions on rest Threads 3.java object on hashcode 4. Previous company projects
  • Q2. All about java 1. Explain collection hierarchy 2.Explain exception hierarchy 3.how many of classes in java 4.what are problem u faced while deploying the project and etc on deployment
  • Ans. 

    Collection hierarchy in Java includes interfaces like Collection, List, Set, Queue, and Map with their respective implementations.

    • Collection interface is the root interface in the collection hierarchy

    • List interface extends Collection and allows duplicate elements, with implementations like ArrayList and LinkedList

    • Set interface extends Collection and does not allow duplicate elements, with implementations like HashSet a...

  • Answered by AI
  • Q3. What will be work if hire . And
  • Q4. All about package and joining date

Senior Pega Developer Interview Questions Asked at Other Companies

Q1. Kth Largest Element Problem Statement Ninja enjoys working with n ... read more
Q2. What coding approaches would you take in Pega when presented with ... read more
Q3. How do you handle exceptions in connect REST?
Q4. What are the scopes of a data page?

I appeared for an interview in Jun 2017.

Interview Questionnaire 

2 Questions

  • Q1. What is use of OOO programming?
  • Ans. 

    Object-oriented programming (OOP) is a programming paradigm that uses objects to represent and manipulate data.

    • Encourages modular and reusable code

    • Provides a clear structure and organization to the code

    • Allows for easier maintenance and updates

    • Supports code reusability through inheritance and polymorphism

    • Enables encapsulation, hiding the internal details of an object

    • Promotes code extensibility and scalability

    • Facilitates...

  • Answered by AI
  • Q2. Why do you want to join ATOS?
  • Ans. 

    I want to join ATOS because of their reputation for innovation and their commitment to employee growth and development.

    • ATOS is known for its innovative solutions in the software development industry.

    • I am impressed by ATOS's focus on employee growth and development through training programs and career advancement opportunities.

    • ATOS has a strong reputation for delivering high-quality software solutions to its clients.

    • I b...

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: He asked about technical topics and I gave answer with example.
Tips: Be ready with what you have written in CV with real scenario.

Round: HR Interview
Experience: She asked about reason to join, why leaving previous comp.etc
Tips: Explain your ambition and this company will provide me opportunities to fulfill those. Be realstic in answer. Should know about the company.

I applied via Approached by Company and was interviewed before May 2018. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Core Java questions except multi threading. New features in java 8. Basic spring boot questions. Sorting algorithm. Comparable and comparator interface. Focus on core java
  • Q2. Core java. Custom hasmmap implementation.

Interview Preparation Tips

General Tips: Focus on core java.
Skills: Problem Solving, Analytical Skills
Duration: <1 week

What people are saying about Virtusa Consulting Services

View All
a senior software engineer and lead
1w
Salary range for SQA (functional and automation tester) manager position on state street
What is the typical salary range I can expect for an SDET Manager (SQA Functional & Automation Tester) position at State Street,Hyderabad in India , given my 12 years of experience? Salary Range for SDET Manager at State Street in India (12 Years Experience)
Got a question about Virtusa Consulting Services?
Ask anonymously on communities.

I applied via Naukri.com and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Java 8, Collection, Multithreading
Round 2 - One-on-one 

(1 Question)

  • Q1. Spring boot, HIbernate, Microservices

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up your fundamentals and practice your coding part

I applied via Campus Placement and was interviewed in Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. 1. Introduce yourself?
  • Q2. 2.Why DXC?
  • Q3. 3.As a non-IT why to software? (I'm from ece)
  • Q4. 4. About your weakness and how you overcome it?

Interview Preparation Tips

Interview preparation tips for other job seekers - My interview is good. My advice is that don't panic, overtensed or nervous. This is the chance to prove yourself what you are. And other this is many people think there is no need of preparation for interview, in my point of view.. For fresher must and should prepare or beware of that. As we all know that are the HR questions but we don't know the answers for that so, be prepared for that. And important thing is RESUME many questions about this so, build your resume by you and study about your projects and all.
All the best ✊
Thankyou 😊

Interview Questionnaire 

1 Question

  • Q1. How to upgrade angular older version project to higher version?
  • Ans. 

    To upgrade an Angular project to a higher version, follow these steps:

    • Check the compatibility of the current project with the target version

    • Update the Angular CLI to the latest version

    • Update the dependencies in package.json

    • Update the Angular framework and related packages

    • Resolve any breaking changes and errors

    • Test the upgraded project thoroughly

  • Answered by AI

Skills evaluated in this interview

Are these interview questions helpful?

I appeared for an interview before Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 75 minutes
Round difficulty - Medium

  • Q1. 

    Array Intersection Problem Statement

    Given two integer arrays/ lists ARR1 and ARR2 of sizes N and M respectively, you are required to determine their intersection. An intersection is defined as the set of...

  • Ans. 

    Find the intersection of two integer arrays/lists in the order they appear in the first array/list.

    • Iterate through the elements of the first array/list and check if they exist in the second array/list.

    • Use a hash set to store elements of the first array/list for efficient lookups.

    • Print the common elements in the order they appear in the first array/list.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 40 minutes
Round difficulty - Medium

  • Q1. 

    Longest Palindromic Substring Problem Statement

    You are provided with a string STR of length N. The task is to find the longest palindromic substring within STR. If there are several palindromic substring...

  • Ans. 

    Find the longest palindromic substring in a given string.

    • Iterate through the string and expand around each character to find palindromes

    • Keep track of the longest palindrome found so far

    • Return the longest palindromic substring

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Medium

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 HyderabadEligibility criteria7 CGPAOptum interview preparation:Topics to prepare for the interview - Data Structures, Computer Networks, Operating Systems, Algorithms, DBMSTime required to prepare for the interview - 8 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice coding questions
Tip 2 : Prepare data structures well

Application resume tips for other job seekers

Tip 1 : Mention good projects
Tip 2 : Do not put false information

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Company Website and was interviewed in Dec 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. How will be the self learn and growth
  • Ans. 

    I believe in continuous learning and growth through self-study, online courses, and attending conferences.

    • I regularly read technical blogs and articles to stay updated with the latest trends and technologies.

    • I take online courses and tutorials to learn new skills and improve my existing ones.

    • I attend conferences and meetups to network with other professionals and learn from their experiences.

    • I also participate in hacka...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Not better because I missed visit my office

I applied via Referral and was interviewed before Nov 2021. 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 

(3 Questions)

  • Q1. Javascript basic questions
  • Q2. React js basic questions
  • Q3. Html and css questions?
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about urself?
  • Q2. Good and Bad quality

Interview Preparation Tips

Topics to prepare for UST Software Developer interview:
  • Javascript
Interview preparation tips for other job seekers - Be honest and simple
Answer only what Is required

Virtusa Consulting Services Interview FAQs

How many rounds are there in Virtusa Consulting Services Senior Pega Developer interview?
Virtusa Consulting Services interview process usually has 2 rounds. The most common rounds in the Virtusa Consulting Services interview process are Resume Shortlist and Technical.
What are the top questions asked in Virtusa Consulting Services Senior Pega Developer interview?

Some of the top questions asked at the Virtusa Consulting Services Senior Pega Developer interview -

  1. How to handle exceptions in connect R...read more
  2. Scopes of data p...read more

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

Interview Questions from Similar Companies

Genpact Interview Questions
3.8
 • 3.4k Interviews
DXC Technology Interview Questions
3.7
 • 839 Interviews
Nagarro Interview Questions
4.0
 • 793 Interviews
NTT Data Interview Questions
3.8
 • 659 Interviews
Publicis Sapient Interview Questions
3.5
 • 645 Interviews
GlobalLogic Interview Questions
3.6
 • 628 Interviews
EPAM Systems Interview Questions
3.7
 • 569 Interviews
UST Interview Questions
3.8
 • 544 Interviews
View all
Virtusa Consulting Services Senior Pega Developer Salary
based on 8 salaries
₹13 L/yr - ₹34 L/yr
44% more than the average Senior Pega Developer Salary in India
View more details

Virtusa Consulting Services Senior Pega Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

4.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Senior Consultant
3.7k salaries
unlock blur

₹13.9 L/yr - ₹24 L/yr

Software Engineer
3.5k salaries
unlock blur

₹4.3 L/yr - ₹13.2 L/yr

Lead Consultant
3.2k salaries
unlock blur

₹17.1 L/yr - ₹29.1 L/yr

Consultant
3.2k salaries
unlock blur

₹9.8 L/yr - ₹19 L/yr

Associate Consultant
2.6k salaries
unlock blur

₹8.1 L/yr - ₹14 L/yr

Explore more salaries
Compare Virtusa Consulting Services with

Cognizant

3.7
Compare

TCS

3.6
Compare

Infosys

3.6
Compare

Accenture

3.7
Compare
write
Share an Interview