Upload Button Icon Add office photos

Suzuki Motorcycle

Compare button icon Compare button icon Compare

Filter interviews by

Suzuki Motorcycle Associate Engineer Interview Questions and Answers for Experienced

Updated 10 Mar 2019

Interview questions from similar companies

I applied via Naukri.com and was interviewed before May 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basics about Android application development

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong with basics

I applied via Referral and was interviewed before Feb 2021. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. My job Responsibility and my job profile.
  • Q2. Line balancing for me.
  • Ans. 

    Line balancing is the process of optimizing workstations in a production line to minimize idle time and maximize efficiency.

    • It involves analyzing the production process and identifying bottlenecks

    • Tasks are then rearranged to balance the workload across workstations

    • The goal is to achieve a smooth and continuous flow of work

    • Example: In a car assembly line, line balancing would involve ensuring that each workstation has a...

  • Answered by AI
  • Q3. Rejected and part analysis for everyone.
  • Q4. Check sheet Filling.

Interview Preparation Tips

Interview preparation tips for other job seekers - Job Responsibility, Line Balancing, Data entry, Poka Yoka analysis etc.

Interview Questionnaire 

3 Questions

  • Q1. Reverse a linked list
  • Ans. 

    Reverse a linked list

    • Iterative approach: Traverse the list and change the pointers to reverse the list

    • Recursive approach: Recursively reverse the rest of the list and change the pointers

    • Use a stack to push all the nodes and then pop them to create a reversed list

  • Answered by AI
  • Q2. Implementation of stack
  • Ans. 

    Stack is a data structure that follows Last In First Out (LIFO) principle.

    • Stack can be implemented using arrays or linked lists.

    • Push operation adds an element to the top of the stack.

    • Pop operation removes the top element from the stack.

    • Peek operation returns the top element without removing it.

    • Stack overflow occurs when the stack is full and push operation is performed.

    • Stack underflow occurs when the stack is empty and

  • Answered by AI
  • Q3. Queues implementation
  • Ans. 

    Queues are a data structure that follows the FIFO principle.

    • Queues can be implemented using arrays or linked lists.

    • Enqueue adds an element to the end of the queue, while dequeue removes an element from the front.

    • Peek returns the element at the front of the queue without removing it.

    • Queues are used in scheduling, buffering, and breadth-first search algorithms.

  • Answered by AI

Skills evaluated in this interview

I applied via Walk-in and was interviewed before Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Javscript , Angular, ES6

Interview Preparation Tips

Interview preparation tips for other job seekers - Prep on javascript and angular
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in May 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 tips
Round 2 - One-on-one 

(5 Questions)

  • Q1. How hard to do code
  • Ans. 

    Coding can be challenging but rewarding with practice and experience.

    • Coding requires problem-solving skills and attention to detail.

    • Practice and experience can make coding easier over time.

    • Collaborating with others and seeking help when needed can make coding less difficult.

    • Using tools and resources effectively can also help in coding efficiently.

    • Examples: debugging a complex algorithm, optimizing code for performance,...

  • Answered by AI
  • Q2. How to acheive deaign patterns
  • Ans. 

    Design patterns can be achieved by understanding common software design problems and implementing reusable solutions.

    • Understand common design problems and solutions

    • Implement reusable solutions in code

    • Use design patterns like Singleton, Factory, Observer, etc.

    • Follow best practices and principles like SOLID

  • Answered by AI
  • Q3. How ti keep agile
  • Ans. 

    To keep agile, focus on communication, adaptability, collaboration, and continuous improvement.

    • Communicate regularly with team members and stakeholders to stay aligned on goals and progress.

    • Be willing to adapt to changing requirements and priorities.

    • Collaborate closely with team members to share knowledge and expertise.

    • Continuously seek feedback and look for ways to improve processes and workflows.

  • Answered by AI
  • Q4. How to make redis cache
  • Ans. 

    Redis cache can be created by setting up a Redis server and using Redis commands to store and retrieve data.

    • Set up a Redis server on your machine or use a cloud-based Redis service.

    • Use Redis commands like SET and GET to store and retrieve data in the cache.

    • Set expiration times for keys to control cache eviction policies.

    • Monitor cache performance and usage to optimize for efficiency.

    • Consider using Redis data structures ...

  • Answered by AI
  • Q5. How to relive an existing offer
  • Ans. 

    To relive an existing offer, negotiate with the employer for better terms or consider accepting a counteroffer.

    • Negotiate with the employer for better salary, benefits, or work conditions

    • Consider accepting a counteroffer if it meets your expectations

    • Communicate openly and professionally with the employer

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Normal questions was average

