Upload Button Icon Add office photos

eBay

Compare button icon Compare button icon Compare

Filter interviews by

eBay Process Specialist Interview Questions and Answers

Updated 13 Apr 2022

eBay Process Specialist Interview Experiences

1 interview found

I applied via Company Website and was interviewed before Apr 2021. 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 - One-on-one 

(2 Questions)

  • Q1. Tell me about you, followed by detailed CV walk through
  • Q2. What would you do when... situational questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep a calm composure, and always ask questions.
The culture is of high priority

Interview questions from similar companies

Interview Questionnaire 

19 Questions

  • Q1. How was your day?-Tell me about yourself
  • Ans. 

    My day was productive and fulfilling. As for myself, I am a driven and detail-oriented individual with a passion for problem-solving.

    • I tackled several challenging tasks at work and made significant progress on each of them.

    • I also took some time to exercise and clear my mind, which helped me stay focused throughout the day.

    • As for myself, I have a background in engineering and enjoy using my analytical skills to find cre...

  • Answered by AI
  • Q2. How to optimize the code that you had written in aptitude test - It was a discussion, he helped me in solving the problem
  • Ans. 

    Optimizing code involves identifying and removing bottlenecks to improve performance.

    • Identify the parts of the code that are taking the most time to execute

    • Use efficient algorithms and data structures

    • Minimize the number of function calls and loops

    • Avoid unnecessary calculations or operations

    • Use caching or memoization to avoid repeating calculations

    • Profile the code to measure performance improvements

  • Answered by AI
  • Q3. Now write an optimized version of that code
  • Ans. 

    Optimized version of given code

    • Use efficient data structures and algorithms

    • Avoid unnecessary loops and conditions

    • Minimize function calls and variable assignments

  • Answered by AI
  • Q4. How was your day?-Tell me about yourself?
  • Ans. 

    My day was productive and fulfilling. As for myself, I am a driven and detail-oriented individual with a passion for problem-solving.

    • I tackled several challenging tasks at work and made significant progress on each of them.

    • I also took some time to exercise and clear my mind, which helped me stay focused throughout the day.

    • As for myself, I have a background in engineering and enjoy applying my analytical skills to a var...

  • Answered by AI
  • Q5. Which language do you prefer to code in? "Have you read The C Programming Language book by Dennis Retchie?" Which technical book have you read recently?.-So you like C, have you ever thought of bringing up...
  • Ans. 

    Yes, I prefer coding in C and have read The C Programming Language book. I have also explored the concept of Inheritance in C.

    • I find C to be a powerful and efficient language for system programming.

    • Yes, I have read The C Programming Language book by Dennis Retchie and found it to be a great resource.

    • Recently, I have been exploring the concept of Inheritance in C through various online resources and tutorials.

    • While C do...

  • Answered by AI
  • Q6. What is the reason behind inventing the concept of inheritance? Write a program and explain
  • Ans. 

    Inheritance allows a class to inherit properties and methods from another class.

    • Inheritance promotes code reusability and saves time and effort in programming.

    • It allows for the creation of a hierarchy of classes with shared characteristics.

    • For example, a class Animal can be inherited by classes such as Dog, Cat, and Bird, which share common properties and methods.

    • Inheritance can be implemented using the 'extends' keywo

  • Answered by AI
  • Q7. What is Liskov substitution principle?
  • Ans. 

    Liskov substitution principle is a principle in object-oriented programming that states that objects of a superclass should be able to be replaced with objects of its subclasses without affecting the correctness of the program.

    • Subtypes must be substitutable for their base types

    • Derived classes must not change the behavior of the base class

    • Violating the principle can lead to unexpected behavior and errors

    • Example: A squar...

  • Answered by AI
  • Q8. Explain OOPs concepts with a program for each
  • Ans. 

    Explanation of OOPs concepts with programs

    • Encapsulation: Wrapping data and functions into a single unit. Example: Class in Java

    • Abstraction: Hiding implementation details and showing only necessary information. Example: Abstract class in C#

    • Inheritance: Acquiring properties and behavior of a parent class. Example: Child class extending parent class in Python

    • Polymorphism: Ability of an object to take many forms. Example:

  • Answered by AI
  • Q9. Write a code for dynamic polymorphism
  • Ans. 

    Dynamic polymorphism is achieved through virtual functions and inheritance in object-oriented programming.

    • Create a base class with virtual functions

    • Create derived classes that override the virtual functions

    • Use pointers or references of the base class to call the virtual functions

    • The appropriate derived class function will be called based on the object being pointed to or referred to

  • Answered by AI
  • Q10. What is the drawback of global variables?
  • Ans. 

    Global variables can lead to unexpected changes and make debugging difficult.

    • Global variables can be accessed and modified from any part of the code, making it difficult to track changes.

    • They can cause naming conflicts if multiple variables with the same name are used in different parts of the code.

    • Using global variables can make it harder to test and debug code, as it can be difficult to isolate the cause of errors.

    • Th...

  • Answered by AI
  • Q11. Why using 'goto' is a bad programming practice?
  • Ans. 

    Using 'goto' can make code hard to read, maintain and debug.

    • Goto statements can create spaghetti code that is difficult to follow.

    • It can make it harder to understand the flow of the program.

    • It can also make debugging more difficult.

    • There are usually better alternatives to using goto, such as using loops or functions.

    • Some programming languages, such as Java and Python, do not even have a goto statement.

    • Using goto can al...

  • Answered by AI
  • Q12. Which is your favourite subject? Why? Name a book for that subject
  • Ans. 

    My favorite subject is history because it helps me understand the present and learn from the past.

    • I enjoy learning about different cultures and how they have evolved over time

    • I find it fascinating to study the causes and effects of major historical events

    • One of my favorite books on history is 'Guns, Germs, and Steel' by Jared Diamond

  • Answered by AI
  • Q13. Bring modularity in the code that you had written in aptitude test
  • Q14. Told me to make changes as per his wishes in that code-What is DRY in software engineering?
  • Q15. Gave a puzzle (find the heaviest ball amongst 8 balls in an optimized way). Tell the logic and write code for it.-write Create, Update, Delete, Insert, Select, Join SQL queries for a given problem
  • Q16. Asked me one sentence questions about the technologies that I had mentioned in resume... What is..... HTML, CSS, JQuery, JSP?
  • Q17. What are implicit objects in JSP?
  • Ans. 

    Implicit objects are pre-defined objects in JSP that can be accessed without being explicitly declared.

    • Implicit objects are created by the JSP container during the translation phase.

    • They can be accessed using predefined names such as request, response, session, application, out, pageContext, config, and exception.

    • For example, the request object can be used to retrieve parameters from a form or URL.

    • The session object ca...

  • Answered by AI
  • Q18. Name a web server and an application server
  • Ans. 

    Apache is a popular web server and Tomcat is a widely used application server.

    • Apache is an open-source web server that supports multiple operating systems and is known for its stability and security.

    • Tomcat is a Java-based application server that is used to deploy Java web applications and supports servlets and JSPs.

    • Other popular web servers include Nginx and Microsoft IIS.

    • Other popular application servers include JBoss...

  • Answered by AI
  • Q19. How to deploy web application on apache tomcat?-What is Collections in Java?
  • Ans. 

    To deploy a web application on Apache Tomcat, the application needs to be packaged as a WAR file and then deployed to the Tomcat server.

    • Create a WAR file of the web application

    • Copy the WAR file to the Tomcat webapps directory

    • Start the Tomcat server

    • Access the web application using the URL http://localhost:8080/

    • Collections in Java are classes that implement collections of objects, such as lists, sets, and

  • Answered by AI

