Upload Button Icon Add office photos

Yahoo

Compare button icon Compare button icon Compare

Filter interviews by

Yahoo Network Specialist Interview Questions and Answers

Updated 20 Jan 2025

Yahoo Network Specialist Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Jan 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Can you provide an overview of your background and previous professional experiences?
  • Ans. 

    I have over 5 years of experience in network administration and troubleshooting.

    • Managed network infrastructure for a medium-sized company

    • Implemented security measures to protect against cyber threats

    • Troubleshooted network issues to ensure minimal downtime

    • Upgraded network equipment to improve performance

  • Answered by AI
  • Q2. Tel me abt yourself
  • Ans. 

    I am a dedicated network specialist with 5 years of experience in designing, implementing, and troubleshooting network infrastructures.

    • Experienced in configuring routers, switches, firewalls, and VPNs

    • Skilled in network monitoring and troubleshooting tools such as Wireshark and Nagios

    • Certified in Cisco CCNA and CompTIA Network+

    • Strong problem-solving and communication skills

    • Passionate about staying updated with the lates

  • Answered by AI

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(3 Questions)

  • Q1. What is ACID in DBs ?
  • Ans. 

    ACID stands for Atomicity, Consistency, Isolation, and Durability in databases.

    • Atomicity ensures that all operations in a transaction are completed successfully or none at all.

    • Consistency ensures that the database remains in a consistent state before and after the transaction.

    • Isolation ensures that multiple transactions can be executed concurrently without affecting each other.

    • Durability ensures that once a transaction...

  • Answered by AI
  • Q2. What is the difference in checked and unchecked exceptions ?
  • Ans. 

    Checked exceptions are checked at compile time while unchecked exceptions are not checked at compile time.

    • Checked exceptions are subclasses of Exception class except RuntimeException and its subclasses.

    • Unchecked exceptions are subclasses of RuntimeException and Error classes.

    • Checked exceptions must be caught or declared in the method signature using 'throws' keyword.

    • Unchecked exceptions do not need to be caught or decl...

  • Answered by AI
  • Q3. Find the min difference between any two integers of 2 sorted list
  • Ans. 

    To find the minimum difference between any two integers of 2 sorted lists, iterate through both lists simultaneously and keep track of the minimum difference.

    • Iterate through both sorted lists simultaneously

    • Keep track of the minimum difference found so far

    • Update the minimum difference if a smaller difference is found

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected

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

Round 1 - Coding Test 

Traverse through a matrix of uppercase english alphabets to find a given word. you are allowed to make up to k jumps, and same position can be repeated too.

Round 2 - Technical 

(1 Question)

  • Q1. Compression of 0-1 matrix of particular size.
  • Ans. 

    Compression of 0-1 matrix involves reducing the size of the matrix by storing only the necessary information.

    • Use run-length encoding to compress the matrix by storing consecutive repeated values as a single value and count.

    • Identify patterns in the matrix that can be represented more efficiently.

    • Consider using sparse matrix representation if the matrix has a lot of zeros.

    • Implement efficient algorithms to compress and de...

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Question on trie
  • Q2. Question on intervals
Round 1 - Technical 

