Upload Button Icon Add office photos
Engaged Employer

i

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

Meyer Housewares India Verified Tick

Compare button icon Compare button icon Compare
4.4

based on 39 Reviews

Filter interviews by

Meyer Housewares India Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - One-on-one 

(6 Questions)

  • Q1. Difference b/w deep copy and shallow copy
  • Ans. 

    Deep copy creates a new copy of an object with all nested objects also copied, while shallow copy creates a new object with references to the original nested objects.

    • Deep copy creates a new object and recursively copies all nested objects, resulting in a completely independent copy.

    • Shallow copy creates a new object but only copies the references to nested objects, so changes in nested objects reflect in both the origin...

  • Answered by AI
  • Q2. Difference between foreach and map
  • Ans. 

    foreach is used to iterate over an array and perform a function on each element, while map creates a new array by applying a function to each element.

    • foreach does not return a new array, while map does

    • foreach is used for side effects, while map is used for transformation

    • Example: forEach - let numbers = [1, 2, 3]; numbers.forEach(num => console.log(num)); // prints 1, 2, 3

    • Example: map - let numbers = [1, 2, 3]; let doub...

  • Answered by AI
  • Q3. Pure impure pipe
  • Q4. Ngonchanges usage
  • Q5. Basic array methods
  • Q6. Difference null undefined empty values in js
  • Ans. 

    null is an intentional absence of any value, undefined means a variable has been declared but not assigned a value, and empty values are variables that have been assigned a value of empty string, empty array, or empty object.

    • null is used to represent the intentional absence of any value

    • undefined means a variable has been declared but not assigned a value

    • Empty values can be empty string (''), empty array ([]), or empty

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me something about yourself
  • Q2. What made you to apply for this job?
  • Ans. 

    I applied for this job because of my passion for sales and my desire to lead a team to success.

    • Passion for sales and desire to lead

    • Opportunity to utilize my skills and experience

    • Excitement for the challenges and opportunities in the role

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Salary negotiations. It was illogical and unprofessional.
  • Q2. What's your expectations

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare to answer unprofessional questions by HR, be ready to work in an unorganized system.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. What actions will you take to resolve customer issues permanently?
  • Q2. Where do you envision yourself in a few years?
Round 2 - One-on-one 

(1 Question)

  • Q1. How do you ensure that communication is effective, particularly through emails?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Check iq level about skills.

Round 2 - HR 

(2 Questions)

  • Q1. What about u say your experience in industry.
  • Ans. 

    I have over 5 years of experience in the semiconductor industry, specializing in NPD engineering.

    • Led cross-functional teams to successfully launch new products

    • Developed and implemented testing procedures to ensure product quality

    • Collaborated with suppliers to optimize component selection and cost savings

  • Answered by AI
  • Q2. What salry u expected.
Round 3 - Technical 

(2 Questions)

  • Q1. How we lead a project.
  • Ans. 

    Leading a project involves setting clear goals, assigning tasks, managing resources, monitoring progress, and adapting to changes.

    • Define project scope, objectives, and deliverables

    • Assign roles and responsibilities to team members

    • Create a project timeline with milestones

    • Monitor progress and address any issues or risks

    • Communicate effectively with team members and stakeholders

    • Adapt to changes and make necessary adjustment

  • Answered by AI
  • Q2. What the process for manufacturing a product.
  • Ans. 

    The process for manufacturing a product involves designing, prototyping, testing, sourcing materials, production, quality control, and packaging.

    • Designing the product based on customer requirements and market research

    • Creating prototypes to test functionality and gather feedback

    • Sourcing materials and components from suppliers

    • Setting up production line and manufacturing the product

    • Implementing quality control measures to...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Proper prepration
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Event Loop based questions
  • Q2. Difference between React and Angular in depth
  • Ans. 

    React is a JavaScript library for building user interfaces, while Angular is a full-fledged framework for web development.

    • React is a library, while Angular is a framework

    • React uses a virtual DOM, while Angular uses a real DOM

    • React is more lightweight and flexible, while Angular has more built-in features and tools

    • React uses JSX for templating, while Angular uses HTML templates

    • React is maintained by Facebook, while Angu

  • Answered by AI

Skills evaluated in this interview

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

(4 Questions)

  • Q1. Tell me about your self
  • Q2. Last experience
  • Q3. Why should we hire you
  • Q4. Channel knowledge
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Walk-in

