Upload Button Icon Add office photos

3M

Compare button icon Compare button icon Compare

Filter interviews by

3M Interview Questions and Answers

Updated 9 Jun 2025
Popular Designations

10 Interview questions

A Full Stack Developer was asked 5mo ago
Q. Write an SQL query to remove duplicate rows from a table.
Ans. 

Use SELECT DISTINCT to remove duplicates from a table in SQL.

  • Use SELECT DISTINCT to retrieve unique rows from a table.

  • For example, SELECT DISTINCT column_name FROM table_name;

  • Another way is to use GROUP BY with aggregate functions to remove duplicates.

  • For example, SELECT column_name, COUNT(*) FROM table_name GROUP BY column_name;

View all Full Stack Developer interview questions
A Full Stack Developer was asked 5mo ago
Q. Given an array of integers, find the most frequent element.
Ans. 

Identify the most frequently occurring element in an array using efficient algorithms.

  • Use a hash map to count occurrences of each element. Example: For [1, 2, 2, 3], count becomes {1: 1, 2: 2, 3: 1}.

  • Iterate through the hash map to find the element with the highest count. In the example, 2 is the most frequent.

  • Consider edge cases: empty arrays return null, arrays with all unique elements return any element.

  • For larg...

View all Full Stack Developer interview questions
A Senior Analyst was asked 12mo ago
Q. What is the difference between a table and a view?
Ans. 

Tables store data in a structured format, while views are virtual tables that display data from one or more tables.

  • Tables store data physically on disk, while views do not store data physically but display data from tables.

  • Tables can be modified directly, while views are read-only.

  • Views can be used to simplify complex queries by pre-defining joins and filters.

  • Example: Table 'Employees' stores employee data, while ...

View all Senior Analyst interview questions
An Area Sales Manager was asked
Q. How do you estimate a dealer counter's volume and monthly sales?
Ans. 

Estimate dealer counter's volume and monthly sales by analyzing historical data, market trends, and dealer performance.

  • Analyze historical sales data to identify trends and patterns

  • Consider market conditions and economic factors that may impact sales

  • Evaluate dealer performance and track record

  • Conduct market research and gather competitor information

  • Utilize sales forecasting techniques and tools

  • Regularly communicate...

View all Area Sales Manager interview questions
An Area Sales Manager was asked
Q. How do you grow in a declining business territory?
Ans. 

To grow in a declining business territory, focus on customer retention, explore new markets, improve product offerings, and enhance sales strategies.

  • Focus on customer retention by providing excellent customer service and building strong relationships.

  • Explore new markets by conducting market research and identifying potential opportunities for growth.

  • Improve product offerings by listening to customer feedback and a...

View all Area Sales Manager interview questions
A QA QC Executive was asked
Q. What is the difference between QA and QC?
Ans. 

QA focuses on preventing defects in the process, while QC focuses on identifying defects in the product.

  • QA is process oriented, ensuring that the processes used to manage and create deliverables are effective and efficient.

  • QC is product oriented, focusing on identifying defects in the final product through testing and inspection.

  • QA involves activities like process audits, training, and process improvement initiati...

View all QA QC Executive interview questions
A QA QC Executive was asked
Q. What are deviation and change control?
Ans. 

Deviation and change control are processes used in quality management to document and manage any deviations from standard procedures and any changes made to processes or products.

  • Deviation refers to a departure from standard procedures or specifications.

  • Change control is the process of managing changes to processes, products, or systems in a controlled manner.

  • Deviation and change control help ensure that any devia...

View all QA QC Executive interview questions
Are these interview questions helpful?
A QA QC Executive was asked
Q. What is a stability test?
Ans. 

Stability test is a process to evaluate the chemical and physical properties of a product over time to ensure its quality and shelf life.

  • Stability tests are conducted to determine how a product's quality changes over time under various conditions such as temperature, humidity, and light exposure.

  • These tests help in establishing the shelf life of a product and ensuring its effectiveness and safety for consumers.

  • Exa...

View all QA QC Executive interview questions
A Senior Security Analyst was asked 3w ago
Q. Vulnerability management with pentesting testing
Ans. 

Vulnerability management and pentesting are crucial for identifying and mitigating security risks in an organization.

  • Vulnerability management involves identifying, classifying, and prioritizing vulnerabilities in systems and applications.

  • Penetration testing simulates real-world attacks to evaluate the effectiveness of security measures.

  • Regular pentesting helps in discovering vulnerabilities that may not be identif...

