Upload Button Icon Add office photos

Polyhose

Compare button icon Compare button icon Compare

Filter interviews by

Polyhose Junior Lab Technician Interview Questions and Answers

Updated 18 Jan 2020

Polyhose Junior Lab Technician Interview Experiences

1 interview found

I applied via Referral and was interviewed in Dec 2019. There were 4 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. How to calculate the normality ?
  • Q2. Basic of previous work related questions?
  • Q3. How much Ash content of ZNO
  • Ans. 

    The ash content of ZNO varies depending on the source and method of preparation.

    • Ash content is the residue left after burning a substance.

    • The ash content of ZNO can be determined through ashing and weighing the residue.

    • The ash content of ZNO can range from 0.1% to 5% depending on the purity and preparation method.

    • The ash content can affect the properties and performance of ZNO in various applications.

  • Answered by AI
  • Q4. What is your expectation salary ?
  • Q5. What is the purpose to change your previous company?
  • Ans. 

    To seek new challenges and opportunities for growth.

    • Seeking new challenges and opportunities for personal and professional growth.

    • Looking for a company that aligns better with my career goals and aspirations.

    • Wanting to broaden my skill set and gain experience in different laboratory settings.

    • Desiring a more supportive and collaborative work environment.

    • Wishing to work with the latest technologies and advancements in th...

  • Answered by AI
  • Q6. Water pH level
  • Ans. 

    Water pH level is a measure of its acidity or alkalinity.

    • pH scale ranges from 0 to 14, with 7 being neutral

    • Water with a pH below 7 is acidic, while above 7 is alkaline

    • pH level affects aquatic life and can be influenced by pollution

    • Ideal pH level for drinking water is between 6.5 and 8.5

  • Answered by AI
  • Q7. PH - Expansion?

Interview Preparation Tips

Interview preparation tips for other job seekers - This interview was a technical one but was majorly a stress test.Please go-trough your basic chemistry . It is help us any interview .

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Polyhose?
Ask anonymously on communities.

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Your communication skills
  • Q2. Vision for 5 years
  • Ans. 

    To lead a team towards achieving company goals through strategic planning, effective communication, and continuous development.

    • Develop and implement strategic plans to achieve company objectives

    • Provide clear direction and support to team members

    • Continuously assess and improve team performance

    • Stay updated on industry trends and adapt strategies accordingly

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

Junior Lab Technician Interview Questions Asked at Other Companies

asked in Polyhose
Q1. How do you calculate normality?
Q2. What parameters are included in a lipid profile?
asked in Polyhose
Q3. What is the ash content of ZnO?
Q4. What is hemoglobin and how is it formed?
Q5. What is the standard glucose value?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before May 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 

(2 Questions)

  • Q1. About Customs clearance
  • Q2. About Freight booking

I applied via Walk-in and was interviewed in Sep 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. 1.Asked few questions about feed processing and it’s process parameters by technical team.
  • Q2. Few case studies and business strategy

Interview Preparation Tips

Topics to prepare for Buhler Assistant Manager interview:
  • Food Processing
  • Basic Engineering
  • AutoCAD Drawing
  • Basic knowledge on food safety
  • Basic knowledge on Maintenance
  • basic knowledge on quality
  • Basic knowledge on HSE
Interview preparation tips for other job seekers - Very good company to works at least 5 yrs to become specialist on
1.Business(Sales) Methodology
2.process and Technology
3. Project methodology
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - One-on-one 

(3 Questions)

  • Q1. Questions were asked on Recursive programming
  • Q2. What is the output of this? static void Main(string[] args) { DivideNumber(233) } static void DivideNumber(int n) { if(n>=10) { DivideNumber(n/10); } Console.Write(n/10) }
  • Ans. 

    The output will be 23323

    • The DivideNumber method recursively divides the input number by 10 until it is less than 10

    • The Console.Write statement prints the result of n/10 each time the method is called

  • Answered by AI
  • Q3. Write Code If Input is 123, output should be "One Hundred Twenty Three";
  • Ans. 

    Convert numeric input to words in English

    • Break down the input number into hundreds, tens, and ones place

    • Use a dictionary or array to map numbers to their corresponding words

    • Handle special cases like teens and tens separately

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Given some problem statemts and asked to write the pseudo code,
  • Ans. 

    Provide a structured approach to solving problems using pseudo code.

    • Identify the problem clearly, e.g., 'Sort an array of integers'.

    • Break down the problem into smaller steps, e.g., 'Initialize an array, loop through elements'.

    • Use clear and concise syntax, e.g., 'FOR each element in array DO...'.

    • Consider edge cases, e.g., 'IF array is empty THEN return an empty array'.

    • Test the pseudo code with sample inputs, e.g., 'Inpu...

  • Answered by AI
  • Q2. What is Async and Await.
  • Ans. 

    Async and Await are keywords in JavaScript used to handle asynchronous operations in a synchronous manner.

    • Async is used to define a function as asynchronous, allowing it to run in the background without blocking the main thread.

    • Await is used to pause the execution of an async function until a Promise is settled, and then resumes the function with the resolved value.

    • Async functions always return a Promise, which allows ...

  • Answered by AI
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Ask about experience and achievements
  • Q2. Seek special or situational challenges faced and solutions arrived

