Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Tork Motors R&D Engineer Interview Questions and Answers

Updated 26 Aug 2022

Tork Motors R&D Engineer Interview Experiences

1 interview found

R&D Engineer Interview Questions & Answers

user image Sagar Ghogare

posted on 26 Aug 2022

I applied via Referral and was interviewed before Aug 2021. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Basic Engineering fundamental Design considerations Material selection Manufacturing processes Welding process G&T Depends on your past experience
Round 3 - Assignment 

CAD software UGNX test for Plastic part design (Closed volume + Basic 3 mountaing features)

Round 4 - HR 

(1 Question)

  • Q1. They have taken basic family background & my introduction. No salary discussion as they have taken my last package & offer 30% hike. Simply not even ask my expectations if you are ready to accept then only...

Interview Preparation Tips

Topics to prepare for Tork Motors R&D Engineer interview:
  • Already shared in interview ques
Interview preparation tips for other job seekers - Don't expect salary on the basis of your experience. Just show your last salary n take hike on that basis.

Interview questions from similar companies

I was interviewed in Aug 2017.

Interview Questionnaire 

3 Questions

  • Q1. True Stress Strain,Engineering Stress strain, Drawing,Casting, Forging
  • Q2. Manufacturing Processes
  • Q3. Asked mostly about co-curricular projects or course projects.

Interview Preparation Tips

Round: Test
Experience: It was a decent test with sufficient time
Tips: Quantitative : Basic questions similar to online quant tests.
Be good with and solve a few papers before.
Technical: Focus on Strength of materials, Refrigeration, and TurboMachinery, IC engines, Design of Machne elements(Bearings, gears, shafts etc), Manufacturing Processes.
Read about automotive applications of these machine elements.
Duration: 1 hour 30 minutes
Total Questions: 90

Round: Technical Interview
Experience: Based on Resume.Very Chill and helped me out even though I forgot the fundamentals.Was able to pick up quickly and interviewer might be impressed with that.
Tips: Be thorough with resume projects and course work.Be careful with your resume content as he can go to any extent about any project done.

Round: HR Interview
Experience: Went very smoothly.Asked about my role in the teams I worked with.
Tips: Resume based things. Be confident and answer clearly

Skills: Knowledge on automotive applications, Manufaturing Processes for automotive applications
College Name: IIT Madras

I applied via Naukri.com and was interviewed before Jul 2020. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. How can you satisfy your job
  • Q2. With hardwork and my experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Wor
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is the use of static keyword
  • Ans. 

    Static keyword is used in programming to declare variables, methods, or classes that belong to the class itself rather than instances of the class.

    • Static variables are shared among all instances of a class

    • Static methods can be called without creating an instance of the class

    • Static classes cannot be instantiated and are used for grouping related methods or constants

    • Static keyword is also used in C to declare functions t

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics of electronics

I applied via Company Website and was interviewed in Apr 2022. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Basic questions asked
Round 2 - Technical 

(1 Question)

  • Q1. Forging and casting process related questions raised
Round 3 - Technical 

(1 Question)

  • Q1. With head level technical for casting and forging related process,part,

Interview Preparation Tips

Interview preparation tips for other job seekers - Fluently English speaking no fear of interview fully confident speak to all the technical questions

I applied via Company Website and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. Reverse a given Linked List. Both O(1) and O(N) space complexity. Where N is the size of Linked List.
  • Ans. 

    Reverse a given Linked List with O(1) and O(N) space complexity.

    • For O(1) space complexity, use three pointers to reverse the links in place.

    • For O(N) space complexity, use a stack to store the nodes and then pop them to create the reversed list.

    • Be careful with edge cases such as empty list or list with only one node.

  • Answered by AI
  • Q2. Explain your project. and give a brief overview for the technologies involved in the process of making the project. (Expect some cross-questioning for the technologies you are going to mention).
  • Q3. In a party of N people, only one person is known to everyone. Such a person may be present in the party, if yes, (s)he doesn't know anyone in the party. Find this celebrity (is present).
  • Ans. 

    Find the celebrity in a party of N people where only one person is known to everyone.

    • The celebrity doesn't know anyone in the party.

    • We can use a stack to keep track of potential celebrities.

    • If a person knows someone, they cannot be a celebrity.

    • If a person doesn't know someone, we can push them onto the stack.

    • After iterating through all people, we check if the stack has only one person and if that person is known to eve

  • Answered by AI
  • Q4. Explain in detail the working behind the algorithms of Merge Sort and Quick Sort.
  • Ans. 

    Merge Sort and Quick Sort are sorting algorithms that use divide and conquer approach.

    • Merge Sort divides the array into two halves, sorts them recursively, and then merges them.

    • Quick Sort selects a pivot element, partitions the array around the pivot, and recursively sorts the sub-arrays.

    • Merge Sort has a worst-case time complexity of O(nlogn), while Quick Sort has an average case time complexity of O(nlogn).

    • Merge Sort ...

  • Answered by AI
  • Q5. Trapping Rain-Water problem: Given N non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raining.
  • Ans. 

    Compute amount of water trapped in an elevation map after raining

    • Iterate through the array and find the maximum height on the left and right of each bar

    • Calculate the amount of water that can be trapped on each bar using the difference between the minimum of the two maximum heights and the height of the bar

    • Add up the amount of water trapped on each bar to get the total amount of water trapped

  • Answered by AI
  • Q6. Zigzag traversal of a given binary tree.
  • Ans. 

    Zigzag traversal of a binary tree is a way of traversing the tree in a zigzag pattern.

    • Use a stack to keep track of nodes to be visited.

    • For each level, alternate between adding nodes to the stack from left to right and right to left.

    • Pop nodes from the stack and add their children to the stack in the appropriate order.

    • Repeat until all nodes have been visited.

  • Answered by AI
  • Q7. Given a dictionary with {Key, Value} as {String, Integer}. Sort the given dictionary in ascending/descending order according to: 1) Key. 2) Value.
  • Ans. 

    Sort a dictionary by key or value in ascending/descending order.

    • Use sorted() function with lambda function to sort by key or value.

    • For ascending order, use reverse=False and for descending order, use reverse=True.

    • Example: sorted_dict = sorted(dictionary.items(), key=lambda x: x[0], reverse=True)

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - - Have a good understanding of Data Structures and Algorithm.
- Whatever your project may be, you should know aspect of it and expect some cross-questions as well.
- Be confident with what solution you are coming up, and try to make it efficient if asked.

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. Why should we hire you?
  • Q2. What are your weaknesses?
  • Q3. What are your goals

Interview Preparation Tips

Interview preparation tips for other job seekers - Make list of questions that you would like to ask during the interview
Be prepared
Display confidence during interview

I applied via Naukri.com and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Explain the difference b/w quick sort and merge sort ?
  • Ans. 

    Quick sort is a divide and conquer algorithm that sorts the array by selecting a pivot element and partitioning the other elements around it. Merge sort is also a divide and conquer algorithm that divides the array into two halves, sorts them separately and then merges them.

    • Quick sort has an average time complexity of O(n log n) while merge sort has a time complexity of O(n log n) in all cases.

    • Quick sort is an in-place...

  • Answered by AI
  • Q2. System Design for Naukri.com platform
  • Ans. 

    System design for Naukri.com platform

    • Identify user requirements and design the system architecture accordingly

    • Use scalable and reliable technologies for high traffic handling

    • Implement features like job search, job posting, resume upload, etc.

    • Ensure data security and privacy of users

    • Integrate with third-party services like payment gateways, social media platforms, etc.

  • Answered by AI
  • Q3. ADD two numbers (Linked List ) / leetcode question
  • Q4. Highest subset sum subarray ?
  • Ans. 

    Highest sum of contiguous subarray in an array

    • Use Kadane's algorithm to find the maximum sum subarray

    • Initialize max_so_far and max_ending_here to 0

    • Loop through the array and update max_ending_here and max_so_far

    • Return max_so_far as the highest subset sum subarray

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - There were 3 technical rounds . If you have clear concepts of Ds & Algo , it will do .Questions were mainly asked from DP, arrays and strings .Other than that some system design problems were also asked which includes the Design of Naukri.com.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. ADD two linkedlist (Leetcode Question)
  • Ans. 

    Add two linked lists and return the sum as a linked list.

    • Traverse both linked lists and add the corresponding nodes.

    • Handle carry over while adding nodes.

    • Create a new linked list to store the sum and return it.

  • Answered by AI
  • Q2. Knowledge about different tech stacks
  • Q3. Diff b/w quick sort and merge sort
  • Ans. 

    Quick sort is faster but unstable, while merge sort is slower but stable.

    • Quick sort uses a pivot element to divide the array into two parts and recursively sorts them.

    • Merge sort divides the array into two halves, sorts them separately, and then merges them.

    • Quick sort has an average time complexity of O(n log n), while merge sort has a time complexity of O(n log n) in all cases.

    • Quick sort is not stable, meaning that the...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was good . All of the interviewers were friendly .It was a nice discussion.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Jun 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Say thanks
Contribute & help others!
anonymous
You can choose to be anonymous

Tork Motors Interview FAQs

How many rounds are there in Tork Motors R&D Engineer interview?
Tork Motors interview process usually has 4 rounds. The most common rounds in the Tork Motors interview process are Resume Shortlist, Technical and Assignment.

Recently Viewed

INTERVIEWS

Elevate

No Interviews

INTERVIEWS

Tork Motors

No Interviews

JOBS

Ideaforge Technology

No Jobs

INTERVIEWS

Ideaforge Technology

No Interviews

JOBS

Ideaforge Technology

No Jobs

INTERVIEWS

Arkade Group

No Interviews

INTERVIEWS

Convosight

No Interviews

INTERVIEWS

Ideaforge Technology

No Interviews

INTERVIEWS

Ather Energy

No Interviews

INTERVIEWS

Arkade Group

No Interviews

Tell us how to improve this page.

Interview Questions from Similar Companies

TVS Motor Interview Questions
4.0
 • 315 Interviews
Bajaj Auto Interview Questions
3.9
 • 267 Interviews
AmbitionBox Interview Questions
4.9
 • 151 Interviews
Ather Energy Interview Questions
4.0
 • 56 Interviews
Cogoport Interview Questions
2.9
 • 53 Interviews
MyCaptain Interview Questions
3.2
 • 41 Interviews
HyperVerge Interview Questions
4.3
 • 25 Interviews
Arzooo.com Interview Questions
2.4
 • 23 Interviews
View all
Tork Motors R&D Engineer Salary
based on 12 salaries
₹3 L/yr - ₹12 L/yr
21% less than the average R&D Engineer Salary in India
View more details

Tork Motors R&D Engineer Reviews and Ratings

based on 2 reviews

4.5/5

Rating in categories

4.3

Skill development

4.0

Work-life balance

3.6

Salary

3.0

Job security

3.6

Company culture

4.3

Promotions

3.8

Work satisfaction

Explore 2 Reviews and Ratings
R&D Engineer
12 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Production Engineer
12 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Area Service Manager
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Design Engineer
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Design Engineer
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Tork Motors with

Ather Energy

4.0
Compare

Ultraviolette Automotive

4.1
Compare

Ola Electric Mobility

3.3
Compare

Hero Electric

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