View all Senior Security Analyst interview questions
An Area Manager was asked 1mo ago
Q. Plan how to improve further
Ans. 

To improve further, we need to focus on continuous learning, team collaboration, and leveraging technology for efficiency.

  • Implement regular training sessions to enhance team skills, e.g., workshops on new software tools.

  • Encourage open communication through weekly team meetings to share ideas and feedback.

  • Utilize project management tools like Trello or Asana to streamline workflows and track progress.

  • Set measurable...

View all Area Manager interview questions

3M Interview Experiences

33 interviews found

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

I appeared for an interview before Feb 2023.

Round 1 - Technical 

(4 Questions)

  • Q1. Difference between QA and QC
  • Ans. 

    QA focuses on preventing defects in the process, while QC focuses on identifying defects in the product.

    • QA is process oriented, ensuring that the processes used to manage and create deliverables are effective and efficient.

    • QC is product oriented, focusing on identifying defects in the final product through testing and inspection.

    • QA involves activities like process audits, training, and process improvement initiatives.

    • Q...

  • Answered by AI
  • Q2. What is deviation and change control
  • Ans. 

    Deviation and change control are processes used in quality management to document and manage any deviations from standard procedures and any changes made to processes or products.

    • Deviation refers to a departure from standard procedures or specifications.

    • Change control is the process of managing changes to processes, products, or systems in a controlled manner.

    • Deviation and change control help ensure that any deviations...

  • Answered by AI
  • Q3. What is stability test
  • Ans. 

    Stability test is a process to evaluate the chemical and physical properties of a product over time to ensure its quality and shelf life.

    • Stability tests are conducted to determine how a product's quality changes over time under various conditions such as temperature, humidity, and light exposure.

    • These tests help in establishing the shelf life of a product and ensuring its effectiveness and safety for consumers.

    • Examples...

  • Answered by AI
  • Q4. GMP act details
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Top frequent element
  • Ans. 

    Identify the most frequently occurring element in an array using efficient algorithms.

    • Use a hash map to count occurrences of each element. Example: For [1, 2, 2, 3], count becomes {1: 1, 2: 2, 3: 1}.

    • Iterate through the hash map to find the element with the highest count. In the example, 2 is the most frequent.

    • Consider edge cases: empty arrays return null, arrays with all unique elements return any element.

    • For large dat...

  • Answered by AI
  • Q2. SQL query to remove duplicates
  • Ans. 

    Use SELECT DISTINCT to remove duplicates from a table in SQL.

    • Use SELECT DISTINCT to retrieve unique rows from a table.

    • For example, SELECT DISTINCT column_name FROM table_name;

    • Another way is to use GROUP BY with aggregate functions to remove duplicates.

    • For example, SELECT column_name, COUNT(*) FROM table_name GROUP BY column_name;

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

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Introduction on myself and work background
  • Q2. Discussion on experience
Round 2 - One-on-one 

(2 Questions)

  • Q1. Introduction on work background
  • Q2. Discussed about experience
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. ITIL V4 related questions and situation based questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Based on ITIL V4 in depth questions
Round 3 - HR 

(1 Question)

  • Q1. Salary expectations and other info

Interview Preparation Tips

Interview preparation tips for other job seekers - Have good knowledge based on your skills and experience
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. How did you handle the critical situation of the big which needs to solved in U platform
  • Ans. 

    I handled the critical situation by conducting thorough root cause analysis, collaborating with cross-functional teams, and implementing a strategic action plan.

    • Conducted a thorough root cause analysis to identify the source of the bug

    • Collaborated with cross-functional teams including developers, product managers, and stakeholders

    • Implemented a strategic action plan to address the bug efficiently and effectively

  • Answered by AI

Customer Care Manager Interview Questions & Answers

user image Dhana Beatrice Celon

posted on 26 Oct 2024

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

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a dedicated Customer Care Manager with extensive experience in enhancing customer satisfaction and team performance.

    • Customer-Centric Approach: I prioritize understanding customer needs, which led to a 20% increase in customer satisfaction scores at my previous job.

    • Team Leadership: I successfully managed a team of 15 customer service representatives, implementing training programs that improved response times by 30...

  • Answered by AI
  • Q2. How did you handle a difficult situation
  • Ans. 

    In a challenging customer service scenario, I effectively resolved a conflict by actively listening and providing tailored solutions.

    • Active Listening: I listened carefully to the customer's concerns, ensuring they felt heard and understood, which helped de-escalate the situation.

    • Empathy: I expressed empathy for their frustration, acknowledging their feelings and validating their experience, which built rapport.

    • Tailored...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Coding Test 

