Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Sysmex Supply Chain Management Associate Interview Questions and Answers

Updated 20 Feb 2015

Sysmex Supply Chain Management Associate Interview Experiences

1 interview found

Interview Preparation Tips

Round: HR Interview
Experience: I entered the interview room and saw 2 Japanese people along with a translator to facilitate the conversation. The interview was mostly HR revolving around leadership skills and slightly touched upon tech when I pitched about my research paper. 
They were mainly looking for people who would adapt to the Japanese culture. Since I had read some information regarding japan and the long term vision of their company just before coming to the interview, I pitched my ideas very well and linked it to the core values of their company. 
They seemed quite impressed with my knowledge about the healthcare industry and asked me to choose whether I would like to work in a business role or an R&D role since they felt I had credentials for both. I told them that I preferred the business planning role and the interview concluded after 5 more minutes of general discussion about healthcare.
Outside the room, I still had lingering doubts that I would be rejected yet again due to some reason. Finally, the HR came out of the room and started asking me more details like my full name, birthplace, father’s name etc and started filling up my offer letter. At this point, I felt elated. It started to sink in slowly and steadily. After a lot of failures over the past few days, finally I had some closure….I too had a job.

Skill Tips: Read some information regarding japan and the long term vision of their company just before going to the interview.
Skills: Japanese Culture
College Name: IIT MADRAS

Interview questions from similar companies

I applied via Company Website and was interviewed in Oct 2020. There were 5 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - They all were very welcoming and made us comfortable during an interview. If you are well prepared, the interview will be smooth and you will click the same. Just one thing, which i learnt from my current experience, Never ever say rise which you expect in range. If said 30-40% and negotiation started with 31%. So its always better to say 37.5 % or more.
Interview experience
4
Good
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 - One-on-one 

(1 Question)

  • Q1. Details on the projects you have worked
  • Ans. 

    I have worked on various projects including web development, data analysis, and software testing.

    • Web development: Created a responsive website using HTML, CSS, and JavaScript.

    • Data analysis: Analyzed customer data to identify trends and make recommendations for marketing strategies.

    • Software testing: Conducted thorough testing of a mobile application to ensure functionality and usability.

    • Project management: Led a team of...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. How to handle the project, explain stepwise
  • Ans. 

    To handle a project, follow these steps

    • Define project goals and objectives

    • Create a project plan with tasks, timelines, and resources

    • Assign tasks to team members and set deadlines

    • Monitor progress and make necessary adjustments

    • Communicate regularly with stakeholders

    • Manage risks and resolve issues

    • Test and evaluate project deliverables

    • Complete the project and conduct a post-project review

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Case Study 

Create charts, Excel formulas

Round 2 - One-on-one 

(2 Questions)

  • Q1. Background and communication
  • Q2. Tell me about youe self

Interview Preparation Tips

Topics to prepare for Abbott Associate interview:
  • Advanced Excel
Interview preparation tips for other job seekers - Prepare pharma background
Interview experience
4
Good
Difficulty level
-
Process Duration
Less than 2 weeks
Result
-

I applied via Campus Placement and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Aptitude Test 

Nice aptitude questions of logical reasons and data interpretation

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

(2 Questions)

  • Q1. Use of Analytics
  • Ans. 

    Analytics is crucial for making data-driven decisions and improving business performance.

    • Analytics helps in identifying trends and patterns in data.

    • It enables businesses to make informed decisions based on data insights.

    • Analytics can be used to optimize processes and improve efficiency.

    • Examples: Using sales analytics to identify top-performing products, using customer analytics to personalize marketing strategies.

  • Answered by AI
  • Q2. What do you want to bring to the table
  • Ans. 

    I want to bring strong leadership skills, problem-solving abilities, and a passion for customer service to the table.

    • Strong leadership skills: I have experience leading teams and making strategic decisions.

    • Problem-solving abilities: I excel at finding creative solutions to challenges that arise.

    • Passion for customer service: I prioritize providing excellent service and building strong relationships with customers.

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Project related
Round 1 - One-on-one 

