Upload Button Icon Add office photos

Mintel

Compare button icon Compare button icon Compare

Filter interviews by

Mintel Technical Manager Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

I applied via Approached by Company and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Basic screening questions related to job function and responsibilities.
Round 2 - One-on-one 

(1 Question)

  • Q1. AML, KYC, compliance, regulatory, sanctions, Transaction monitoring. How risk is assessed and what factors change it?
Round 3 - HR 

(1 Question)

  • Q1. Salary discussions, leaves, project related info, onboarding assistance.

Interview Preparation Tips

Interview preparation tips for other job seekers - Know your resume and job discriptions. Managers will mostly focus on skill set and attitude to learn.

I applied via Recruitment Consulltant and was interviewed before Sep 2021. There were 4 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 

(3 Questions)

  • Q1. Describe current role
  • Q2. Describe your past work ex
  • Q3. How will you solve a particular question
Round 3 - Aptitude Test 

Was asked about multiple aptitude questions

Round 4 - HR 

(4 Questions)

  • Q1. Previous CTC was checked
  • Ans. 

    Yes

    • Previous CTC (Cost to Company) was checked during the interview process.

    • The interviewer wanted to know the candidate's previous salary or compensation package.

    • The question helps the employer understand the candidate's salary expectations and negotiation skills.

    • The answer should provide the candidate's previous CTC or state that the data is not available.

  • Answered by AI
  • Q2. Expected CTC for the job
  • Q3. Answer was given for the question
  • Q4. HR checked about your understanding of onboarding process

Interview Preparation Tips

Interview preparation tips for other job seekers - Be transparent with the details you share and upfront about the requirements.

I applied via Recruitment Consultant and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. All questions related to Digital and networks and they asked core java question like functional interface uses and why do we need it and difference with interface

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was quite good

I applied via Recruitment Consulltant 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 

(3 Questions)

  • Q1. Old experience & process
  • Q2. Team leader questions like SLA,stats
  • Q3. Google related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep u r words confidential infront of interviewer & wht ever the situation u need to maintain positive vibe with a smile & ans every question if not tell it in a polite way

I applied via LinkedIn and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Basics of Angular
  • Q2. Basics of js

Interview Preparation Tips

Interview preparation tips for other job seekers - Freshen up basics on skills.

Interview Questionnaire 

1 Question

  • Q1. Design facebook
  • Ans. 

    Designing Facebook is a complex task involving various components and technologies.

    • Identify the core features of Facebook such as user profiles, news feed, messaging, and groups.

    • Choose appropriate technologies for each component such as PHP for backend, React for frontend, and MySQL for database.

    • Ensure scalability and performance by implementing caching, load balancing, and database sharding.

    • Implement security measures...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Database, logical reasoning

Skills evaluated in this interview

I applied via LinkedIn and was interviewed before Jul 2020. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Tell me about yourself.
  • Ans. I am MBA and had worked very consistently with my past organisation. I had been provided with the role of a quality assurance analyst and I did my job very efficiently.
  • Answered Anonymously
  • Q2. How can you add value to this organisation.
  • Q3. Advance excel questionnaire: Power Pivot, VBA, lookup functions, dynamic dashboard advices and some statistical concepts like standard deviation, mean, median, mode and their uses. How to create charts and...
  • Q4. Case Study: I have to come-up with the list of owners who owns the most expensive cars in South Delhi region. I have to think about the data sources and the type of data that I would needed. Have to figure...

Interview Preparation Tips

Interview preparation tips for other job seekers - Having technical superiority is not the best ability to have rather try to find out how to integrate the findings to add value to the business

Try to put only those things in resume with which you are confident

Be smart, active and positive while giving answers

Interview Questionnaire 

1 Question

  • Q1. What is name mangling?

Skills evaluated in this interview

Interview Questionnaire 

