Upload Button Icon Add office photos

Filter interviews by

Kangaro Industries Head Research and Development Interview Questions and Answers

Updated 8 Nov 2022

Kangaro Industries Head Research and Development Interview Experiences

1 interview found

I applied via LinkedIn and was interviewed before Nov 2021. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Technical 

(3 Questions)

  • Q1. 1) How to apply g&d and stacking tolerance in product drawing 2) How to reduce NPD cycle time 3) How to decide material for a product
  • Ans. 

    Answering questions related to product development

    • To apply g&d and stacking tolerance, use the ASME Y14.5 standard

    • To reduce NPD cycle time, use agile methodology and involve cross-functional teams

    • To decide material for a product, consider factors like cost, durability, and environmental impact

  • Answered by AI
  • Q2. How to reduce NPD cost.
  • Ans. 

    Reduce NPD cost by optimizing processes, leveraging technology, and collaborating with suppliers.

    • Streamline product development processes to eliminate waste and reduce cycle time

    • Invest in technology such as simulation software and 3D printing to reduce prototyping costs

    • Collaborate with suppliers to reduce material costs and improve quality

    • Conduct market research to identify customer needs and reduce the risk of product...

  • Answered by AI
  • Q3. How to handle weekly management review meeting with top management
  • Ans. 

    Weekly management review meetings with top management can be handled by following a structured approach.

    • Prepare an agenda beforehand and share it with the attendees

    • Provide updates on ongoing projects and discuss any roadblocks

    • Encourage open communication and feedback from all attendees

    • Document action items and follow up on them in the next meeting

    • Ensure that the meeting stays on track and within the allotted time

    • Use vi...

  • Answered by AI
Round 3 - Case Study 

How to calculate product life cycle

Round 4 - Group Discussion 

New mould design and development

Round 5 - HR 

(1 Question)

  • Q1. Why we select you ? Show your salary proof and match with bank statement and ITR 26AS Can you ready for bond minimum 3 years

Interview Preparation Tips

Topics to prepare for Kangaro Industries Head Research and Development interview:
  • Material Science
  • Basic design
  • World Class Manufacturing
Interview preparation tips for other job seekers - Today requirements the candidate must have multiple department knowledge
Expert in problem solving

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Describe about bangalore
  • Ans. 

    Bangalore is a bustling city in southern India known for its IT industry and pleasant climate.

    • Known as the Silicon Valley of India

    • Home to numerous IT companies such as Infosys, Wipro, and TCS

    • Famous for its gardens and parks, including Lalbagh and Cubbon Park

    • Has a rich cultural heritage, with landmarks such as the Bangalore Palace and Tipu Sultan's Summer Palace

    • Renowned for its food, with local specialties such as masal

  • Answered by AI

Interview Questionnaire 

1 Question

  • Q1. Oops ,project, dbms

I appeared for an interview before Sep 2020.

Round 1 - Assignment 

Round duration - 90 minutes
Round difficulty - Medium

Round 2 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This was the technical round, held around at 10 AM IST on Google Meet.
Firstly she greeted me and asked me to tell something about myself, to which I introduced myself, explaining my academic and some projects also.
After that we moved on to the Hackathon project, which was smart cart self-checkout system. I explained the project along with the code, wherever necessary.
Every word you say while explaining should be clear to you.I used Firebase and SQL while explaining my project, to which she asked some questions related to it, 
Then she moved to the DBMS part, types of joins,what is indexing, how to approach if you were to design a payment system.
At last she asked me some Data Structure questions, which were of medium complexity

  • Q1. 

    Remove the Kth Node from the End of a Linked List

    You are given a singly Linked List with 'N' nodes containing integer data and an integer 'K'. Your task is to delete the Kth node from the end of this Lin...

  • Ans. 

    Remove the Kth node from the end of a singly linked list given the position 'K'.

    • Traverse the list to find the length 'N' of the linked list.

    • Calculate the position of the node to be removed from the beginning as 'N - K + 1'.

    • Traverse the list again and remove the node at the calculated position.

  • Answered by AI
  • Q2. 

    House Robber Problem Statement

    Consider Mr. X, a professional robber who is planning to rob houses along a street. These houses are arranged in a circle, which means the first house is a neighbor to the l...

  • Ans. 

    House Robber problem where adjacent houses have connected security system, find maximum money Mr. X can rob without triggering security.

    • Use dynamic programming to keep track of maximum money robbed at each house.

    • At each house, decide whether to rob the current house or skip it based on maximum money robbed so far.

    • Handle the circular nature of houses by considering two cases: robbing the first house and not robbing the ...

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

The interviewer was very frank and cheerful. This was held at 2:30 PM IST on Google Meet.
He firstly greeted me and asked me how I was doing.
How was my previous round, any technical difficulties?
Then he asked me to introduce myself.
He started telling about his journey to Lowe's and his technical background.
Then he asked some HR related questions

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Dr. B.R. Ambedkar National Institute of Technology. Eligibility criteria7.5 CGPALowe's India interview preparation:Topics to prepare for the interview - Data structures and algorithms, OOPS, operating Systems,SQL, DBMS, Machine Learning.Time required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Practice DSA questions, interview questions as much as you can.(400 leetcode questions) + (1000+ geeksforgeeks score) is good approximation of your preparation.
Tip 2 : You should have a good internship experience or 1 or 2 good projects on Android/web-d or Machine Learning.You should be through with your projects and be able to tell further improvements for the future.
Tip 3 : Be CONFIDENT with what you say. Don't murmur or speak in the mouth.The interviewer wants to know your thought process.

Application resume tips for other job seekers

Tip 1 : Resume is the first impression of you.so it must be very eye-catching. write some decent (maybe 1 or 2 is enough) projects on resume.
Tip 2 : Should be through with each and every point you have written on your resume. people usually write 10- 15 skills on resume while confident in only 5.Please don't do it.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Company Website and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Sort an array of 0s and 1s
  • Ans. 

    Sort an array of 0s and 1s

    • Use two pointers, one at the beginning and one at the end

    • Swap 0s from the beginning with 1s from the end until pointers meet

    • Time complexity: O(n)

  • Answered by AI
  • Q2. Level order traversal of a tree
  • Ans. 

    Level order traversal is a tree traversal algorithm that visits nodes level by level.

    • Start at the root node and add it to a queue.

    • While the queue is not empty, remove the first node from the queue and add its children to the queue.

    • Repeat until the queue is empty.

    • The order in which nodes are visited is the level order traversal.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 1)Ask questions
2)Be interactive

Skills evaluated in this interview

Interview Questionnaire 

4 Questions

  • Q1. Tell me about yourself?
  • Q2. Explain about your career and your achievement.
  • Q3. What is your strength and weakness?
  • Q4. Depends on your answer

I applied via Campus Placement and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Case Study 

Hackathon organized by lowes on campus

Round 2 - Technical 

(1 Question)

  • Q1. 1 hour technical round held and many questions were asked from data structures and algorithms and about some projects that i have created
Round 3 - HR 

(1 Question)

  • Q1. Typical HR questions were asked

Interview Preparation Tips

Topics to prepare for Lowe's Associate Software Engineer interview:
  • DSA
  • React.Js
  • Node.Js
  • Java
Interview preparation tips for other job seekers - Keep good grasp in dsa and you should have some projects to showcase and improve your chances.

Interview Questionnaire 

1 Question

  • Q1. Oops , and project , dbms

I applied via Walk-in and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. How to control shrinkage in retail store give me three answer
  • Ans. 

    To control shrinkage in a retail store, implement strict inventory management, enhance security measures, and train employees on loss prevention.

    • Implement strict inventory management practices such as regular stock counts and audits

    • Enhance security measures by installing surveillance cameras, alarm systems, and anti-theft devices

    • Train employees on loss prevention techniques like proper cash handling, identifying shopli...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Always be active & attractive

I applied via Campus Placement and was interviewed before Jan 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic accounting questions, specially golden rules & basic excel

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong basics in accounting is required, be honest and open. If you try to fake anything, remeber the person opposite you has taken hundreds' of interviews

Kangaro Industries Interview FAQs

How many rounds are there in Kangaro Industries Head Research and Development interview?
Kangaro Industries interview process usually has 5 rounds. The most common rounds in the Kangaro Industries interview process are Case Study, Group Discussion and HR.
What are the top questions asked in Kangaro Industries Head Research and Development interview?

Some of the top questions asked at the Kangaro Industries Head Research and Development interview -

  1. 1) How to apply g&d and stacking tolerance in product drawing 2) How to reduce...read more
  2. How to handle weekly management review meeting with top manageme...read more
  3. How to reduce NPD co...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Landmark Group Interview Questions
4.0
 • 150 Interviews
Lowe's Interview Questions
4.1
 • 129 Interviews
Tesco Interview Questions
3.8
 • 122 Interviews
Target Interview Questions
4.2
 • 112 Interviews
V2 Retail Interview Questions
3.4
 • 58 Interviews
Fabindia Interview Questions
4.0
 • 53 Interviews
Vijay Sales Interview Questions
4.1
 • 48 Interviews
View all
Engineer
49 salaries
unlock blur

₹3 L/yr - ₹5.5 L/yr

Junior Engineer
38 salaries
unlock blur

₹1.8 L/yr - ₹3.6 L/yr

Senior Engineer
34 salaries
unlock blur

₹4.1 L/yr - ₹7.3 L/yr

Assistant Manager
33 salaries
unlock blur

₹5 L/yr - ₹12 L/yr

Account Assistant
30 salaries
unlock blur

₹1.5 L/yr - ₹3 L/yr

Explore more salaries
Compare Kangaro Industries with

Landmark Group

4.0
Compare

Metro Cash & Carry

4.1
Compare

Tesco

3.8
Compare

Fabindia

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