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

based on 1.3k Reviews

Filter interviews by

Verizon Interview Questions, Process, and Tips

Updated 28 Dec 2024

Top Verizon Interview Questions and Answers

View all 76 questions

Verizon Interview Experiences

Popular Designations

110 interviews found

I applied via Naukri.com and was interviewed in Jul 2021. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. I was giving interview for ReactJs, so they asked about React life cycle with realtime project example
  • Q2. What is Redux and use casses in class based as well as functional components with example?
  • Ans. 

    Redux is a predictable state container for JavaScript apps.

    • Redux is used for managing the state of an application.

    • It is commonly used with React to manage the state of components.

    • Redux uses a single store to manage the state of an entire application.

    • Actions are dispatched to the store to update the state.

    • Reducers are used to update the state based on the dispatched actions.

    • Functional components can use the useSelector ...

  • Answered by AI
  • Q3. Basic JavaScript Question like Closure, hoisting, call, apply, bind

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and if you don't know then answer of the questions just say I will read about it in polite manner.

Skills evaluated in this interview

Software Engineer II Interview Questions asked at other Companies

Q1. There are fifteen horses and a racing track that can run five horses at a time. You have to figure out the top 3 horses out of those and you don't have any timer machine to measure. How will you find the top 3 horses?
View answer (2)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Had a level of technical discussion which ended up with the offer letter. Was easy .
  • Q2. Mainly on previous projects

Top Verizon Senior Software Engineer Interview Questions and Answers

Q1. What is oops in JavaScript. And difference between functional programming and OOPs.
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2022. There were 4 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 - Coding Test 

Javascript based questions were asked

Round 3 - Technical 

(1 Question)

  • Q1. Javascript and react based questions asked.
Round 4 - HR 

(1 Question)

  • Q1. Behavioral and situational based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Please focus on the basic of javascript and ecmascript concept.

Top Verizon Senior Software Engineer Interview Questions and Answers

Q1. What is oops in JavaScript. And difference between functional programming and OOPs.
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)

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

Round 1 - Technical 

(1 Question)

  • Q1. About MRS professional services

Interview Preparation Tips

Interview preparation tips for other job seekers - We get exposure on different concepts when that requirements comes to us . so what we learnt and worked so far should be confidently answered in interview

Senior System Software Engineer Interview Questions asked at other Companies

Q1. What is Kernal mode layer and User mode layer
View answer (1)

Verizon interview questions for popular designations

 Software Engineer

 (10)

 Software Developer

 (8)

 Senior Software Engineer

 (5)

 Data Engineer

 (4)

 Business Analyst

 (3)

 Senior Product Manager

 (3)

 Fullstack Java Developer

 (2)

 Lead Consultant

 (2)

I applied via Naukri.com and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. What is closure and it's applications.
  • Ans. 

    Closure is a function that has access to variables in its outer scope, even after the outer function has returned.

    • A closure can be used to create private variables and methods in JavaScript.

    • Closures can be used to implement partial application and currying.

    • Event listeners and callbacks often use closures to maintain state between function calls.

    • Closures can be used to create memoized functions that cache their results

  • Answered by AI
  • Q2. What is callbacks hell, promises, observables, asynch await.
  • Ans. 

    Callbacks hell is a situation where nested callbacks make code hard to read and maintain. Promises, observables, and async/await are solutions to this problem.

    • Callbacks hell occurs when there are too many nested callbacks in code.

    • Promises are a way to handle asynchronous operations in JavaScript.

    • Observables are similar to promises but can handle multiple values over time.

    • Async/await is a syntax for writing asynchronous

  • Answered by AI
  • Q3. What is higher order functions. And it's usage.
  • Ans. 

    Higher order functions are functions that take other functions as arguments or return functions as their result.

    • Higher order functions allow for more flexible and reusable code.

    • They can be used for tasks such as filtering, mapping, and reducing arrays.

    • Examples include Array.prototype.map(), Array.prototype.filter(), and Array.prototype.reduce().

  • Answered by AI
  • Q4. What is oops in JavaScript. And difference between functional programming and OOPs.
  • Ans. 

    OOPs in JavaScript is a programming paradigm that uses objects to represent real-world entities. Functional programming is a paradigm that uses functions to perform tasks.

    • OOPs in JavaScript involves creating objects that have properties and methods.

    • Functional programming involves creating functions that take input and produce output without modifying the input.

    • OOPs focuses on encapsulation, inheritance, and polymorphis...

  • Answered by AI
  • Q5. What is event loop and types of tasks in the queue.
  • Ans. 

    Event loop is a mechanism that allows JavaScript to perform non-blocking I/O operations.

    • Event loop is responsible for handling asynchronous callbacks in JavaScript.

    • Tasks in the queue can be either microtasks or macrotasks.

    • Microtasks are executed before macrotasks.

    • Examples of macrotasks include setTimeout, setInterval, and I/O operations.

    • Examples of microtasks include Promise callbacks and mutation observer callbacks.

  • Answered by AI
  • Q6. Output of the code in JavaScript.
  • Ans. 

    Output of the code in JavaScript

    • Need to see the code to determine output

    • Output can vary based on input and logic

    • Can use console.log() to print output

  • Answered by AI
  • Q7. How browser works detailed analysis.
  • Ans. 

    Browsers use rendering engines to interpret HTML, CSS, and JavaScript to display web pages.

    • Browsers use rendering engines to interpret HTML, CSS, and JavaScript.

    • The rendering engine parses the HTML and creates a DOM tree.

    • The rendering engine then applies CSS rules to the DOM tree to create a render tree.

    • The render tree is then laid out to determine the position of each element on the page.

    • Finally, the rendering engine ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on the basics and deep dive into the topic and try to make a small project out of it.

