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 Sde1 Interview Questions and Answers

Updated 20 Oct 2024

Verizon Sde1 Interview Experiences

1 interview found

Sde1 Interview Questions & Answers

user image Anonymous

posted on 20 Oct 2024

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

Project discussion and basic questions

Round 2 - HR 

(2 Questions)

  • Q1. Willing to relocate
  • Ans. 

    Yes, willing to relocate for the right opportunity.

    • I am open to relocating for a job that aligns with my career goals and offers growth opportunities.

    • I have relocated in the past for job opportunities and have found it to be a positive experience.

    • I understand the importance of being flexible and adaptable in today's job market, which includes being open to relocation.

  • Answered by AI
  • Q2. What is ur weakness
  • Ans. 

    One of my weaknesses is that I tend to be overly critical of my own work.

    • I have a tendency to overanalyze my projects, which can sometimes lead to delays in completion.

    • I am working on improving my self-confidence to trust my abilities more.

    • I have learned to seek feedback from others to gain different perspectives and improve my work.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Luck

Interview questions from similar companies

Sde1 Interview Questions & Answers

Jio user image Anonymous

posted on 25 Feb 2023

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2022. 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. DSA questions on sorting
  • Q2. Computer science fundamental questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for computer science fundamentals and practice data structure and algorithm
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Find nth elements from last in linked list
  • Ans. 

    Use two pointers to find the nth element from the end of a linked list.

    • Use two pointers, one moving n steps ahead of the other

    • When the first pointer reaches the end, the second pointer will be at the nth element from the end

  • Answered by AI
  • Q2. Difference between hashmap and concurrent hashmap
  • Ans. 

    HashMap is not thread-safe while ConcurrentHashMap is thread-safe and allows concurrent access.

    • HashMap is not thread-safe and can lead to ConcurrentModificationException if accessed by multiple threads simultaneously.

    • ConcurrentHashMap allows concurrent access by multiple threads without the need for external synchronization.

    • ConcurrentHashMap achieves thread-safety by dividing the map into segments, allowing multiple th...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Technical 

(7 Questions)

  • Q1. Amazon: Add Cart feature - Write Selenium code
  • Ans. 

    Use Selenium to automate adding items to cart on Amazon website.

    • Locate the 'Add to Cart' button on the product page using Selenium's findElement method

    • Click on the 'Add to Cart' button to add the item to the cart

    • Verify that the item has been successfully added to the cart by checking the cart contents

  • Answered by AI
  • Q2. Test cases of Login API
  • Ans. 

    Test cases for Login API

    • Verify valid username and password login successfully

    • Verify invalid username and password combination fails to login

    • Verify login with empty username or password fails

    • Verify login with special characters in username or password fails

  • Answered by AI
  • Q3. Write a program to count the character in a string
  • Ans. 

    A program to count the characters in a string

    • Iterate through each character in the string and increment the count for each character

    • Use a hashmap to store the count of each character

    • Handle edge cases like empty string or null input

  • Answered by AI
  • Q4. UI test cases of Upload document
  • Ans. 

    UI test cases for uploading a document

    • Verify that the 'Upload' button is functional

    • Check if the correct file types are allowed for upload

    • Ensure that the progress bar is displayed during upload

    • Confirm that the document is successfully uploaded and visible on the UI

  • Answered by AI
  • Q5. UI test cases of a Form
  • Ans. 

    UI test cases for a Form

    • Verify all required fields are displayed

    • Test validation messages for invalid inputs

    • Check if form submission is successful

    • Test the functionality of reset button

  • Answered by AI
  • Q6. How to achieve parallel execution of test cases in testNG?
  • Ans. 

    Parallel execution of test cases in TestNG can be achieved using TestNG's parallel attribute in the testng.xml file.

    • Set the 'parallel' attribute in the testng.xml file to 'methods', 'classes', or 'tests' to specify the level of parallelism.

    • Use the 'thread-count' attribute to specify the number of threads to be used for parallel execution.

    • Ensure that the test classes are thread-safe to avoid any conflicts during paralle

  • Answered by AI
  • Q7. Write a program to reverse the words in a string I/P: My name is abc O/P: abc is name My
  • Ans. 

    Program to reverse words in a string

    • Split the input string into an array of words

    • Reverse the array of words

    • Join the reversed array back into a string

  • Answered by AI
Round 2 - Technical 