Round 2 - HR 

(1 Question)

  • Q1. Very good f2f interview
Round 3 - Technical 

(1 Question)

  • Q1. Coding ques were asked and i was given a code to write and questions from resume
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Referral and was interviewed in Sep 2023. 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 - Coding Test 

Dotnet,c#,sql,MVC,ASP.NET

Round 3 - Assignment 

Previous experience, scenario based, project architecture

Round 4 - HR 

(1 Question)

  • Q1. When is your notice period?

Interview Preparation Tips

Interview preparation tips for other job seekers - all the best!!
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Sep 2023. There were 4 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. > in .Net Asked some question about Microservice, API gateway, Web API,and in frontend asked some Angular Basics question
  • Q2. Find all even number from list with some limit.(like if in list there are 5 even number we have to fetch only 4 even number). > What is the Architecture currently we r following in Microservice > what is...
  • Ans. 

    To find all even numbers from a list with a specified limit, iterate through the list and add even numbers until the limit is reached.

    • Iterate through the list of numbers

    • Check if each number is even

    • Add the even numbers to a new list until the limit is reached

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

(2 Questions)

  • Q1. Asked about Architecture question
  • Q2. Asked about the Rest Principal
Round 3 - Behavioral 

(1 Question)

  • Q1. Asked about my Previous Company Experience.
Round 4 - HR 

(1 Question)

  • Q1. Asked about the salary Exception

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are experience in .Net Technology just go through the Advanced Topic and Technology

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Selected Selected

I appeared for an interview before Jan 2024.

Round 1 - HR 

(2 Questions)

  • Q1. How many last ctc
  • Ans. 

    The question is asking about the candidate's last drawn salary (CTC).

    • CTC stands for Cost to Company and refers to the total salary package of an employee including all benefits and perks.

    • The candidate should provide the exact amount or range of their last drawn CTC.

    • It is important to be honest and transparent about the last CTC to negotiate effectively for the new role.

  • Answered by AI
  • Q2. Your CTC pakage

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare before technical interview

Tell us how to improve this page.

Interview Questions from Similar Companies

Royal Enfield Interview Questions
4.2
 • 157 Interviews
Sonalika Tractors Interview Questions
3.7
 • 130 Interviews
Force Motors Interview Questions
3.6
 • 122 Interviews
Sasken Interview Questions
3.8
 • 80 Interviews
Incheon Motors Interview Questions
4.7
 • 71 Interviews
Yamaha Motor Interview Questions
4.1
 • 68 Interviews
Volvo Interview Questions
4.1
 • 65 Interviews
View all

Fast track your campus placements

View all
Assistant Manager
215 salaries
unlock blur

₹6.5 L/yr - ₹15.6 L/yr

Engineer
154 salaries
unlock blur

₹4.2 L/yr - ₹12.3 L/yr

Diploma Trainee Engineer
122 salaries
unlock blur

₹2 L/yr - ₹3 L/yr

Supervisor
117 salaries
unlock blur

₹2 L/yr - ₹6.5 L/yr

Area Service Manager
90 salaries
unlock blur

₹7.3 L/yr - ₹18 L/yr

Explore more salaries
Compare Suzuki Motorcycle with

Hyundai Motor India Limited

4.3
Compare

Royal Enfield

4.2
Compare

Escorts Kubota Limited

4.1
Compare

Sonalika Tractors

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