(1 Question)

  • Q1. Basic questions people struggle to speak English though
Round 2 - HR 

(1 Question)

  • Q1. Tell me about yourself.
  • Ans. 

    I am a highly motivated and experienced professional with a strong background in the field.

    • I have a Bachelor's degree in Business Administration.

    • I have over 5 years of experience working as an Associate in a reputable company.

    • I am skilled in data analysis, project management, and client relations.

    • I have successfully led a team of 10 members to achieve project goals within tight deadlines.

    • I am a quick learner and adapt

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I guess someone's who's been rejected in a BPO with a reason of communication will clear this organisations interview
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. How many types of joins in sql
  • Ans. 

    There are four types of joins in SQL: INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • INNER JOIN: Returns rows when there is at least one match in both tables.

    • LEFT JOIN: Returns all rows from the left table and the matched rows from the right table.

    • RIGHT JOIN: Returns all rows from the right table and the matched rows from the left table.

    • FULL JOIN: Returns rows when there is a match in one of the tables.

  • Answered by AI
  • Q2. Diff between list and set
  • Ans. 

    List is an ordered collection of elements with duplicates allowed, while set is an unordered collection of unique elements.

    • List maintains the order of elements, while set does not guarantee any specific order.

    • List allows duplicate elements, while set does not allow duplicates.

    • List is implemented using classes like ArrayList, LinkedList, etc., while set is implemented using classes like HashSet, TreeSet, etc.

  • Answered by AI
  • Q3. Diff between map set
  • Ans. 

    Map is a collection of key-value pairs where each key is unique, while a set is a collection of unique elements with no duplicate values.

    • Map allows duplicate values but keys must be unique, while set does not allow duplicates.

    • Map is accessed using keys, while set is accessed using elements.

    • Example: Map - {1: 'apple', 2: 'banana'}, Set - {'apple', 'banana'}

  • Answered by AI
  • Q4. Write Fibonacci program
  • Ans. 

    Fibonacci program generates the Fibonacci sequence up to a specified number of terms.

    • Start with two variables initialized to 0 and 1

    • Use a loop to calculate the next Fibonacci number by adding the previous two numbers

    • Repeat the process until the desired number of terms is reached

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Profile , Background
  • Q2. Case question around sales force structure

Interview Preparation Tips

Topics to prepare for Abbott Senior Manager interview:
  • Sales force effectiveness
Interview preparation tips for other job seekers - Robust profile match is a must
Contribute & help others!
anonymous
You can choose to be anonymous

Recently Viewed

INTERVIEWS

Ben Franklin Opticians

No Interviews

INTERVIEWS

Indiamart Intermesh

No Interviews

INTERVIEWS

Indiamart Intermesh

No Interviews

INTERVIEWS

Sysmex

No Interviews

INTERVIEWS

State Bank of India

No Interviews

INTERVIEWS

CarDekho Group

No Interviews

SALARIES

Amplifon

INTERVIEWS

DBS Bank

No Interviews

SALARIES

Thermo Fisher Scientific

INTERVIEWS

DBS Bank

No Interviews

Tell us how to improve this page.

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 428 Interviews
BigBasket Interview Questions
3.9
 • 359 Interviews
Udaan Interview Questions
3.9
 • 334 Interviews
Lenskart Interview Questions
3.2
 • 305 Interviews
AmbitionBox Interview Questions
4.9
 • 151 Interviews
Abbott Interview Questions
4.1
 • 147 Interviews
Ola Cabs Interview Questions
3.4
 • 139 Interviews
CarDekho Group Interview Questions
3.7
 • 72 Interviews
LinkedIn Interview Questions
4.3
 • 65 Interviews
View all
Area Sales Manager
21 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Service Engineer
20 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Regulatory Affairs Specialist
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Field Service Engineer
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Service Engineer
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Sysmex with

Roche Diagnostics

3.8
Compare

Siemens Healthineers

4.0
Compare

Abbott

4.1
Compare

Beckman Coulter

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