Upload Button Icon Add office photos

Filter interviews by

Yahoo Interview Questions, Process, and Tips

Updated 18 Dec 2024

Top Yahoo Interview Questions and Answers

View all 8 questions

Yahoo Interview Experiences

Popular Designations

28 interviews found

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 Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Test contains 26 questions for me 13 are java based 13 are c++ based

Round 2 - Technical 

(2 Questions)

  • Q1. Indexing in dbms
  • Ans. 

    Indexing in DBMS is a technique to improve the performance of queries by creating a data structure that allows for faster retrieval of data.

    • Indexes are created on columns in a database table to speed up the retrieval of rows that match a certain condition.

    • Types of indexes include clustered, non-clustered, unique, and composite indexes.

    • Examples of indexing techniques include B-tree, hash, and bitmap indexes.

    • Indexing can...

  • Answered by AI
  • Q2. Find whether two strings are or not anagrams
  • Ans. 

    Check if two strings are anagrams by comparing the sorted characters in each string.

    • Sort the characters in both strings and compare if they are equal.

    • Ignore spaces and punctuation when comparing the strings.

    • Example: 'listen' and 'silent' are anagrams.

    • Example: 'hello' and 'world' are not anagrams.

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Inorder traversal without recursion
  • Ans. 

    Use a stack to simulate the recursive inorder traversal process

    • Create an empty stack to store nodes

    • Start with the root node and push it onto the stack

    • While the stack is not empty, keep traversing left and pushing nodes onto the stack

    • Once you reach a leaf node, pop it from the stack, print its value, and move to its right child

    • Repeat the process until all nodes have been visited

  • Answered by AI
  • Q2. How to make a class final
  • Ans. 

    To make a class final, use the 'final' keyword in the class declaration.

    • Use the 'final' keyword before the 'class' keyword in the class declaration

    • A final class cannot be subclassed or extended

    • Final classes are often used for utility classes or classes that should not be modified

  • Answered by AI

Skills evaluated in this interview

Softwaretest Engineer Interview Questions asked at other Companies

Q1. What is boundary value analysis? How do u perform boundary value testing for User ID & Password textfields in login page?
View answer (2)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Quant round was conducted

Round 2 - HR 

(2 Questions)

  • Q1. Why yahoo is your choice
  • Q2. What was your previous ctc

District Manager Interview Questions asked at other Companies

Q1. Are you have knowledge of beneficiaries schemes and project which has been financed by the institution.
View answer (2)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Gave a question about implementing hashset.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with your core CSE concepts

DevOps Site Reliability Engineer Interview Questions asked at other Companies

Q1. How would you recover your VM, if You have lost its keypair file?
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Apr 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Medium level questions with a senior engineer

Round 2 - Aptitude Test 

(1 Question)

  • Q1. Confidential test. Cannot give details.
Round 3 - Coding Test 

Medium level questions

Round 4 - Coding Test 

Manager round with technical and culture fit

Software Development Engineer II Interview Questions asked at other Companies

Q1. Given 2 large numeric comma seperated strings. You need to calculate their sum along with maintaining the correct position of commas. Example Test Case - s1 - "123,456,788" s2 - "1" output - "123,456,789" constraints - since the strings can... read more
View answer (1)

Yahoo interview questions for popular designations

 Production Engineer

 (2)

 Software Developer

 (2)

 Technical Lead

 (2)

 AD Operations & Sales

 (1)

 AD Operations Executive

 (1)

 Banking Officer

 (1)

 DevOps Site Reliability Engineer

 (1)

 District Manager

 (1)

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

(1 Question)

  • Q1. Java questions and spring boot and data bse

Software Engineer2 Interview Questions asked at other Companies

Q1. - Given a water -tight orientable 2-manifold, how to find if a point is inside or outside its volume? - Given a bunch of points with their coordinates, how to merge closeby points together? - How to determine if the normals of the two trian... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. What is your background
Round 2 - One-on-one 

(2 Questions)

  • Q1. Past experience
  • Q2. How do you solve specific marketing problems
  • Ans. 

    I solve specific marketing problems by conducting thorough research, analyzing data, identifying key insights, and developing strategic solutions.

    • Conducting market research to understand target audience and competition

    • Analyzing data from various sources to identify trends and patterns

    • Developing marketing strategies based on insights and objectives

    • Testing and optimizing campaigns to achieve desired results

  • Answered by AI