Skills evaluated in this interview

Top Verizon Senior Software Engineer Interview Questions and Answers

Q1. What is oops in JavaScript. And difference between functional programming and OOPs.
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)

Get interview-ready with Top Verizon Interview Questions

Engr III Cslt-Software Devt Interview Questions & Answers

user image Anonymous

posted on 5 Nov 2021

I applied via Naukri.com and was interviewed in May 2021. There were 5 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Explain to me about DevOps life cycle
  • Q2. Questions on DevOps tools like Ansible, git, Jenkins, etc.
  • Q3. Questions on cloud
  • Q4. Questions on Linux
  • Q5. Questions on SRE

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and clear. All the best !!!

Skills evaluated in this interview

Jobs at Verizon

View all

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

Interview Questionnaire 

3 Questions

  • Q1. Walk me through the 'xyz' project you worked on, describe your contribution to the project and how the deliverables impacted the problem statement as a solution
  • Q2. Questions on python datastructures
  • Q3. What are the most frequent ML packages you use?
  • Ans. 

    I have experience with scikit-learn, TensorFlow, and Keras.

    • Scikit-learn for traditional machine learning algorithms such as regression and classification

    • TensorFlow for deep learning models such as neural networks

    • Keras for building and training deep learning models quickly and easily

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I had an easy interview process with Verizon because both the Product manager and the VP of verizon were extremely accommodating. They seemed genuinely interested in getting to know me and keeping me updated about every progression.
The only advice I have for candidates is to speak out whatever you're thinking. I think they expect to know your thought process more than just evaluating you only based on your final answer. (Which is probably true everywhere)
Be confident, justify all your answers with proof and be humble!

Skills evaluated in this interview

Business Technology Analyst Intern Interview Questions asked at other Companies

Q1. What are the most frequent ML packages you use?
View answer (1)

I applied via LinkedIn

Interview Questionnaire 

1 Question

  • Q1. Java oops, dsa, searching sorting etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Study oops, searching sorting, dsa, os , dbms

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed before Jun 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Aptitude test. Easy to crack all are basic questions

Round 3 - Coding Test 

Coding test will be on Java c++ you need to know concepts well

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well about your college project

Engineer Trainee Interview Questions asked at other Companies

Q1. If 10 people had a meeting and they shake hands only once with each of the others, then how many handshakes will be there in total ?
View answer (8)

Interview Questionnaire 

1 Question

  • Q1. It's All about case studies. Situation analysis. Stakeholders management

Lead Consultant Interview Questions asked at other Companies

Q1. Pdc emulator and errors how it can be fixed, how to work on VMware disk consolidation error, types for migration which I was involved and issue seen example cross over migration and aws SMS connector, azure sso
View answer (1)

Verizon Interview FAQs

How many rounds are there in Verizon interview?
Verizon interview process usually has 2-3 rounds. The most common rounds in the Verizon interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for Verizon 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 Agile, Python, Oracle, SQL and Coding.
What are the top questions asked in Verizon interview?

Some of the top questions asked at the Verizon interview -

  1. b. three ants are running on edges of a equilateral triangle with same speed. W...read more
  2. Why do we need garbage collection and how it is done in JAV...read more
  3. Two puzzles a. Given a bar , cut it twice and pay for 7 da...read more
How long is the Verizon interview process?

The duration of Verizon interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Verizon Interview Process

based on 44 interviews in last 1 year

Interview experience

4.2
  
Good
View more

People are getting interviews through

based on 64 Verizon interviews
Job Portal
Referral
Campus Placement
Company Website
WalkIn
Recruitment Consultant
45%
11%
9%
8%
3%
3%
21% candidates got the interview through other sources.
High Confidence
?
High Confidence means the data is based on a large number of responses received from the candidates.
Join Verizon A place to share your Ideas freely

Interview Questions from Similar Companies

Jio Interview Questions
3.9
 • 1.6k Interviews
Bharti Airtel Interview Questions
4.0
 • 803 Interviews
Vodafone Idea Interview Questions
4.1
 • 538 Interviews
Ericsson Interview Questions
4.2
 • 398 Interviews
AT&T Interview Questions
4.1
 • 51 Interviews
Aircel Interview Questions
4.3
 • 8 Interviews
Telenor Interview Questions
4.3
 • 7 Interviews
View all

Verizon Reviews and Ratings

based on 1.3k reviews

4.2/5

Rating in categories

4.0

Skill development

4.1

Work-Life balance

4.2

Salary & Benefits

4.0

Job Security

4.1

Company culture

3.6

Promotions/Appraisal

3.8

Work Satisfaction

Explore 1.3k Reviews and Ratings
Distinguished Engineer - AI/ML Engineering

Chennai,

Bangalore / Bengaluru

8-12 Yrs

Not Disclosed

Sr Experience Designer I

Hyderabad / Secunderabad

4-6 Yrs

Not Disclosed

Senior Manager - Data Science

Hyderabad / Secunderabad,

Chennai

6-11 Yrs

Not Disclosed

Explore more jobs
Software Engineer
551 salaries
unlock blur

₹8 L/yr - ₹18.4 L/yr

Software Developer
267 salaries
unlock blur

₹5.7 L/yr - ₹20.2 L/yr

Analyst
258 salaries
unlock blur

₹4 L/yr - ₹16.2 L/yr

Senior Software Engineer
256 salaries
unlock blur

₹10 L/yr - ₹35 L/yr

Consultant
245 salaries
unlock blur

₹8.2 L/yr - ₹30 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

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview