Premium Employer

i

This company page is being actively managed by Cencora Team. If you also belong to the team, you can get access from here

Cencora Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Cencora Interview Questions and Answers

Updated 6 May 2025
Popular Designations

Cencora Interview Experiences

8 interviews found

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

I applied via Approached by Company and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. How do you do security in web api
  • Ans. 

    Security in web API involves implementing authentication, authorization, encryption, and input validation.

    • Implement authentication mechanisms such as OAuth, JWT, or API keys to verify the identity of clients accessing the API.

    • Use authorization to control access to resources based on roles or permissions.

    • Encrypt sensitive data using SSL/TLS to ensure secure communication between clients and the API.

    • Validate and sanitize...

  • Answered by AI
  • Q2. How did you manage your project deadlines
  • Ans. 

    I prioritize tasks, communicate effectively, and use tools to track progress, ensuring timely project delivery.

    • Set clear milestones: For example, breaking down a project into phases like design, development, and testing.

    • Use project management tools: I utilize tools like Jira or Trello to track tasks and deadlines.

    • Regular check-ins: I schedule weekly meetings with the team to discuss progress and address any blockers.

    • Pr...

  • Answered by AI

Skills evaluated in this interview

Scrum Master Interview Questions & Answers

user image Ameya Dahasahasra

posted on 17 Oct 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I appeared for an interview in Sep 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Scrum Ceremonies details
  • Q2. Situational Questions
Round 2 - Technical 

(1 Question)

  • Q1. Situational Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Process is a bit delayed. Panel takes time to respond.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me something about yourself
  • Ans. 

    I am a results-driven operations executive with over 10 years of experience in optimizing processes and driving efficiency.

    • I have a proven track record of implementing cost-saving initiatives

    • I excel at leading cross-functional teams to achieve operational goals

    • I am skilled in analyzing data to identify areas for improvement

    • I am passionate about continuous learning and professional development

  • Answered by AI
  • Q2. Why are you looking for job change
  • Ans. 

    Seeking new challenges and opportunities for growth

    • Looking for a new challenge to further develop my skills and knowledge

    • Interested in exploring different industries and gaining diverse experience

    • Seeking opportunities for career advancement and professional growth

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Self introduction
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a Salesforce Developer with 5 years of experience in developing custom solutions for clients.

    • 5 years of experience in Salesforce development

    • Strong knowledge of Apex, Visualforce, and Lightning components

    • Experience in integrating Salesforce with external systems

    • Certified Salesforce Developer

    • Passionate about creating efficient and scalable solutions

  • Answered by AI
  • Q2. Salesforce experience
  • Ans. 

    I have 3 years of experience working with Salesforce CRM, including customization, configuration, and integration.

    • 3 years of experience with Salesforce CRM

    • Customization and configuration of Salesforce

    • Integration of Salesforce with other systems

  • Answered by AI

Interview Questions & Answers

user image Anonymous

posted on 5 May 2025

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
6-8 weeks
Result
Selected Selected

I appeared for an interview in Nov 2024, where I was asked the following questions.

  • Q1. Why are you leaving job
  • Q2. Are you ok with night shift
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Tested knowledge about Sap and business understanding
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Basic c# questions
Round 2 - Technical 

(1 Question)

  • Q1. In details oops concepts
  • Ans. 

    OOPs concepts include encapsulation, inheritance, polymorphism, and abstraction, forming the foundation of object-oriented programming.

    • Encapsulation: Bundling data and methods that operate on the data within a single unit (class). Example: A class 'Car' with properties like 'speed' and methods like 'accelerate()'.

    • Inheritance: Mechanism to create a new class from an existing class, inheriting its properties and methods....

  • Answered by AI
Are these interview questions helpful?

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 22 Jan 2024

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

(1 Question)

  • Q1. Scrum, User Stories related questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - General Manual and Automation Testing Interview Questions. Details technical questions were asked.

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Cencora?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

7 Questions

  • Q1. Build a stack using queues and vice versa
  • Ans. 

    Stack using queues: push() - enqueue to queue1, pop() - dequeue from queue2 after transferring n-1 elements from queue1 to queue2

    • To push an element, enqueue it to queue1

    • To pop an element, transfer n-1 elements from queue1 to queue2, dequeue the last element from queue1 and swap the names of queue1 and queue2

    • Queue using stacks: enqueue() - push to stack1, dequeue() - pop from stack2 after transferring all elements from ...

  • Answered by AI
  • Q2. Implement doubly linked list
  • Ans. 

    Doubly linked list is a data structure where each node has a pointer to both previous and next nodes.

    • Create a Node class with data, prev and next pointers

    • Create a LinkedList class with head and tail pointers

    • Implement methods to add, remove and traverse nodes

  • Answered by AI
  • Q3. Asked some questions on Distributed computing, Computer Networks
  • Q4. Asked some in depth questions on my project
  • Q5. Standard HR interview like what are your strengths and weakness, why do you want to join in our company etc
  • Q6. Are you a leader? why do you think so?
  • Ans. 

    Yes, I am a leader.

    • I have experience leading teams in previous projects.

    • I am able to communicate effectively and motivate team members.

    • I am proactive in identifying and solving problems.

    • I am able to delegate tasks and trust team members to complete them.

    • I am constantly seeking to improve my leadership skills through learning and feedback.

  • Answered by AI
  • Q7. Given a case about leader managing his team and asked some questions like what would you do in that situation

Interview Preparation Tips

Round: Technical Interview
Experience: Good and peaceful interview. Questions on computer background were simple. Interviewer had a good knowledge on my project field so he asked some really good questions.
Tips: Be clear with every single point written on your CV. Be confident !!

Round: Behavioural Interview
Experience: Overall a good experience.
Tips: The interviewer want to know how you handle the situations. Clearly express your views on the situation

General Tips: Be prepared and confident
Skills: java, Computer Networks, Analytic Skills
College Name: IIT Kharagpur
Motivation: This company is number one in US market. It has revenue more than Microsoft!!

Skills evaluated in this interview

Interview Questionnaire 

9 Questions

  • Q1. Whole database design of one of my project. Asked some SQL queries also
  • Q2. You are given a triangle with height h and base length b and a square of side length a. How many squares can you fit in triangle? Need to derive formula
  • Ans. 

    Formula to calculate number of squares that can fit inside a triangle

    • Calculate the area of the triangle and the area of the square

    • Divide the area of the triangle by the area of the square to get the number of squares that can fit inside the triangle

    • Formula: (h*b)/(a*a)

  • Answered by AI
  • Q3. A pattern matching problem with special characters. He wanted the full working code. Similar question: -----/
  • Q4. What is SVM (Support Vector Machines
  • Ans. 

    SVM is a machine learning algorithm used for classification and regression analysis.

    • SVM finds the best hyperplane that separates data into different classes.

    • It works by maximizing the margin between the hyperplane and the closest data points.

    • SVM can handle both linear and non-linear data using kernel functions.

    • It is widely used in image classification, text classification, and bioinformatics.

    • SVM has been shown to be ef...

  • Answered by AI
  • Q5. ANN(Artificial Neural Networks)
  • Q6. GP(Genetic Programming)
  • Q7. Differences between them and how it is better than linear regression
  • Ans. 

    Logistic regression is used for classification while linear regression is used for regression analysis.

    • Logistic regression predicts the probability of an event occurring, while linear regression predicts the value of a continuous variable.

    • Logistic regression uses a sigmoid function to map input values to a probability between 0 and 1.

    • Linear regression assumes a linear relationship between the independent and dependent ...

  • Answered by AI
  • Q8. Questions related to AI and Machine Learning
  • Q9. He also asked few java OOPS questions

Interview Preparation Tips

Round: Test
Experience: Contained basic logic based questions. 30 problems. Difficulty Level ->Medium
Duration: 60 minutes
Total Questions: 30

Round: Test
Experience: 1) 15 multiple choice questions. Difficulty level -> Medium-Hard

2) 3 programming problems: Difficulty level -> Easy

a) You have an array of integers. Find that index for which sum of all the elements before it will be equal to sum of all elements after it.

b) Implement queue using stacks.

c) Find minimum value in a binary tree.

3) There were 2 networking related questions. We need to write the answers in detail. I don’t remember the questions.
Duration: 30 minutes
Total Questions: 15

College Name: NA

Skills evaluated in this interview

Cencora Interview FAQs

How many rounds are there in Cencora interview?
Cencora interview process usually has 1-2 rounds. The most common rounds in the Cencora interview process are Technical and One-on-one Round.
How to prepare for Cencora 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 Cencora. The most common topics and skills that interviewers at Cencora expect are HTML, Load Runner, Cucumber, Java and Javascript.
What are the top questions asked in Cencora interview?

Some of the top questions asked at the Cencora interview -

  1. How do you do security in web ...read more
  2. in details oops conce...read more
  3. Tested knowledge about Sap and business understand...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.6/5

based on 8 interview experiences

Difficulty level

Easy 25%
Moderate 75%

Duration

Less than 2 weeks 75%
2-4 weeks 25%
View more
Join Cencora United in our responsibility to create healthier futures

Interview Questions from Similar Companies

Johnson & Johnson Interview Questions
4.0
 • 103 Interviews
UnitedHealth Interview Questions
4.0
 • 84 Interviews
Labcorp Interview Questions
4.0
 • 42 Interviews
XL Health Interview Questions
4.2
 • 20 Interviews
GENWORKS Health Interview Questions
3.2
 • 17 Interviews
View all

Cencora Reviews and Ratings

based on 17 reviews

3.2/5

Rating in categories

2.9

Skill development

3.4

Work-life balance

3.2

Salary

3.0

Job security

3.1

Company culture

2.8

Promotions

3.0

Work satisfaction

Explore 17 Reviews and Ratings
Salesforce Solution Architect

Pune

7-12 Yrs

Not Disclosed

Explore more jobs
Contract Administrator
18 salaries
unlock blur

₹16.5 L/yr - ₹18 L/yr

Analyst
13 salaries
unlock blur

₹6.4 L/yr - ₹14.6 L/yr

Software Developer
10 salaries
unlock blur

₹10 L/yr - ₹15 L/yr

Senior Associate
8 salaries
unlock blur

₹17 L/yr - ₹23.5 L/yr

Senior Buyer
8 salaries
unlock blur

₹14 L/yr - ₹14 L/yr

Explore more salaries
Compare Cencora with

UnitedHealth

4.0
Compare

Johnson & Johnson

4.0
Compare

B. Braun Medical

4.0
Compare

Vcare Trichology

3.7
Compare
write
Share an Interview