Interview Preparation Tips

College Name: IIT MADRAS

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed before Jun 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Pivot and excel questions
  • Q2. All about excel

Interview Preparation Tips

Interview preparation tips for other job seekers - It was very simple self intro and excel questions and basic macro

I applied via Naukri.com

Interview Questionnaire 

2 Questions

  • Q1. Why Amazon?
  • Q2. What do you expect from Amazon?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be open to anything, and keep your expectations low as your expectations might kill you. Just relax and take everything in a healthy way

Associate Interview Questions & Answers

Amazon user image Arshiya Saba

posted on 10 Sep 2020

I applied via Company Website and was interviewed in Aug 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic Q & A

Interview Preparation Tips

Interview preparation tips for other job seekers - First-round I had English grammatical questions following that it took me to speech recognition, listen and type or type & email drafting. all you need is a calm mind and peaceful place and your set to go.

I applied via Referral and was interviewed before May 2021. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. How much time u work continues
  • Q2. How much salary do u expect

Interview Preparation Tips

Interview preparation tips for other job seekers - Really hard work as associate good for Hrs

I applied via Walk-in and was interviewed before Jun 2021. 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 - Group Discussion 

HR told about the company on the first day, how it works, told the rules, showed the management and a lot

Interview Preparation Tips

Topics to prepare for Amazon Associate interview:
  • Safery
  • Environment
  • Cleaning
