Upload Button Icon Add office photos
Engaged Employer

i

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

PureSoftware Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

PureSoftware Pega Developer Interview Questions and Answers

Updated 7 Aug 2022

PureSoftware Pega Developer Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Jul 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between constraints and Declare trigger
  • Ans. 

    Constraints are used to restrict user input while Declare triggers are used to automate actions based on certain events.

    • Constraints are used to validate user input and ensure it meets certain criteria.

    • Declare triggers are used to automate actions based on certain events, such as when a new record is created or updated.

    • Constraints are defined at the property level while Declare triggers are defined at the class level.

    • Co...

  • Answered by AI
  • Q2. What is forward chaining and backward chaining
  • Ans. 

    Forward and backward chaining are two types of reasoning used in artificial intelligence and expert systems.

    • Forward chaining starts with the available data and uses rules to infer new conclusions.

    • Backward chaining starts with a goal and works backwards to find the data and rules needed to support that goal.

    • Forward chaining is used in rule-based systems, while backward chaining is used in goal-based systems.

    • Examples of ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - They Asked Basically on The Theory Part, Just focus on the Basics.

Skills evaluated in this interview

Interview questions from similar companies

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

Technology advantage or not

Round 2 - Aptitude Test 

All aptitude topics,logical reasoning

Round 3 - Technical 

(2 Questions)

  • Q1. Oops,2 coding questions
  • Q2. Palindrome,even number
Round 4 - HR 

(2 Questions)

  • Q1. What do you know
  • Q2. Do you have any questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Similar to tcs,infosys pattern
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Aptitude Test 

20 aptitude,20 comunication,4 program questions

Round 2 - Group Discussion 

General topics . topics about online class vs office line class

Round 3 - HR 

(1 Question)

  • Q1. In this round also they mainly check communication.after that basic questions about the what you put on your resume
Round 4 - HR 

(1 Question)

  • Q1. General round. In this round they told about the company and bond
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What are the BluePrism best practices
  • Ans. 

    BluePrism best practices include following naming conventions, modular design, exception handling, and version control.

    • Follow consistent naming conventions for objects and processes

    • Design processes in a modular way for reusability and maintainability

    • Implement robust exception handling to manage errors effectively

    • Use version control to track changes and collaborate with team members

  • Answered by AI
  • Q2. How to spy the elements in Surface Automation
  • Ans. 

    To spy elements in Surface Automation, use the UI Explorer tool to identify and select the elements on the screen.

    • Use UI Explorer tool to spy elements

    • Identify and select elements on the screen

    • Verify properties and attributes of elements

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Looker developer
  • Q2. Sql server
Round 2 - Technical 

(2 Questions)

  • Q1. Looker developer
  • Q2. Sql server

Java Developer Interview Questions & Answers

Incedo user image Nithin Krishna

posted on 31 Aug 2024

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

(2 Questions)

  • Q1. Difference between ArrayList and LinkedList?
  • Ans. 

    ArrayList is implemented as a resizable array, while LinkedList is implemented as a doubly linked list.

    • ArrayList provides fast random access, LinkedList provides fast insertion and deletion.

    • ArrayList uses more memory as it needs to allocate a fixed size array, LinkedList uses more memory for storing references to the next and previous elements.

    • Example: ArrayList is better for scenarios where random access is required, ...

  • Answered by AI
  • Q2. Difference between HashMap and HashTable?
  • Ans. 

    HashMap is non-synchronized and allows null values, while HashTable is synchronized and does not allow null values.

    • HashMap is non-synchronized, meaning it is not thread-safe, while HashTable is synchronized and thread-safe.

    • HashMap allows null values for both keys and values, while HashTable does not allow null keys or values.

    • HashMap is faster than HashTable as it is non-synchronized, but HashTable is preferred in multi...

  • Answered by AI

Skills evaluated in this interview

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