Round 1 - HR 

(1 Question)

  • Q1. Plastic injection molding department
Round 2 - Technical 

(2 Questions)

  • Q1. Injection molding department
  • Q2. Yes injection molding Automotive part

Interview Preparation Tips

Interview preparation tips for other job seekers - Inprocess Quality engineer
Customer Quality engineer
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Feb 2024.

Round 1 - Technical 

(5 Questions)

  • Q1. How you solve palindrome Reverse an string
  • Ans. 

    To solve a palindrome, compare the string with its reverse. To reverse a string, iterate through it in reverse order.

    • Iterate through the string in reverse order to create the reversed string.

    • Compare the original string with the reversed string to check if it is a palindrome.

    • Handle cases where the input string is empty or null.

  • Answered by AI
  • Q2. Revers a string
  • Ans. 

    Reverse a string

    • Use a loop to iterate through the characters of the string

    • Swap the characters from start to end to reverse the string

    • Return the reversed string

  • Answered by AI
  • Q3. Multiple jagged array how to iterate
  • Ans. 

    Use nested loops to iterate through each array and each element in a jagged array of strings.

    • Use a nested loop to iterate through each array in the jagged array

    • Within the nested loop, iterate through each element in the current array

    • Access each element using the indices of the arrays

  • Answered by AI
  • Q4. What is static value
  • Ans. 

    Static value is a value that remains constant and does not change.

    • Static value does not vary or fluctuate.

    • It remains the same regardless of external factors.

    • Examples include mathematical constants like pi (π) or physical constants like the speed of light.

  • Answered by AI
  • Q5. How to use debugging
  • Ans. 

    Debugging is the process of identifying and fixing errors in code to ensure it runs smoothly.

    • Use print statements to track the flow of the program and identify where the error occurs

    • Utilize debugging tools like breakpoints to pause the program at specific points and inspect variables

    • Step through the code line by line to understand the execution flow and pinpoint the issue

    • Check for syntax errors, logical errors, and run

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Coding Test 

Sort an array using a sort algorithm

Round 2 - Group Discussion 

Politics in india and rest of asis

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare
Prepare
Prepare
Prepare
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Self intro,Why are you prefering Sales,Sell this pen,What do you know about our company,Why should we hire you,what about your skills,Any plans of going abroad,Languages known
Round 2 - Behavioral 

(1 Question)

  • Q1. Self intro,General questions regarding your qualifications and preferences,Family background,Communication test

Interview Preparation Tips

Topics to prepare for Peoplelink Unified Communications Business Executive interview:
  • Self intro,qsns regarding sales
Interview preparation tips for other job seekers - Just be cool.They will just try to know us,our skills especially communication skills,They are really so approchable

Meyer Housewares India Interview FAQs

How to prepare for Meyer Housewares India 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 Meyer Housewares India. The most common topics and skills that interviewers at Meyer Housewares India expect are Inventory Management, Vendor Reconciliation, 3Pl, Logistics Management and Tax Audit.

Tell us how to improve this page.

Interview Questions from Similar Companies

TCL Interview Questions
4.1
 • 33 Interviews
Electrolux Interview Questions
3.5
 • 8 Interviews
Pigeon India Interview Questions
4.1
 • 5 Interviews
View all

Meyer Housewares India Reviews and Ratings

based on 39 reviews

4.4/5

Rating in categories

4.0

Skill development

4.2

Work-Life balance

4.3

Salary & Benefits

4.1

Job Security

4.4

Company culture

3.5

Promotions/Appraisal

4.2

Work Satisfaction

Explore 39 Reviews and Ratings
Regional Sales Manager
7 salaries
unlock blur

₹6.5 L/yr - ₹16 L/yr

Asst.Marketing Manager
4 salaries
unlock blur

₹7.8 L/yr - ₹15 L/yr

Training Lead
4 salaries
unlock blur

₹7.4 L/yr - ₹11.5 L/yr

Digital Marketing Manager
4 salaries
unlock blur

₹5 L/yr - ₹6 L/yr

Vice President Finance & Accounts
4 salaries
unlock blur

₹30 L/yr - ₹40 L/yr

Explore more salaries
Compare Meyer Housewares India with

TCL

4.1
Compare

Merino Laminates

4.0
Compare

Sharp Business Systems India

3.3
Compare

Kaff Appliances (india)

2.9
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview