Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Kyb Motorcycle Suspension Associate Interview Questions and Answers

Updated 11 Mar 2024

Kyb Motorcycle Suspension Associate Interview Experiences

1 interview found

Associate Interview Questions & Answers

user image Anonymous

posted on 11 Mar 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Sep 2023.

Round 1 - Aptitude Test 

Some basic questions related to mechanical engineering syllabus

Round 2 - Technical 

(1 Question)

  • Q1. Basic questions like difference between two stroke and four stroke engine etc

Interview questions from similar companies

I applied via Walk-in and was interviewed before Apr 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Explain Compilation process steps?
  • Ans. 

    Compilation process involves several steps to convert source code into executable code.

    • Preprocessing: Includes header file inclusion, macro expansion, and conditional compilation.

    • Compilation: Translates source code into assembly code.

    • Assembly: Converts assembly code into machine code.

    • Linking: Combines object files and libraries to create an executable file.

    • Loading: Loads the executable file into memory and prepares it

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well prior the interview, revise all the basic concepts of Embedded C and MATLAB if you have applied for embedded systems.

I applied via Naukri.com and was interviewed before May 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Write the equation for dynamics and wave spectra equations. I do not remember questions as it is 3 years back.

Interview Preparation Tips

Interview preparation tips for other job seekers - This happened in Technip FMC Hyderabad, India. I hold 10 years experience. Interviewers don not know what to get from the candidates. The panel tried to prove within themselves that can ask difficult questions. The even entered to doctorate level questions which is not valid for performing job. Finally, I conclude that they performed some time-pass session.

I applied via Recruitment Consultant and was interviewed in Mar 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Questions will be related to the post which company is offering.
  • Q2. Should be very accurate to all electronics queries

Interview Preparation Tips

Interview preparation tips for other job seekers - Be smart and to the point answers will help.

I applied via Referral and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions on Process,Simulation, CAD

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

I applied via Recruitment Consultant and was interviewed before Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Previous company work experience
  • Q2. Plans in next 5 years
  • Ans. 

    I plan to continue developing my technical skills and taking on leadership roles within the company.

    • Pursue advanced technical certifications

    • Lead cross-functional teams on complex projects

    • Mentor junior engineers

    • Explore opportunities for innovation and process improvement

    • Collaborate with senior management to set strategic goals

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was ok. But the local management is horrible. Don't join expecting MNC standard.Even a startup might be better than this company. It's a family owned business by the manager. Not MNC
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Nov 2023. There were 3 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 Resume tips
Round 2 - HR 

(1 Question)

  • Q1. What is your highest qualification
  • Ans. 

    My highest qualification is a Master's degree in Electrical Engineering.

    • Master's degree in Electrical Engineering

    • Specialized in power systems

    • Thesis focused on renewable energy integration

    • Completed advanced courses in control systems

    • Published research papers in IEEE conferences

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. What is your role and responsibilities in the project quality?
  • Ans. 

    As a Senior Engineer, my role in project quality is to ensure that all deliverables meet the required standards and specifications.

    • Developing and implementing quality assurance processes and procedures

    • Conducting regular audits and inspections to identify any quality issues

    • Collaborating with cross-functional teams to address and resolve quality concerns

    • Creating and maintaining quality documentation, including test plans...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Explain your experience.I have worked in Feed back infra as water supply expert.I have designed various capacities water treatment plant.
Round 2 - Technical 

(2 Questions)

  • Q1. Where I worked . About my experience. Details regarding my experience . Question regarding design of water treatment plant
  • Q2. Nature of work preferred. Salary requirements

Interview Preparation Tips

Topics to prepare for TÜV SÜD Consultant interview:
  • Water Supply
Interview preparation tips for other job seekers - Be updated always.Be positive.
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 Sep 2023. 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 Resume tips
Round 2 - Technical 

(6 Questions)

  • Q1. Normalization in SQL, What is Cursor in SQL
  • Ans. 

    Normalization in SQL is the process of organizing data in a database to reduce redundancy and improve data integrity. A cursor in SQL is a database object used to retrieve and manipulate data row by row.

    • Normalization in SQL involves breaking down a large table into smaller tables and defining relationships between them to reduce redundancy.

    • Cursors in SQL are used to fetch and process individual rows returned by a query...

  • Answered by AI
  • Q2. .Net Core and API based questions
  • Q3. Abstract and interface difference
  • Ans. 

    Abstract classes can have both abstract and non-abstract methods, while interfaces can only have abstract methods.

    • Abstract classes can have constructors, fields, and non-abstract methods along with abstract methods

    • Interfaces can only have abstract methods and constants

    • A class can implement multiple interfaces but can only inherit from one abstract class

  • Answered by AI
  • Q4. Const and read only difference in C#
  • Ans. 

    Const keyword is used to declare constants at compile time, while read-only keyword is used to create immutable fields that can only be assigned a value at runtime.

    • Const values are determined at compile time and cannot be changed, while read-only values can only be assigned a value once at runtime.

    • Const fields are implicitly static, while read-only fields are not.

    • Example: const int x = 5; read-only int y = 10;

  • Answered by AI
  • Q5. Azure basic fundamental questions
  • Q6. Sample query to join tables using SQL
  • Ans. 

    Sample query to join tables using SQL

    • Use the JOIN keyword to combine rows from two or more tables based on a related column between them

    • Specify the columns to be selected from each table

    • Use the ON keyword to specify the join condition

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Regarding current work experience
Round 2 - HR 

(1 Question)

  • Q1. Salary negotiations
Contribute & help others!
anonymous
You can choose to be anonymous

Kyb Motorcycle Suspension Interview FAQs

How many rounds are there in Kyb Motorcycle Suspension Associate interview?
Kyb Motorcycle Suspension interview process usually has 2 rounds. The most common rounds in the Kyb Motorcycle Suspension interview process are Aptitude Test and Technical.

Recently Viewed

INTERVIEWS

Hitachi Payment Services

No Interviews

INTERVIEWS

MasterCard

No Interviews

INTERVIEWS

Pennant Technologies

No Interviews

LIST OF COMPANIES

Pennant Technologies

Locations

SALARIES

Pennant Technologies

SALARIES

S2 Technology & Consulting

INTERVIEWS

Hitachi Payment Services

No Interviews

INTERVIEWS

MRF Tyres

No Interviews

INTERVIEWS

Hitachi Payment Services

No Interviews

INTERVIEWS

Pennant Technologies

5.6k top interview questions

Tell us how to improve this page.

Kyb Motorcycle Suspension Associate Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

John Deere Interview Questions
4.1
 • 228 Interviews
Caterpillar Inc Interview Questions
4.3
 • 176 Interviews
KONE Interview Questions
4.1
 • 101 Interviews
Hitachi Interview Questions
4.0
 • 81 Interviews
TechnipFMC Interview Questions
4.0
 • 69 Interviews
Hilti Interview Questions
3.5
 • 60 Interviews
TÜV SÜD Interview Questions
3.9
 • 60 Interviews
Concentric Interview Questions
3.8
 • 36 Interviews
Sandvik Asia Interview Questions
4.3
 • 30 Interviews
Toshiba Interview Questions
4.0
 • 27 Interviews
View all
Junior Operator Engineer
27 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Oprating Engineer
26 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Trainee
20 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Production Engineer
19 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Junior Engineer
18 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Kyb Motorcycle Suspension with

John Deere

4.1
Compare

KONE

4.1
Compare

Caterpillar Inc

4.3
Compare

TÜV SÜD

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