I was interviewed in Jul 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Micro service disadvantage
  • Ans. 

    Microservices can introduce complexity, communication overhead, and potential performance issues.

    • Increased complexity due to managing multiple services

    • Communication overhead between services

    • Potential performance issues due to network latency

    • Difficulty in maintaining consistency across services

  • Answered by AI
  • Q2. @functionalinterface can we extend or not, map & flatmap
  • Ans. 

    No, @FunctionalInterface cannot be extended. Map and flatMap are default methods in the interface and cannot be overridden.

    • No, @FunctionalInterface cannot be extended as it is a single abstract method interface.

    • Map and flatMap are default methods in the interface and cannot be overridden.

    • Example: public interface MyInterface { void myMethod(); default void myDefaultMethod() { // implementation } }

  • Answered by AI

Skills evaluated in this interview

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

(3 Questions)

  • Q1. Why functional interface when we have interface
  • Ans. 

    Functional interfaces provide a single abstract method for functional programming in Java.

    • Functional interfaces allow for lambda expressions and method references to be used as instances of the interface.

    • Interfaces with multiple abstract methods cannot be used for lambda expressions.

    • Example: java.util.function.Function is a functional interface with a single abstract method apply().

  • Answered by AI
  • Q2. Java 8 explain all features in short
  • Ans. 

    Java 8 introduced new features like lambda expressions, streams, functional interfaces, and default methods.

    • Lambda expressions: Allows writing concise code by enabling functional programming.

    • Streams: Provides a way to work with sequences of elements efficiently.

    • Functional interfaces: Interfaces with a single abstract method, used for lambda expressions.

    • Default methods: Allows adding new methods to interfaces without br

  • Answered by AI
  • Q3. If one functional interface can extend another interface
  • Ans. 

    Yes, one functional interface can extend another interface in Java.

    • Functional interfaces can extend other functional interfaces in Java.

    • The child interface can have only one abstract method, but can inherit default methods from the parent interface.

    • Example: interface Parent { void method1(); } interface Child extends Parent { void method2(); }

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare core 100%. spring boot, sql, can be in 80s

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Was tough but can be cracked in one go

Round 2 - Coding Test 

Easy to moderate need to study dsa

Round 3 - HR 

(2 Questions)

  • Q1. Self introduction
  • Q2. Tell me about your projects
  • Ans. 

    I have worked on various projects including a web application for a healthcare company and a mobile app for a retail business.

    • Developed a web application for a healthcare company to manage patient records and appointments

    • Created a mobile app for a retail business to enhance customer shopping experience

    • Implemented features such as user authentication, data visualization, and real-time updates

    • Utilized technologies like R

  • Answered by AI
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Aug 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 

(1 Question)

  • Q1. Javascript basics, class and functional components, basic es6
Round 3 - Technical 

(1 Question)

  • Q1. Promises, context api, redux and rest API

Interview Preparation Tips

Interview preparation tips for other job seekers - I wouldn't recommend attending the interview. Cleared screening and first technical round. Had to go through background verification before proceeding to next round. Second round interviewer asked irrelevant questions to the role I was interviewing for irrespective of informing that I had not worked on the topic being discussed. Got a call next day that I was rejected and to attend walk in drive the next week so they can release the offer.

PureSoftware Interview FAQs

How many rounds are there in PureSoftware Pega Developer interview?
PureSoftware interview process usually has 1 rounds. The most common rounds in the PureSoftware interview process are Technical.
How to prepare for PureSoftware 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 PureSoftware. The most common topics and skills that interviewers at PureSoftware expect are Pega.
What are the top questions asked in PureSoftware Pega Developer interview?

Some of the top questions asked at the PureSoftware Pega Developer interview -

  1. What is forward chaining and backward chain...read more
  2. Difference between constraints and Declare trig...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 788 Interviews
Coforge Interview Questions
3.3
 • 517 Interviews
Cyient Interview Questions
3.6
 • 283 Interviews
KPIT Technologies Interview Questions
3.4
 • 277 Interviews
CitiusTech Interview Questions
3.4
 • 269 Interviews
NeoSOFT Interview Questions
3.9
 • 261 Interviews
View all
Senior Software Engineer
461 salaries
unlock blur

₹8.5 L/yr - ₹35 L/yr

Software Engineer
245 salaries
unlock blur

₹4 L/yr - ₹15 L/yr

Lead Engineer
185 salaries
unlock blur

₹10.3 L/yr - ₹38.5 L/yr

Technical Lead
155 salaries
unlock blur

₹14.1 L/yr - ₹40 L/yr

Associate Software Engineer
84 salaries
unlock blur

₹2.6 L/yr - ₹12.5 L/yr

Explore more salaries
Compare PureSoftware with

Persistent Systems

3.5
Compare

LTIMindtree

3.8
Compare

Mphasis

3.4
Compare

Coforge

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