Interview Preparation Tips

Interview preparation tips for other job seekers - No use of joining such a useless organization without any human values and ethics.....
The worst for any experienced personnel
May be some young and useless people only can join such an organization
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Technical assesment was there in first round

Round 2 - One-on-one 

(1 Question)

  • Q1. Interview with national manager, CTO and fellow developer
Round 3 - HR 

(1 Question)

  • Q1. Meeting with regional head of IT department

Interview Questionnaire 

8 Questions

  • Q1. There is no free meal in this world
  • Q2. Is everything has a price tag???
  • Ans. 

    No, not everything has a price tag.

    • Some things are priceless, such as love, happiness, and memories.

    • There are also things that cannot be bought with money, such as time and health.

    • However, in a business context, most things do have a price tag.

    • It ultimately depends on the perspective and context of the question.

    • For example, a company may offer free services or products as part of a marketing strategy.

  • Answered by AI
  • Q3. What's my remuneration for these questions
  • Q4. Nash industries have paid services
  • Q5. Plz pay thru Google pay
  • Q6. That's all for now
  • Q7. Take care bye
  • Q8. How fast will I get my remuneration
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How you are controlling the inventory without variances?
  • Ans. 

    By implementing strict inventory management procedures, conducting regular audits, utilizing technology for tracking, and training staff on proper inventory handling.

    • Implementing strict inventory management procedures to ensure accuracy

    • Conducting regular audits to identify and rectify any discrepancies

    • Utilizing technology such as inventory management software for real-time tracking

    • Training staff on proper inventory han...

  • Answered by AI
  • Q2. What changes you will bring in Stores process?
  • Ans. 

    I will implement a more efficient inventory management system, streamline the ordering process, and improve staff training.

    • Implementing a barcode scanning system to track inventory levels accurately

    • Creating standardized procedures for ordering and restocking

    • Providing regular training sessions for staff on proper inventory management techniques

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Knowledge required on Inventory management & team handling skills

Polyhose Interview FAQs

What are the top questions asked in Polyhose Junior Lab Technician interview?

Some of the top questions asked at the Polyhose Junior Lab Technician interview -

  1. How to calculate the normalit...read more
  2. How much Ash content of ...read more
  3. Water pH le...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Epp Composites Interview Questions
3.3
 • 68 Interviews
Sulzer Interview Questions
3.9
 • 32 Interviews
Buhler Interview Questions
3.9
 • 29 Interviews
Nash Industries Interview Questions
3.7
 • 29 Interviews
Rieter Interview Questions
3.6
 • 28 Interviews
View all

Polyhose Junior Lab Technician Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

3.0

Work-life balance

4.0

Salary

4.0

Job security

3.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Junior Engineer
111 salaries
unlock blur

₹1.8 L/yr - ₹4 L/yr

Assistant Engineer
55 salaries
unlock blur

₹2.6 L/yr - ₹4.5 L/yr

Assistant Manager
47 salaries
unlock blur

₹4.7 L/yr - ₹8.7 L/yr

Engineer
46 salaries
unlock blur

₹2.3 L/yr - ₹5.5 L/yr

Senior Engineer
40 salaries
unlock blur

₹3.2 L/yr - ₹6.6 L/yr

Explore more salaries
Compare Polyhose with

Gandhi Automations

4.0
Compare

Sulzer

3.9
Compare

Bharat Fritz Werner

3.8
Compare

Western Refrigeration

3.8
Compare
write
Share an Interview