Upload Button Icon Add office photos

Filter interviews by

Kob Medical Textiles Interview Questions and Answers for Experienced

Updated 25 Jan 2025

Kob Medical Textiles Interview Experiences for Experienced

Popular Designations

4 interviews found

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

(1 Question)

  • Q1. Previous company/experience
  • Ans. 

    I have 5 years of experience working as a Senior Officer at XYZ Company.

    • Managed a team of 10 employees to achieve department goals

    • Implemented new strategies to improve efficiency and productivity

    • Collaborated with other departments to streamline processes

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Experience/education qualification

Interview Preparation Tips

Interview preparation tips for other job seekers - Good work place
Company culture to be improved

Senior Officer Interview Questions asked at other Companies

Q1. How you can Increase Selling of Banks Products and how you can connect more and more persons With Bank.????
View answer (7)

I applied via Campus Placement

Interview Questionnaire 

3 Questions

  • Q1. General quality assurance system
  • Q2. Routine work day to day activities
  • Ans. 

    My routine work day to day activities involve ensuring quality standards are met and identifying areas for improvement.

    • Conducting regular quality checks on products or services

    • Analyzing data to identify trends and areas for improvement

    • Collaborating with other departments to address quality issues

    • Documenting and reporting findings to management

    • Developing and implementing quality improvement initiatives

  • Answered by AI
  • Q3. Job knowledge

Interview Preparation Tips

Interview preparation tips for other job seekers - Communication skills, strong knowledge in quality system

Quality Assurance Interview Questions asked at other Companies

Q1. Explain your Project. Explain V model. Explain SDLC. Explain STLC. Explain Agile ceremonies. Do you attend all the agile ceremonies? Tell me the positive and negative test cases for water bottle. What is difference between Retesting and Reg... read more
View answer (1)

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

Interview Questionnaire 

1 Question

  • Q1. Why do you choose our company

Process Associate Interview Questions asked at other Companies

Q1. How will you explain a red colour (or any colour) to a person who is blind since his or her birth?
View answer (22)

I applied via Campus Placement and was interviewed before Apr 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 - Aptitude Test 

Throughout Textile maths and science

Round 3 - HR 

(7 Questions)

  • Q1. What are your salary expectations?
  • Q2. Share details of your previous job.
  • Q3. Why should we hire you?
  • Q4. Why are you looking for a change?
  • Q5. Where do you see yourself in 5 years?
  • Q6. What are your strengths and weaknesses?
  • Q7. Tell me about yourself.
Round 4 - One-on-one 

(1 Question)

  • Q1. Textile technology question

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in Textile technology and keep your key strength and weakness

Kob Medical Textiles interview questions for popular designations

 Senior Officer

 (1)

 Assistant Weaving Manager

 (1)

 Process Associate

 (1)

 Quality Assurance

 (1)

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Jul 2019. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Here they have work basically based on windows. So better to have c# and windows related stuff. Like win32, mfc, .net, c# . Here in my case I did not have experience in windows to ki made them clear about ...

Interview Preparation Tips

Interview preparation tips for other job seekers - Two technical rounds were there and one more technical round with US panel were there. They were very cooperative.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

String and arrays duplicate and sorting questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Project details
  • Q2. Project deployment
Round 3 - HR 

(2 Questions)

  • Q1. Previous company details
  • Q2. CTC discussion and company review
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal and was interviewed in Dec 2022. 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 - Technical 

(6 Questions)

  • Q1. How do you find the code performance issue in the code deployed in production?
  • Ans. 

    To find code performance issues in production, use monitoring tools and profiling techniques.

    • Use monitoring tools like New Relic, AppDynamics, or Datadog to track performance metrics and identify bottlenecks.

    • Use profiling techniques like CPU profiling, memory profiling, and network profiling to pinpoint specific areas of the code that are causing performance issues.

    • Analyze logs and error messages to identify patterns a...

  • Answered by AI
  • Q2. What is asynchronous programming
  • Ans. 

    Asynchronous programming is a programming paradigm that allows multiple tasks to run concurrently without blocking each other.

    • Asynchronous programming is used to improve the performance of applications that require a lot of I/O operations.

    • It involves the use of callbacks, promises, and async/await keywords in JavaScript.

    • Asynchronous programming can be used in both front-end and back-end development.

    • Examples of asynchro...

  • Answered by AI
  • Q3. Write a program to change background after every 0.5 sec interval to orange,white,green on button click in Angular?
  • Ans. 

    Program to change background color on button click in Angular

    • Create a button in Angular template

    • Add click event listener to the button

    • Use setInterval() function to change background color after every 0.5 sec

    • Use ngStyle directive to change background color dynamically

  • Answered by AI
  • Q4. How to load a component only after 3 of my services are loaded?
  • Ans. 

    Use Angular's 'resolve' property to load component after services are loaded.

    • Create a resolver service that waits for all three services to complete before resolving.

    • Add the resolver service to the 'resolve' property of the component's route.

    • Access the resolved data in the component using the ActivatedRoute service.

    • Example: { path: 'my-component', component: MyComponent, resolve: { data: MyResolverService } }

  • Answered by AI
  • Q5. What is difference between iquerable and ienumrable
  • Ans. 

    IQueryable is for querying data from a source that implements IQueryable interface while IEnumerable is for iterating over a collection of data.

    • IQueryable is used for deferred execution while IEnumerable is used for immediate execution.

    • IQueryable is used for querying data from a remote data source while IEnumerable is used for querying data from an in-memory collection.

    • IQueryable is more efficient for large datasets as...

  • Answered by AI
  • Q6. When you go with entity framework and ado.net
  • Ans. 

    Entity Framework is an ORM while ADO.NET is a data access technology.

    • Entity Framework is easier to use and provides more abstraction than ADO.NET.

    • ADO.NET is faster and more flexible than Entity Framework.

    • Use Entity Framework for simple CRUD operations and ADO.NET for complex queries and performance-critical applications.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared on skills from your resume. Prepare more on Angular,Design patterns. Should have knowledge on Azure.

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Oct 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - HR 

(2 Questions)

  • Q1. Tell me about yourself? Why do you want to join amplifon? What do you know about amplifon?
  • Q2. How would you deal with a angry client ? If a client start abusing how would you deal in such situations?
  • Ans. 

    Remaining calm, actively listening, empathizing, and finding a solution are key in dealing with an angry client.

    • Remain calm and composed

    • Listen actively to understand their concerns

    • Empathize with their emotions

    • Apologize for any inconvenience caused

    • Offer a solution or escalate the issue to a higher authority if necessary

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. 4 basics question do you know what your roles are? How would you handle Target pressure? How would you convince client for the same?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident while answering and don't lie read about organization and be prepared for it rest every question might have different answer from person to person make your own version of anwer and do it.
But before choosing it make sure you are ready for anything.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. HR is responsible ofertunies by employees
  • Q2. Hr working for growth by company
Round 2 - Assignment 

Assignment details can refer to the information about an assignment, or the information that can be seen by students or teachers about a student's performance on an assignment:

Interview Preparation Tips

Interview preparation tips for other job seekers - Assignment details can refer to the information about an Vistec Partners is a revenue enhancement company that supports physician practices in meeting their goals by leveraging technology and a strong management team with extensive experience in the health care industry. By Vistec Team

Mission: Technology Leaders in US Healthcare
Vision: Exceeding Client's expections all the time, everytime!
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Approached by Company and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Reason for job change
  • Ans. 

    Seeking new challenges and growth opportunities in a larger organization.

    • Desire for career advancement

    • Looking for new challenges

    • Seeking growth opportunities

    • Interested in larger organization

  • Answered by AI
  • Q2. Questions about the experience
Round 2 - Technical 

(1 Question)

  • Q1. Question on analysis skills

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident about your skills and knowledge. Be prepared with your data n analysis. The achievements from previous organisation will help.

Kob Medical Textiles Interview FAQs

How many rounds are there in Kob Medical Textiles interview for experienced candidates?
Kob Medical Textiles interview process for experienced candidates usually has 3 rounds. The most common rounds in the Kob Medical Textiles interview process for experienced candidates are HR, Resume Shortlist and Aptitude Test.
How to prepare for Kob Medical Textiles interview for experienced candidates?
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 Kob Medical Textiles. The most common topics and skills that interviewers at Kob Medical Textiles expect are Cost Reduction, Fabric, General Management, Knits and Manufacturing.
What are the top questions asked in Kob Medical Textiles interview for experienced candidates?

Some of the top questions asked at the Kob Medical Textiles interview for experienced candidates -

  1. Routine work day to day activit...read more
  2. General quality assurance sys...read more
  3. Textile technology quest...read more

Tell us how to improve this page.

Kob Medical Textiles Interview Process for Experienced

based on 1 interview

Interview experience

4
  
Good
View more

Kob Medical Textiles Reviews and Ratings

based on 17 reviews

4.4/5

Rating in categories

4.2

Skill development

4.7

Work-life balance

4.5

Salary

4.8

Job security

4.5

Company culture

3.9

Promotions

4.5

Work satisfaction

Explore 17 Reviews and Ratings
Process Member
7 salaries
unlock blur

₹3 L/yr - ₹4.2 L/yr

Process Associate
6 salaries
unlock blur

₹5.7 L/yr - ₹6.8 L/yr

Quality Inspector
4 salaries
unlock blur

₹2.5 L/yr - ₹3.5 L/yr

Senior Executive Production
4 salaries
unlock blur

₹6.2 L/yr - ₹7 L/yr

Assistant Manager
3 salaries
unlock blur

₹7 L/yr - ₹10 L/yr

Explore more salaries
Compare Kob Medical Textiles with

Becton Dickinson

4.0
Compare

Vidal Health Tpa

3.5
Compare

Air Liquide

3.7
Compare

iVistec Partners India Private Limited

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