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

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
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 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 

(3 Questions)

  • Q1. What is different between Mysql Vs sql ?
  • Ans. 

    MySQL is a specific implementation of SQL, which is a standardized language for managing databases.

    • MySQL is a specific relational database management system (RDBMS) that uses SQL as its query language.

    • SQL (Structured Query Language) is a standardized language for managing databases, used by various RDBMS like MySQL, Oracle, and SQL Server.

    • MySQL is open-source and free to use, while some other RDBMS like Oracle may requ...

  • Answered by AI
  • Q2. What abstraction and interface in java?
  • Ans. 

    Abstraction and interface are key concepts in Java for achieving abstraction and defining contracts for classes.

    • Abstraction in Java is achieved using abstract classes and interfaces.

    • Abstract classes can have both abstract and concrete methods, while interfaces can only have abstract methods.

    • Interfaces define contracts that classes must implement, allowing for polymorphism and loose coupling.

    • Example: interface Shape { v...

  • Answered by AI
  • Q3. What is mean by JSP?
  • Ans. 

    JSP stands for JavaServer Pages, a technology used for creating dynamic web pages.

    • JSP allows embedding Java code in HTML pages

    • It simplifies the process of creating dynamic web content

    • JSP files are compiled into servlets by the server for execution

  • Answered by AI

Skills evaluated in this interview

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
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is method overloading and overriding
  • Ans. 

    Method overloading is when multiple methods have the same name but different parameters. Method overriding is when a subclass provides a specific implementation of a method that is already provided by its superclass.

    • Method overloading allows a class to have multiple methods with the same name but different parameters.

    • Method overriding occurs in a subclass when a method has the same name, return type, and parameters as ...

  • Answered by AI
  • Q2. Program to swap two variables without using third
  • Ans. 

    Swapping two variables without using a third variable

    • Use XOR operation to swap two variables without using a third variable

    • Example: a = 5, b = 10; a = a ^ b; b = a ^ b; a = a ^ b; // Now a = 10, b = 5

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Why you want to join this organization
  • Ans. 

    I am impressed by the organization's innovative projects and collaborative work culture.

    • Impressed by innovative projects

    • Attracted to collaborative work culture

    • Excited about potential for growth and learning opportunities

  • Answered by AI
  • Q2. What is your weakness and strength
  • Ans. 

    My weakness is overthinking and my strength is attention to detail.

    • Weakness: tend to overthink situations, which can lead to indecision or unnecessary stress

    • Strength: strong attention to detail, ensuring accuracy and quality in my work

    • Example: I sometimes spend too much time analyzing a problem before taking action, but I have learned to set deadlines for myself to prevent this from affecting my productivity

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What are the things that u do when your what app screen is blank
  • Ans. 

    I would check for internet connection, restart the app, clear cache, and update the app.

    • Check internet connection

    • Restart the app

    • Clear cache

    • Update the app

  • Answered by AI
  • Q2. Simple python code

Interview Preparation Tips

Interview preparation tips for other job seekers - Be clear with basics and resume

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