(1 Question)

  • Q1. What is actual rule is using to sale more products in this company
  • Ans. 

    The actual rule for selling more products in this company is to focus on customer needs and provide excellent customer service.

    • Focus on customer needs and preferences

    • Provide excellent customer service

    • Offer promotions and discounts

    • Maintain high product quality

    • Stay up-to-date with market trends

    • Build strong relationships with customers

    • Encourage customer feedback and use it to improve

    • Train sales staff to be knowledgeable a

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing is hard work may take bow in life
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is AI ?
  • Ans. 

    AI stands for Artificial Intelligence, which is the simulation of human intelligence processes by machines, especially computer systems.

    • AI involves the development of algorithms that can perform tasks that typically require human intelligence.

    • Examples of AI include speech recognition, image recognition, natural language processing, and autonomous vehicles.

    • AI can be categorized into narrow AI (focused on a specific task...

  • Answered by AI
  • Q2. Tell me about machine learning
  • Ans. 

    Machine learning is a branch of artificial intelligence that involves developing algorithms and models that can learn from and make predictions or decisions based on data.

    • Machine learning uses algorithms to analyze data, learn from it, and make predictions or decisions.

    • It is used in various fields such as healthcare, finance, marketing, and more.

    • Examples of machine learning applications include recommendation systems, ...

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Find the possible ways to get the target score
  • Ans. 

    There are multiple ways to achieve the target score in a game or competition.

    • Incrementing by 1 point each time until reaching the target score

    • Combining different point values to reach the target score

    • Using bonus points or multipliers to reach the target score

  • Answered by AI

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Hard

Online coding round , 2-3 questions. Level - med-hard

  • Q1. 

    Fibonacci Number Verification

    Identify if the provided integer 'N' is a Fibonacci number.

    A number is termed as a Fibonacci number if it appears in the Fibonacci sequence, where each number is the sum of...

  • Ans. 

    Check if a given number is a Fibonacci number or not.

    • Iterate through the Fibonacci sequence until you find a number greater than or equal to the given number.

    • Check if the given number matches the Fibonacci number found in the sequence.

    • If the given number matches, output 'YES'; otherwise, output 'NO'.

  • Answered by AI
  • Q2. 

    Break The Board Problem Statement

    Your task is to break a board of given dimensions 'L' by 'W' into 'L' * 'W' smaller squares, ensuring the total cost of breaking is minimized.

    Input:

    The first line con...
  • Ans. 

    Minimize cost of breaking a board into smaller squares by optimizing horizontal and vertical cuts.

    • Iterate through all possible horizontal and vertical cuts to find the minimum cost

    • Use dynamic programming to store and reuse subproblem solutions

    • Calculate the cost of breaking the board into smaller squares based on the given dimensions and cut costs

  • Answered by AI
Round 2 - Telephonic Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

2 interviewers , coding problem, no compilation.

  • Q1. 

    Minimum Number Of People To Teach

    Ninja has started a social networking site called Ninjas Space. The platform consists of ‘N’ users and supports ‘M’ different languages. Users communicate if they know at...

  • Ans. 

    Determine the minimum number of users to teach a common language so all friends can communicate on a social networking site.

    • Create a graph where users are nodes and friendships are edges.

    • Find connected components in the graph.

    • For each connected component, determine the minimum number of users to teach a common language.

    • Return the sum of minimum users needed for all connected components.

  • Answered by AI
Round 3 - Face to Face 

Round duration - 40 minutes
Round difficulty - Medium

CS fundamentals. Tough round. 40 mins interview. 1 interviewer from USA

Round 4 - Face to Face 

(1 Question)

Round duration - 40 minutes
Round difficulty - Hard

System Design Problem

  • Q1. Design a Facebook-like application.
  • Ans. 

    Design a Facebook-like application for social networking.

    • User profiles with personal information and photos

    • News feed displaying posts from friends

    • Ability to like, comment, and share posts

    • Friend requests and messaging functionality

    • Groups and events for community engagement

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Software Engineering from Delhi Technological University. I applied for the job as SDE - 1 in BangaloreEligibility criteriaComputer related BranchTwitter interview preparation:Topics to prepare for the interview - DBMS, Data Structures and Algorithms , OOP, Maths puzzles, Aptitude , CN, OSTime required to prepare for the interview - 9 MonthsInterview preparation tips for other job seekers

Tip 1 : Never leave any topic from any chapter / Subject
Tip 2 : Learn to explain your thoughts well
Tip 3 : Learn from previous experiences / interviews / problems asked.
Tip 4 : Atleast 4 projects in Resume

Application resume tips for other job seekers

Tip 1 : Atleast 4 projects on Resume
Tip 2 : Do not write false things. You always get caught. Be genuine.

Final outcome of the interviewRejected

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

Leetcode similar coding tests

Round 2 - One-on-one 

(2 Questions)

  • Q1. How do you test the feasibility of an idea?
  • Q2. Explain the process of calling an API

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice leetcode and review basic SWE interview questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed before Sep 2023. There was 1 interview round.

Round 1 - HR 

(3 Questions)

  • Q1. Why do you want job in FB
  • Ans. 

    I am passionate about networking and believe that working at FB will provide me with challenging opportunities to grow and learn.

    • I am excited about the cutting-edge technology and infrastructure at FB

    • I admire FB's commitment to innovation and collaboration

    • I believe FB's global reach will allow me to work on diverse and impactful projects

  • Answered by AI
  • Q2. Do u have account in FB
  • Ans. 

    Yes, I have an account on Facebook.

    • Yes, I have an active account on Facebook.

    • I use Facebook to connect with friends and family.

    • I also use Facebook for networking and staying updated on industry news.

  • Answered by AI
  • Q3. Do you experience
  • Ans. 

    Yes, I have experience in network engineering.

    • I have worked as a network engineer for 5 years

    • I have experience with Cisco routers and switches

    • I have implemented and maintained network security protocols

  • Answered by AI

Yahoo Interview FAQs

How many rounds are there in Yahoo Network Specialist interview?
Yahoo interview process usually has 1 rounds. The most common rounds in the Yahoo interview process are One-on-one Round.

Tell us how to improve this page.

Yahoo Network Specialist Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Google Interview Questions
4.4
 • 823 Interviews
Swiggy Interview Questions
3.8
 • 425 Interviews
Udaan Interview Questions
4.0
 • 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