Upload Button Icon Add office photos
Engaged Employer

i

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

Verizon Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Verizon Pega Developer Interview Questions and Answers

Updated 6 Dec 2024

Verizon Pega Developer Interview Experiences

2 interviews found

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

I applied via Naukri.com and was interviewed in May 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 

(2 Questions)

  • Q1. On pega concepts deeply with examples
  • Q2. Reverse of a string without using functions in Java and python
  • Ans. 

    Reverse a string without using functions in Java and Python

    • Iterate through the string from end to start and store each character in a new array

    • Join the characters in the new array to form the reversed string

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Personal, educational and certification details

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good experience

Skills evaluated in this interview

Pega Developer Interview Questions & Answers

user image TAMIZHARASAN K

posted on 6 Dec 2024

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

(1 Question)

  • Q1. Difference between parameter and keyed data page

Pega Developer Interview Questions Asked at Other Companies

asked in Accenture
Q1. What is difference between flow and flow action
asked in Accenture
Q2. Difference between decision tree and decision table
Q3. What is difference between Keyed Access and Parameterized Data Pa ... read more
asked in Accenture
Q4. How can you achieve Batch processing
Q5. What are different methods in REST?

Interview questions from similar companies

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Sql related ques mege into, rank,dense rank,queries of joins etc.
  • Q2. Java 8 related ques optional and stream
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

2 programmings on problem solving+ some mcqs on Java + spring boot+ mysql

Round 2 - One-on-one 

(4 Questions)

  • Q1. Streams question to find the count of integers in a list and return it as 1 : 5, 2 : 3, ..
  • Q2. Solid principles + spring theory different questions like jsonignore, pathvaroables, asynchronous communications, normalisation, etc.
  • Q3. Questions on core java like oops, final,static, collections, generics
  • Q4. Questions on project and each part of your services

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare streams, core java well also try to practice discussion about your work in present company and theory of java + spring
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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Reverse a linked list.
  • Q2. Merge sort on a array/
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
No response
Round 1 - Technical 

(2 Questions)

  • Q1. Difference between streams and parallel streams
  • Ans. 

    Streams process elements sequentially, while parallel streams process elements concurrently.

    • Streams process elements one by one in a sequential manner.

    • Parallel streams process elements concurrently, potentially utilizing multiple threads for faster processing.

    • Streams are suitable for smaller datasets or when order matters.

    • Parallel streams are more efficient for larger datasets or when order is not important.

    • Example: St...

  • Answered by AI
  • Q2. What is Static keyword in Java do?
  • Ans. 

    Static keyword in Java is used to create class-level variables and methods that can be accessed without creating an instance of the class.

    • Static variables are shared among all instances of a class.

    • Static methods can be called without creating an object of the class.

    • Static keyword can be used to initialize a variable only once.

    • Example: public static int count = 0;

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Study Core Java and collection and About your project xp

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Memory management in java 8
  • Ans. 

    Java 8 introduced improvements in memory management with features like Metaspace and G1 garbage collector.

    • Java 8 introduced Metaspace to replace the PermGen space for class metadata storage.

    • G1 garbage collector in Java 8 improves garbage collection performance by dividing the heap into regions.

    • Java 8 also introduced the concept of String deduplication to reduce memory usage for String objects.

  • Answered by AI
  • Q2. CQRS pattern in microservices
  • Ans. 

    CQRS pattern separates read and write operations in microservices for better scalability and performance.

    • CQRS stands for Command Query Responsibility Segregation

    • It separates the read and write operations in microservices

    • Write operations update the data, while read operations retrieve the data

    • Helps in improving scalability and performance by optimizing for each operation type

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement

Round 1 - Coding Test 

Based on python and also question included networking

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

(3 Questions)

  • Q1. 1) single linked list problem 2) substring matching
  • Ans. 

    The first question is about a single linked list problem, and the second question is about substring matching.

    • For the single linked list problem, you may need to implement operations like insertion, deletion, and traversal.

    • For substring matching, you can use algorithms like brute force, Knuth-Morris-Pratt, or Boyer-Moore.

    • Examples for the single linked list problem: reversing a linked list, finding the middle element, o...

  • Answered by AI
  • Q2. Single Linked list problem
  • Ans. 

    The question is about solving a problem related to single linked lists.

    • Understand the concept of a single linked list

    • Implement basic operations like insertion, deletion, and traversal

    • Consider edge cases like an empty list or a list with only one node

  • Answered by AI
  • Q3. String problem- substring matching

Skills evaluated in this interview

Verizon Interview FAQs

How many rounds are there in Verizon Pega Developer interview?
Verizon interview process usually has 2 rounds. The most common rounds in the Verizon interview process are Technical, Resume Shortlist and HR.
How to prepare for Verizon 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 Verizon. The most common topics and skills that interviewers at Verizon expect are Core Java, MS SQL, Pega, Pega PRPC and csa.
What are the top questions asked in Verizon Pega Developer interview?

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

  1. Reverse of a string without using functions in Java and pyt...read more
  2. Difference between parameter and keyed data p...read more
  3. On pega concepts deeply with examp...read more

Tell us how to improve this page.

Verizon Pega Developer Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Jio Interview Questions
3.9
 • 1.7k Interviews
Bharti Airtel Interview Questions
4.0
 • 842 Interviews
Vodafone Idea Interview Questions
4.1
 • 555 Interviews
Ericsson Interview Questions
4.1
 • 412 Interviews
Nokia Interview Questions
4.1
 • 274 Interviews
ACT Fibernet Interview Questions
4.0
 • 133 Interviews
HFCL Limited Interview Questions
4.0
 • 60 Interviews
View all
Verizon Pega Developer Salary
based on 37 salaries
₹4.9 L/yr - ₹18.5 L/yr
51% more than the average Pega Developer Salary in India
View more details

Verizon Pega Developer Reviews and Ratings

based on 3 reviews

4.3/5

Rating in categories

4.3

Skill development

3.7

Work-life balance

4.2

Salary

4.5

Job security

4.2

Company culture

4.1

Promotions

4.3

Work satisfaction

Explore 3 Reviews and Ratings
Software Engineer
558 salaries
unlock blur

₹4.8 L/yr - ₹20 L/yr

Software Developer
270 salaries
unlock blur

₹8.2 L/yr - ₹22 L/yr

Senior Software Engineer
254 salaries
unlock blur

₹10 L/yr - ₹37 L/yr

Analyst
246 salaries
unlock blur

₹4 L/yr - ₹16.5 L/yr

Devops Engineer
239 salaries
unlock blur

₹5.5 L/yr - ₹21 L/yr

Explore more salaries
Compare Verizon with

AT&T

4.1
Compare

Vodafone Idea

4.1
Compare

Bharti Airtel

4.0
Compare

Jio

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