Upload Button Icon Add office photos

eBay

Compare button icon Compare button icon Compare

Filter interviews by

eBay Interview Questions and Answers

Updated 22 Aug 2024
Popular Designations

16 Interview questions

A Mts Software Engineer was asked 10mo ago
Q. How do you scale a system?
Ans. 

Scaling a system involves increasing its capacity to handle more load or users.

  • Identify bottlenecks and optimize them

  • Use load balancing to distribute traffic evenly

  • Implement caching to reduce database load

  • Horizontal scaling by adding more servers

  • Vertical scaling by upgrading hardware

View all Mts Software Engineer interview questions
A Software Developer was asked 10mo ago
Q. What are your three weaknesses?
Ans. 

Three weaknesses include lack of experience in a specific technology, difficulty with time management, and tendency to overthink solutions.

  • Lack of experience in a specific technology (e.g. not familiar with a certain programming language or framework)

  • Difficulty with time management (e.g. struggling to prioritize tasks effectively)

  • Tendency to overthink solutions (e.g. spending too much time analyzing a problem befo...

View all Software Developer interview questions
A Quality Inspector was asked
Q. What would you do if you found a damaged product?
Ans. 

I would quarantine the damaged product, document the issue, and notify the appropriate personnel.

  • Quarantine the damaged product to prevent it from being used or shipped

  • Document the issue by taking photos, writing a report, and recording details such as product ID and location

  • Notify the appropriate personnel such as the production team, quality control manager, and supplier

  • Investigate the root cause of the damage t...

View all Quality Inspector interview questions
A Software Developer was asked
Q. Given three baskets containing p, q, and r balls respectively, where each ball has a number written on it, how would you sort all the balls by merging them back into the baskets?
Ans. 

Merge sort algorithm can be used to sort the balls in each basket and then merge the sorted baskets.

  • Apply merge sort algorithm to sort the balls in each basket

  • Merge the sorted baskets to get the final sorted order

  • Use recursion to implement merge sort

  • Time complexity of merge sort is O(nlogn)

View all Software Developer interview questions
A Software Developer was asked
Q. Write an SQL query to create tables.
Ans. 

SQL query for creating tables

  • Use CREATE TABLE statement

  • Specify table name and column names with data types

  • Add constraints like primary key, foreign key, etc.

  • Example: CREATE TABLE customers (id INT PRIMARY KEY, name VARCHAR(50), email VARCHAR(50))

View all Software Developer interview questions
A Software Developer was asked
Q. There are three threads assigned different tasks. T1 takes 10 seconds, T2 takes 20 seconds, and T3 takes 15 seconds. How do you ensure that all threads merge into one and continue as a single thread? How wi...
Ans. 

Wait for completion of all threads and join them into a single thread.

  • Use join() method to wait for completion of each thread.

  • Create a new thread and call start() method to start the execution of all threads.

  • Use sleep() method to pause the execution of the current thread until all threads complete their execution.

View all Software Developer interview questions
A Software Developer was asked
Q. Write a C program that defines a function 'sum' which takes two arguments. If both arguments are integers, it performs integer addition. If both are floats, it performs float addition. If both are strings, ...
Ans. 

Program in C to implement a function 'sum' that performs integer addition, float addition, and string concatenation based on the input arguments.

  • Define the function 'sum' with two arguments of type 'void *'.

  • Use 'if-else' statements to check the data type of the arguments.

  • Perform integer addition if both arguments are of type 'int'.

  • Perform float addition if both arguments are of type 'float'.

  • Concatenate the strings...

View all Software Developer interview questions
Are these interview questions helpful?
A Software Developer was asked
Q. Write a program to evaluate a postfix expression.
Ans. 

Postfix expression can be evaluated using a stack data structure.

  • Create an empty stack

  • Scan the expression from left to right

  • If the scanned character is an operand, push it onto the stack

  • If the scanned character is an operator, pop two operands from the stack, perform the operation and push the result back

  • Repeat until the end of the expression

  • The final result is the top of the stack

View all Software Developer interview questions
A Software Developer was asked
Q. What is a Semaphore?
Ans. 

Semaphore is a synchronization object used to control access to a shared resource.

  • Semaphore is used to limit the number of threads accessing a shared resource.

  • It can be used to implement critical sections and avoid race conditions.

  • Semaphore can be binary or counting, depending on the number of resources available.

  • Examples of semaphore in programming languages include Java's Semaphore class and Python's threading.S...

View all Software Developer interview questions
A Software Developer was asked
Q. You have 100,000 records and need to delete 95,000, keeping only 5,000. However, you don't have enough local memory to hold 95,000 records. How would you efficiently delete the records while considering tim...
Ans. 

To delete 95,000 records with limited local memory, use batch processing and delete in chunks.

  • Use batch processing to delete records in chunks

  • Delete records in descending order of their IDs to avoid index fragmentation

  • Commit the transaction after deleting each batch to avoid long-running transactions

  • Consider archiving the deleted records instead of permanently deleting them

View all Software Developer interview questions

eBay Interview Experiences

20 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Case Study 

On their new product launch was given 2-4 days for completion

Round 2 - One-on-one 

(2 Questions)

  • Q1. Based on case study
  • Q2. SQL related question , how will you perform analysis, check if data is accurate

Interview Preparation Tips

Interview preparation tips for other job seekers - Go to eBay website to get their product details
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Its on codesignal and you do a pair programming exercise

Round 2 - Technical 

(2 Questions)

  • Q1. How to scale a system
  • Ans. 

    Scaling a system involves increasing its capacity to handle more load or users.

    • Identify bottlenecks and optimize them

    • Use load balancing to distribute traffic evenly

    • Implement caching to reduce database load

    • Horizontal scaling by adding more servers

    • Vertical scaling by upgrading hardware

  • Answered by AI
  • Q2. Security decisions

Skills evaluated in this interview

Software Developer Interview Questions & Answers

user image Yevgeni Kabisher

posted on 1 Aug 2024

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

(2 Questions)

  • Q1. Just a go thru life and career
  • Q2. What are 3 weaknesses
  • Ans. 

    Three weaknesses include lack of experience in a specific technology, difficulty with time management, and tendency to overthink solutions.

    • Lack of experience in a specific technology (e.g. not familiar with a certain programming language or framework)

    • Difficulty with time management (e.g. struggling to prioritize tasks effectively)

    • Tendency to overthink solutions (e.g. spending too much time analyzing a problem before ta...

  • Answered by AI

Interview Questions & Answers

user image Anonymous

posted on 22 Aug 2024

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

(2 Questions)

  • Q1. About your self intro
  • Q2. About role explain role

Interview Questions & Answers

user image Shalinee

posted on 26 Mar 2023

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant

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 

Group discussion to ebay selling

Round 3 - One-on-one 

(2 Questions)

  • Q1. Ebay related queries and question
  • Q2. Ebay's product and work facility
  • Ans. 

    Ebay offers a wide range of products and has modern work facilities.

    • Ebay offers products in various categories such as electronics, fashion, home & garden, and more.

    • The company has modern work facilities with amenities like on-site cafes, fitness centers, and game rooms.

    • Ebay also provides flexible work arrangements and opportunities for career growth.

    • The company has a global presence with offices and operations in mult...

  • Answered by AI
Round 4 - Aptitude Test 

Ebay selling world top too....

Interview Preparation Tips

Topics to prepare for eBay interview:
  • All skills for ebay company empl
Interview preparation tips for other job seekers - Ebay company best oner best company best employees international selling is the best so can ....job
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me about the time you work with a difficult employee

Interview Preparation Tips

Interview preparation tips for other job seekers - Very easy interview all behavioral. They are checking to see that you match the company goals

I applied via Campus Placement

Round 1 - Case Study 

Share your work experience.

Why did you choose analytics from trading?

Can you analyze a case related to sales dipping in comparison to last year?

How does eBay make money?

Round 2 - Case Study 

Tell me something about yourself.

Suggest how to improve the website.

Predict the effect of currency rate fluctuations on the business of eBay.

Interview Preparation Tips

Interview preparation tips for other job seekers - •Prepare Mock GDs, Mock PIs, and the Internet for preparing interviews
•Interact with Seniors and friends to learn more about the company
• Research online for company-specific preparation
• Be good with your CV and HR questions. Don’t be over-smart
•Be lively
•Know your strengths and drive your interview with that
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Coding Test 

RESTApi implementation

Round 2 - Technical 

(1 Question)

  • Q1. Algorithm and data structures
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What would you do when a product is damaged
  • Ans. 

    I would quarantine the damaged product, document the issue, and notify the appropriate personnel.

    • Quarantine the damaged product to prevent it from being used or shipped

    • Document the issue by taking photos, writing a report, and recording details such as product ID and location

    • Notify the appropriate personnel such as the production team, quality control manager, and supplier

    • Investigate the root cause of the damage to pre...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Get Information about the job and company

I applied via Referral and was interviewed in Apr 2022. There were 3 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 - Aptitude Test 

An English and Grammer test link is provided, and if you clear it, you are passed on to the next level

Round 3 - Group Discussion 

In this round of interviews, a tenured person shall be talking to you, be it a mix of formal and informal, they shall ask you about your family, your career until now, your educational qualifications, and all in all - getting to know your English proficiency.

Interview Preparation Tips

Interview preparation tips for other job seekers - This industry is good for people having good 'Salesmanship' coz you need to pamper in the chats and if you wish to work target based.

Top trending discussions

View All
Indian Startups
2w
a senior executive
One of the best sources for Startup investment: DAHEJ(DOWRY)
You won't believe my senior has a good corporate job with over 10 years of experience. But suddenly resigned just a few days after his wedding. We all thought maybe he got married and wants to spend his time with his wife, and decided to go to his place to give him a proper farewell. All of us got shocked after knowing that he left because his father-in-law gifted him a fat cash amount and a car in the name of "blessings." He’s using the money to fund his startup and the car for "business movement." I mean seriously? People are now using dowry as startup capital and walking around acting like CEOs, playing boss with someone else’s money. Bas, shaadi karo aur apne sapne chalu karo, courtesy sasural. I don't know feeling inspired? Or disgusted?
Got a question about eBay?
Ask anonymously on communities.

eBay Interview FAQs

How many rounds are there in eBay interview?
eBay interview process usually has 1-2 rounds. The most common rounds in the eBay interview process are One-on-one Round, Resume Shortlist and Aptitude Test.
How to prepare for eBay 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 eBay. The most common topics and skills that interviewers at eBay expect are Usage, Operations, Customer Service, E-commerce and Interpersonal Skills.
What are the top questions asked in eBay interview?

Some of the top questions asked at the eBay interview -

  1. Let’s say you have 100,000 records and you want to delete 95,000 at a time an...read more
  2. There are three threads have been assigned different work. Say, T1 takes 10 sec...read more
  3. Let us assume there are 3 baskets with different number of balls say p,q and r....read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.3/5

based on 7 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 67%
2-4 weeks 33%
View more

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 474 Interviews
BigBasket Interview Questions
3.9
 • 399 Interviews
Meesho Interview Questions
3.7
 • 368 Interviews
Udaan Interview Questions
3.9
 • 347 Interviews
Blinkit Interview Questions
3.8
 • 241 Interviews
Oyo Rooms Interview Questions
3.2
 • 230 Interviews
Myntra Interview Questions
3.9
 • 229 Interviews
BlackBuck Interview Questions
3.7
 • 194 Interviews
FirstCry Interview Questions
3.6
 • 187 Interviews
Spinny Interview Questions
3.7
 • 184 Interviews
View all

eBay Reviews and Ratings

based on 92 reviews

4.0/5

Rating in categories

4.0

Skill development

4.1

Work-life balance

3.6

Salary

3.4

Job security

3.9

Company culture

3.2

Promotions

3.8

Work satisfaction

Explore 92 Reviews and Ratings
Key Account Manager
27 salaries
unlock blur

₹5 L/yr - ₹10.5 L/yr

Assistant Manager
27 salaries
unlock blur

₹5 L/yr - ₹11 L/yr

Senior Business Analyst
25 salaries
unlock blur

₹13.2 L/yr - ₹29 L/yr

Accounts Manager
11 salaries
unlock blur

₹3.2 L/yr - ₹8 L/yr

Associate Category Manager
10 salaries
unlock blur

₹15.5 L/yr - ₹26 L/yr

Explore more salaries
Compare eBay with

Amazon

4.0
Compare

Etsy

4.2
Compare

Flipkart

3.9
Compare

Google

4.4
Compare
write
Share an Interview