6 Questions

  • Q1. Explain abstract factory design pattern ?
  • Ans. 

    Abstract Factory is a creational design pattern that provides an interface for creating families of related objects.

    • Abstract Factory is used when we need to create families of related objects without specifying their concrete classes.

    • It provides an interface for creating objects of related classes without specifying their concrete classes.

    • It encapsulates a group of factories that have a common theme.

    • It promotes loose c...

  • Answered by AI
  • Q2. How do you do range based map iteration
  • Ans. 

    Range based map iteration can be done using a for-each loop or iterators.

    • Use a for-each loop to iterate over the map elements.

    • Alternatively, use iterators to traverse the map.

    • The range-based for loop is preferred for its simplicity and readability.

    • Example: for(auto const& [key, value] : myMap) { //do something with key and value }

  • Answered by AI
  • Q3. What are detached and joined threads
  • Ans. 

    Detached threads are independent threads that run separately from the main thread. Joined threads are threads that wait for the main thread to finish.

    • Detached threads are created using pthread_detach() function

    • Joined threads are created using pthread_join() function

    • Detached threads do not need to be explicitly terminated

    • Joined threads must be explicitly terminated using pthread_exit() or return statement

    • Detached thread...

  • Answered by AI
  • Q4. What are static code analysis tools
  • Ans. 

    Static code analysis tools are software programs that analyze source code to find potential issues and improve code quality.

    • Static code analysis tools scan code without executing it

    • They can detect issues such as security vulnerabilities, coding errors, and performance problems

    • Examples of static code analysis tools include SonarQube, ESLint, and Checkstyle

  • Answered by AI
  • Q5. Command to list currently running threads in linux
  • Ans. 

    Command to list currently running threads in linux

    • Use the 'ps' command with the 'H' option to display threads in a hierarchy

    • Use the 'top' command to display threads in real-time

    • Use the 'htop' command for an interactive display of threads

  • Answered by AI
  • Q6. Can we perform arithmetic operation on Unique pointer
  • Ans. 

    No, arithmetic operations cannot be performed on unique pointers.

    • Unique pointers are used to manage the lifetime of dynamically allocated objects.

    • They cannot be copied or assigned, only moved.

    • Arithmetic operations are not defined for pointers, including unique pointers.

  • Answered by AI

Skills evaluated in this interview

Team Lead Interview Questions & Answers

Wipro user image Sujith Prasad

posted on 9 May 2022

I applied via Walk-in and was interviewed before May 2021. There were 4 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 

The Hr had a discussion with 5 of us in a group

Round 3 - HR 

(2 Questions)

  • Q1. He asked more details on by past experience on my resume
  • Ans. I explained my last job details and my experience in Saudi for 4 years of managing 70 members of team
  • Answered by Sujith Prasad
  • Q2. How I managed and executed my work with team members and team strength?
  • Ans. In India I was getting team with different strength according project size and I managed them by supporting low performers by training ,also with support with good performers by motivating them in different way.
  • Answered by Sujith Prasad
Round 4 - One-on-one 

(1 Question)

  • Q1. Package and shift timings preference?
  • Ans. I agreed the package and Day and night shift
  • Answered by Sujith Prasad

Interview Preparation Tips

Interview preparation tips for other job seekers - Be positive, Be confident. Try to learn new things regularly

Tell us how to improve this page.

Interview Questions from Similar Companies

Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
WNS Interview Questions
3.3
 • 1.1k Interviews
Coforge Interview Questions
3.3
 • 589 Interviews
IQVIA Interview Questions
3.8
 • 492 Interviews
Atos Interview Questions
3.8
 • 392 Interviews
Goldman Sachs Interview Questions
3.5
 • 392 Interviews
TCE Interview Questions
3.8
 • 267 Interviews
View all
Senior Research Analyst
3 salaries
unlock blur

₹9.7 L/yr - ₹19.5 L/yr

Sales & Operation Executive
3 salaries
unlock blur

₹4 L/yr - ₹4.5 L/yr

Explore more salaries
Compare Mintel with

Wipro

3.7
Compare

Cognizant

3.7
Compare

Infosys

3.6
Compare

Tech Mahindra

3.5
Compare
write
Share an Interview