Upload Button Icon Add office photos

Yahoo

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Yahoo Software Engineer2 Interview Questions and Answers

Updated 6 Oct 2024

Yahoo Software Engineer2 Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Java questions and spring boot and data bse

Interview questions from similar companies

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

Codility Test - 2 Medium LC type questions

Round 2 - One-on-one 

(1 Question)

  • Q1. DS Algo based round with 2 medium LC types questions on string
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Q1 was about ds algo
Round 2 - Technical 

(1 Question)

  • Q1. Q2 was about lld
Round 3 - Technical 

(1 Question)

  • Q1. Q3 was about lld too
Round 4 - Technical 

(1 Question)

  • Q1. Q4 was about hiring manager round, from resume basically
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before May 2023.

Round 1 - Technical 

(1 Question)

  • Q1. Was asked a simple question based on recursion
Round 2 - Technical 

(1 Question)

  • Q1. System Design Concepts. Discussion about day to day work on my current job
Round 3 - Technical 

(1 Question)

  • Q1. Detailed system design interview. Was asked a lots of questions about design of current project
Round 4 - Mangerial Round 

(1 Question)

  • Q1. It was more about day to day work responsibilities. Whether I was willing to relocate. And some questions around strengths and weakness
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Sep 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Data Structures and Algorithms - Easy

Round 2 - Coding Test 

Code a chineese pebble game

Round 3 - System Design 

(2 Questions)

  • Q1. 2 Entities for cross site sale promotion.
  • Ans. 

    Two entities for cross site sale promotion are affiliate marketing platform and customer loyalty program.

    • Affiliate marketing platform: Allows businesses to partner with affiliates who promote their products on their own websites in exchange for a commission.

    • Customer loyalty program: Rewards customers for repeat purchases or other actions, encouraging them to continue shopping with the brand.

  • Answered by AI
  • Q2. Grill on Q1 with questions on security and loop holes. List SPOF and how to fix it.
Round 4 - Technical 

(2 Questions)

  • Q1. Do you want to do a Puzzle round?
  • Q2. Then asks Celebrity problem which I obviously didn't know at that time.

Interview Preparation Tips

Interview preparation tips for other job seekers - Do DSA even if you are a front end engineer. They keep monitoring for +ve signals.
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in May 2024. There was 1 interview round.

Round 1 - Coding Test 

The interviewer was a team Lead Engineer. He first asked me a few questions about database fundamentals (Cluster Index, Composite Index, ACID, etc). Then he presented me with a coding question on codility (LC Hard String question). He was very helpful during the interview and nudged me towards the right direction when I got stuck.

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 Resume tips
Round 2 - Coding Test 

Usually medium LC questions

Round 3 - One-on-one 

(1 Question)

  • Q1. Design Snakes and Ladder
  • Ans. 

    Design a snakes and ladder game with a board, dice, and player pieces.

    • Create a game board with squares numbered from 1 to 100.

    • Place snakes and ladders on specific squares to move players up or down.

    • Players roll a dice to move their pieces on the board.

    • The first player to reach square 100 wins the game.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed before Apr 2023. There were 4 interview rounds.

Round 1 - Coding Test 

You need to write code as algorithm for the given problem

Round 2 - Coding Test 

You will need a end to end architecture and details , along with problem solving skillset

Round 3 - One-on-one 

(1 Question)

  • Q1. Techno managerial Round
Round 4 - One-on-one 

(1 Question)

  • Q1. Senior manager round or as called AA round
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Hackerrank was used for test

Round 2 - Technical 

(2 Questions)

  • Q1. Implement BFS to find the nearest neighbour
  • Ans. 

    Implement BFS algorithm to find the nearest neighbour

    • Create a queue to store nodes to be visited

    • Start with the initial node and add it to the queue

    • While the queue is not empty, dequeue a node, visit its neighbours, and add them to the queue

    • Repeat until the nearest neighbour is found

  • Answered by AI
  • Q2. Implement Priority queue using heap.
  • Ans. 

    Priority queue can be implemented using a heap data structure.

    • Create a min heap or max heap based on the priority order needed.

    • Insert elements into the heap based on their priority level.

    • Remove elements from the heap based on their priority level.

    • Heapify the heap after each insertion or deletion operation.

    • Example: Implementing a min heap for a priority queue where lower values have higher priority.

  • Answered by AI

Skills evaluated in this interview

I was interviewed before Sep 2020.

Round 1 - Coding Test 

Round duration - 60 minutes
Round difficulty - Easy

Round 2 - Face to Face 

Round duration - 50 minutes
Round difficulty - Easy

Round 3 - Face to Face 

Round duration - 60 minutes
Round difficulty - Easy

At the beginning of this round, the interviewer asked me about the data structures I knew. Linked lists, trees, graphs, arrays etc. was my answer. He asked me how well I knew Dynamic Programming. I said I wasn’t strong in that and he said that he would ask me a question on dynamic programming for sure.

Round 4 - Face to Face 

Round duration - 40 minutes
Round difficulty - Easy

 

The interviewer asked me if I was comfortable with the interview process so far and how the previous interviews were. I said it was good and he gave me the first problem to solve.

Round 5 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

The interviewer asked me some Com­puter Sci­ence‍ fundamentals in this round as well as some behavioural questions.

  • Q1. Implement a Trie data structure and write functions to insert and search for a few words in it.
  • Ans. 

    Implement a Trie data structure with insert and search functions.

    • Create a TrieNode class with children and isEndOfWord attributes.

    • Implement insert function to add words by iterating through characters.

    • Implement search function to check if a word exists by traversing the Trie.

    • Example: Insert 'apple', 'banana', 'orange' and search for 'apple' and 'grape'.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in HyderabadEligibility criteria 7 CGPA Amazon interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Operating System, Database Management System, Object-Oriented Programming SystemTime required to prepare for the interview - 8 monthsInterview preparation tips for other job seekers

Do lot of hard work and practice of  Data Structures and Algorithms based questions. I personally recommend you Coding Ninjas and Geeks For Geeks for interview preparation.

Application resume tips for other job seekers

Make your resume short and try to make it of one page only and do mention all your skills which you are confident of in your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Yahoo Interview FAQs

How many rounds are there in Yahoo Software Engineer2 interview?
Yahoo interview process usually has 1 rounds. The most common rounds in the Yahoo interview process are Technical.

Recently Viewed

INTERVIEWS

Yahoo

No Interviews

SALARIES

Forbes Marshall

DESIGNATION

JOBS

HR Works Consultancy

No Jobs

SALARIES

Iris Software

No Salaries

INTERVIEWS

Yahoo

No Interviews

INTERVIEWS

Yahoo

No Interviews

JOBS

Evolutyz IT Services

No Jobs

SALARIES

Forbes Marshall

JOBS

Impetus Consultants

No Jobs

Tell us how to improve this page.

Yahoo Software Engineer2 Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Google Interview Questions
4.4
 • 824 Interviews
Swiggy Interview Questions
3.8
 • 426 Interviews
Udaan Interview Questions
3.9
 • 333 Interviews
Uber Interview Questions
4.2
 • 149 Interviews
Expedia Group Interview Questions
3.8
 • 75 Interviews
LinkedIn Interview Questions
4.3
 • 65 Interviews
OLX Interview Questions
3.8
 • 57 Interviews
Facebook Interview Questions
4.3
 • 52 Interviews
View all
AD Operations Specialist
18 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
12 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Manager
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Yahoo with

Google

4.4
Compare

Facebook

4.3
Compare

Microsoft Corporation

4.0
Compare

Amazon

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