Leetcode Medium quesions

Intern Interview Questions & Answers

user image Anonymous

posted on 14 Jan 2025

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

(1 Question)

  • Q1. Strengths and weaknesses

Data Engineer Interview Questions & Answers

user image Prateek Pandey

posted on 5 Dec 2024

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

SQL functions and medium level query questions.

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

Portfolio review of graduation project

Round 2 - One-on-one 

(1 Question)

  • Q1. Explain your last project
  • Ans. 

    In my last project, I designed a user-friendly e-commerce platform focusing on enhancing customer experience and increasing sales.

    • User Research: Conducted surveys and interviews to understand user needs, leading to a design that prioritized ease of navigation.

    • Responsive Design: Implemented a mobile-first approach, ensuring the platform is fully functional and visually appealing on all devices.

    • Visual Hierarchy: Used col...

  • Answered by AI
Round 3 - Case Study 

Graphic design project for OEMs

Round 4 - HR 

(1 Question)

  • Q1. Why do you want to work at 3M
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself.
  • Q2. What sales responsibilities have you handled in your current job?
  • Ans. 

    In my current role, I manage sales strategies, client relationships, and team performance to drive revenue growth.

    • Developed and implemented sales strategies that increased territory revenue by 25% over the last year.

    • Managed a team of 5 sales representatives, providing training and support to enhance their performance.

    • Built and maintained strong relationships with key clients, resulting in a 30% increase in repeat busin...

  • Answered by AI

Top trending discussions

View All
Interview Tips & Stories
5d (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 3M?
Ask anonymously on communities.

3M Interview FAQs

How many rounds are there in 3M interview?
3M interview process usually has 2-3 rounds. The most common rounds in the 3M interview process are One-on-one Round, Technical and HR.
How to prepare for 3M 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 3M. The most common topics and skills that interviewers at 3M expect are Compliance, Sales, Key Account Management, Operations and Usage.
What are the top questions asked in 3M interview?

Some of the top questions asked at the 3M interview -

  1. how do you estimate dealer counter's volume, monthly sa...read more
  2. how to grow in a declining business territ...read more
  3. What is deviation and change cont...read more
How long is the 3M interview process?

The duration of 3M interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.3/5

based on 37 interview experiences

Difficulty level

Easy 6%
Moderate 81%
Hard 13%

Duration

Less than 2 weeks 44%
2-4 weeks 31%
4-6 weeks 19%
More than 8 weeks 6%
View more

Interview Questions from Similar Companies

Flex Interview Questions
4.0
 • 201 Interviews
Foxconn Interview Questions
3.9
 • 186 Interviews
Navitasys India Interview Questions
4.1
 • 109 Interviews
TE Connectivity Interview Questions
4.1
 • 89 Interviews
Wistron Interview Questions
3.9
 • 87 Interviews
Secure Meters Interview Questions
4.0
 • 74 Interviews
DBG Technology Interview Questions
3.8
 • 71 Interviews
Vertiv Interview Questions
4.0
 • 55 Interviews
ECIL Interview Questions
4.2
 • 55 Interviews
View all

3M Reviews and Ratings

based on 558 reviews

4.2/5

Rating in categories

3.9

Skill development

4.2

Work-life balance

3.9

Salary

3.5

Job security

4.1

Company culture

3.2

Promotions

3.8

Work satisfaction

Explore 558 Reviews and Ratings
Marketing Manager - Home Improvement

Bangalore / Bengaluru

3-8 Yrs

₹ 18-26 LPA

Talent Acquisition Specialist

Bangalore / Bengaluru

6-8 Yrs

Not Disclosed

Advanced Engineer- Utility

Pune

15-20 Yrs

Not Disclosed

Explore more jobs
Area Sales Manager
240 salaries
unlock blur

₹13.6 L/yr - ₹25 L/yr

Senior Area Sales Manager
75 salaries
unlock blur

₹19 L/yr - ₹31.5 L/yr

Technical Associate
48 salaries
unlock blur

₹3 L/yr - ₹8.2 L/yr

Regional Sales Manager
41 salaries
unlock blur

₹24.6 L/yr - ₹40.3 L/yr

Marketing Manager
38 salaries
unlock blur

₹12 L/yr - ₹37.3 L/yr

Explore more salaries
Compare 3M with

Flex

4.0
Compare

Foxconn

3.8
Compare

Dixon Technologies

4.0
Compare

ECIL

4.3
Compare
write
Share an Interview