Interview preparation tips for other job seekers - There is nothing to worry, if you have the desire to work and have passion, then you can work anywhere.

I was interviewed before May 2016.

Interview Preparation Tips

Round: Group Discussion
Experience: Extempore was conducted which is almost same as GD. In Extempore round each individual should select his own topic and talk for 2 minutes. Eye donation was the topic selected by me. The main concept of this round is to check the fluency over language
Tips: Be confident in what you speak. Dont get nervoused in this round

Round: Problem Statement
Experience: Extempore was conducted which is almost same as GD. In Extempore round each individual should select his own topic and talk for 2 minutes. Eye donation was the topic selected by me. The main concept of this round is to check the fluency over language
Tips: Be confident in what you speak. Dont get nervoused in this round

I was interviewed in Sep 2016.

Interview Questionnaire 

2 Questions

  • Q1. Being a mechanical engineer why do you choose corporate?
  • Ans. 

    As a mechanical engineer, I choose corporate because it offers diverse opportunities, professional growth, and stability.

    • Corporate provides a wide range of industries and sectors to work in, allowing me to explore different areas of mechanical engineering.

    • Working in a corporate environment offers opportunities for professional growth through training programs, mentorship, and exposure to new technologies.

    • Corporate jobs...

  • Answered by AI
  • Q2. Common puzzle questions

Interview Preparation Tips

Round: Group Discussion
Experience: Extempore was the name of the round. It is almost same as GD but instead each candidate should select his own topic and talk for 2 minutes.
Tips: Fluency over language is the main element focused in this round
Duration: 2 hours

Round: Problem Statement
Experience: In this round the candidate should attend online aptitude test for 1 hour. It consists of three parts : Logical part, Reasoning part, Language part. This round is easier one.
Tips: Concentrate more on English grammar

Round: HR Interview
Experience: Shortlisted candidates were called for HR round. For non IT students the main question asked was being a non IT student why do you choose corporate field.
Tips: The answer for this question cannot be provided by myself. Each of you candidates should build a genuine answer for this one

Round: Puzzle Interview
Experience: This is the final round of the whole interview process. In this round the candidates were focused asking only on puzzle questions. 3 to 5 questions were asked in this round depending upon the mentality of HR. 75 % score is required to clear this round
Tips: Just Google puzzle questions for interview, then work on those questions. You will get an idea on how to clear this round

Associate Interview Questions & Answers

Amazon user image Sayeda Peerzade

posted on 10 Jul 2017

I was interviewed in Mar 2017.

Interview Questionnaire 

1 Question

  • Q1. Self introduction, Strengthens and weakness, best friend, why Amazon

Interview Preparation Tips

Round: Resume Shortlist
Experience: We were asked to introduce ourselves and also speak about the environment of the room. Then asked to speak about Amazon and why do we want to work with Amazon
Tips: Be confident

Round: Test
Experience: Pronounciaton skills were examined
Tips: Flexible in talking in English
Duration: 20 minutes
Total Questions: 25

Round: HR Interview
Experience: HR was really cooperative he asked to relax and then started asking questions in a gentle manner. He made me feel comfortable. And reduced the nervous environment.
Tips: Be confident and don't be nervous

Skills: Language, Time Management
College Name: VHD central institute of home science

eBay Interview FAQs

How many rounds are there in eBay Process Specialist interview?
eBay interview process usually has 2 rounds. The most common rounds in the eBay interview process are Resume Shortlist and One-on-one Round.

Tell us how to improve this page.

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Swiggy Interview Questions
3.8
 • 428 Interviews
BigBasket Interview Questions
3.9
 • 359 Interviews
Udaan Interview Questions
4.0
 • 334 Interviews
Meesho Interview Questions
3.7
 • 328 Interviews
Myntra Interview Questions
4.0
 • 214 Interviews
Blinkit Interview Questions
3.7
 • 181 Interviews
BlackBuck Interview Questions
3.8
 • 176 Interviews
Spinny Interview Questions
3.7
 • 170 Interviews
View all
Assistant Manager
28 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Key Account Manager
27 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Business Analyst
26 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Category Manager
13 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Analyst
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare eBay with

Amazon

4.1
Compare

Etsy

4.2
Compare

Flipkart

4.0
Compare

Google

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