Round 3 - Aptitude Test 

SQL, Data analytics of a dataset

Round 4 - One-on-one 

(1 Question)

  • Q1. Director on behavior

Senior Marketing Analyst Interview Questions asked at other Companies

Q1. how do you solve specific marketing problems
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is distributed system
  • Ans. 

    A distributed system is a collection of independent computers that appear to the users as a single coherent system.

    • Consists of multiple computers connected through a network

    • Allows for parallel processing and fault tolerance

    • Examples include cloud computing, peer-to-peer networks, and distributed databases

  • Answered by AI
  • Q2. Jenkins to deploy the automation from git repo, procedure
  • Ans. 

    Use Jenkins pipeline to deploy automation from git repo

    • Create a Jenkins pipeline job

    • Configure the job to pull code from the git repository

    • Define the deployment steps in the Jenkinsfile

    • Use Jenkins plugins like Git plugin and Pipeline plugin for automation

    • Ensure proper permissions and credentials are set up for accessing the git repo

  • Answered by AI

Production Engineer Interview Questions asked at other Companies

Q1. How to solve the problem in robot means how to detect fault?
View answer (9)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Got a leetcode easy question

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare leetcode easy thoroughly

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
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in May 2024.

Round 1 - Aptitude Test 

It was having english and maths questions

Round 2 - Coding Test 

Code was easy kindly do pratice

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Legal Counsel Interview Questions & Answers

user image Anonymous

posted on 12 Apr 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me about a time you dealt with conflict

Legal Counsel Interview Questions asked at other Companies

Q1. Can you draft a notice based on a current situation provided to you?
View answer (1)

Yahoo Interview FAQs

How many rounds are there in Yahoo interview?
Yahoo interview process usually has 2-3 rounds. The most common rounds in the Yahoo interview process are Technical, Coding Test and Aptitude Test.
How to prepare for Yahoo 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 Yahoo. The most common topics and skills that interviewers at Yahoo expect are Debugging, Electrical Motors, Gas Processing, Golang and MS.
What are the top questions asked in Yahoo interview?

Some of the top questions asked at the Yahoo interview -

  1. How to do performance measurement for the databa...read more
  2. how do you solve specific marketing probl...read more
  3. how to handle hard prod outag...read more
How long is the Yahoo interview process?

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

Tell us how to improve this page.

Yahoo Interview Process

based on 13 interviews in last 1 year

Interview experience

4.2
  
Good
View more

People are getting interviews through

based on 12 Yahoo interviews
Job Portal
Company Website
Campus Placement
Referral
42%
25%
17%
8%
8% 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.

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 4.9k Interviews
Google Interview Questions
4.4
 • 837 Interviews
LinkedIn Interview Questions
4.3
 • 78 Interviews
Facebook Interview Questions
4.4
 • 69 Interviews
Netflix Interview Questions
4.5
 • 10 Interviews
Alibaba Group Interview Questions
4.1
 • 7 Interviews
Twitter Interview Questions
4.1
 • 5 Interviews
Snapchat Interview Questions
2.9
 • 5 Interviews
Tencent Interview Questions
4.6
 • 5 Interviews
View all

Yahoo Reviews and Ratings

based on 118 reviews

4.6/5

Rating in categories

4.2

Skill development

4.7

Work-Life balance

4.4

Salary & Benefits

3.3

Job Security

4.7

Company culture

3.9

Promotions/Appraisal

4.3

Work Satisfaction

Explore 118 Reviews and Ratings
AD Operations Specialist
18 salaries
unlock blur

₹3.8 L/yr - ₹8.8 L/yr

Software Engineer
17 salaries
unlock blur

₹16.1 L/yr - ₹38 L/yr

Software Developer
12 salaries
unlock blur

₹11 L/yr - ₹31.8 L/yr

Technical Lead
11 salaries
unlock blur

₹9.3 L/yr - ₹32 L/yr

Senior Software Engineer
10 salaries
unlock blur

₹16 L/yr - ₹41 L/yr

Explore more salaries
Compare Yahoo with

Google

4.4
Compare

Facebook

4.4
Compare

Microsoft Corporation

4.1
Compare

Amazon

4.1
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