(6 Questions)

  • Q1. Write a program to reverse the string. I/P: I LOVE JAVA O/P: A VAJE VOLI
  • Q2. Regression vs Sanity
  • Ans. 

    Regression testing ensures existing functionality still works after changes, while sanity testing checks if new functionality works as expected.

    • Regression testing is performed to make sure that new code changes do not adversely affect existing functionality.

    • Sanity testing is a cursory testing to make sure that the new functionality is working as expected.

    • Regression testing is usually automated and covers a wide range o...

  • Answered by AI
  • Q3. Explain automation framework
  • Ans. 

    Automation framework is a set of guidelines, tools, and processes used to automate testing of software applications.

    • Automation framework provides structure and guidelines for creating and executing automated tests.

    • It helps in organizing test scripts, managing test data, and generating test reports.

    • Examples of automation frameworks include Selenium, TestNG, and Cucumber.

    • Frameworks can be data-driven, keyword-driven, or

  • Answered by AI
  • Q4. What are the reasons for 500 - Internal Server Error
  • Ans. 

    500 Internal Server Error is a generic error message indicating a problem with the server.

    • Server misconfiguration

    • Server overload

    • Programming errors in server-side code

    • Database connection issues

    • Insufficient server resources

  • Answered by AI
  • Q5. Submit button -> Click -> Blank page Identify the debug and find the root cause
  • Q6. Write test cases of an API that creates User's profile by accepting First name, Last name and mobile number
  • Ans. 

    Test cases for API creating User's profile with First name, Last name, and mobile number

    • Verify that a user profile is created successfully with valid First name, Last name, and mobile number

    • Test with invalid First name (empty, special characters, numbers)

    • Test with invalid Last name (empty, special characters, numbers)

    • Test with invalid mobile number (empty, alphabets, special characters, less than 10 digits)

    • Verify that ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Bharti Airtel Sdet interview:
  • Appium
  • API
  • Java

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me about your past experience?
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Technical Interview + Coding
Round 2 - Technical 

(1 Question)

  • Q1. Technical Interview

Interview Preparation Tips

Interview preparation tips for other job seekers - 1st round (Virtual) - Technical with coding questions. I have cleared this round and selected for 2nd round.
2nd round (Face to Face) - Technical + Multithreading + Coding question + In Detailed on projects I have worked on. It was around 1:20 mins, I have answered very well, and I was confident also like I'll be clearing this round. But I got feedback from HR I did not select this round and not meet the technically for their expectation.
I really did not understand what their expectation even after answered all the question. Please really don't play with others time by taking this kind of interview.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

They will give 3 questions

Round 2 - Technical 

(2 Questions)

  • Q1. There will be technical round after finishing of exam
  • Q2. And HR round also will be same time of Technical

Interview Preparation Tips

Interview preparation tips for other job seekers - As a fresher they ask vere basic things which I mention in Resume
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Questions on ReactJS and code snippets
Round 2 - Coding Test 

It was a machine coding round

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare thoroughly and take full advantage of the opportunity.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Mostly Scenario based
  • Q2. 1 coding quest, then Detail discussion on each and every topic
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Questions were asked

Round 2 - Coding Test 

Dsa dp, graphs and many more questions from arrays and linked list were asked

Interview Preparation Tips

Interview preparation tips for other job seekers - No

Verizon Interview FAQs

How many rounds are there in Verizon Sde1 interview?
Verizon interview process usually has 2 rounds. The most common rounds in the Verizon interview process are Coding Test and HR.

Tell us how to improve this page.

Verizon Sde1 Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Jio Interview Questions
3.9
 • 1.6k Interviews
Bharti Airtel Interview Questions
4.0
 • 839 Interviews
Vodafone Idea Interview Questions
4.1
 • 555 Interviews
Ericsson Interview Questions
4.1
 • 411 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 Sde1 Salary
based on 8 salaries
₹6.5 L/yr - ₹19 L/yr
49% less than the average Sde1 Salary in India
View more details

Verizon Sde1 Reviews and Ratings

based on 2 reviews

4.0/5

Rating in categories

3.3

Skill development

3.3

Work-life balance

3.3

Salary

3.3

Job security

2.6

Company culture

2.6

Promotions

3.3

Work satisfaction

Explore 2 Reviews and Ratings
Software Engineer
562 salaries
unlock blur

₹4.2 L/yr - ₹16 L/yr

Software Developer
269 salaries
unlock blur

₹8.2 L/yr - ₹22 L/yr

Senior Software Engineer
254 salaries
unlock blur

₹9.9 L/yr - ₹35 L/yr

Analyst
247 salaries
unlock blur

₹4 L/yr - ₹16.5 L/yr

Devops Engineer
233 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