Upload Button Icon Add office photos

Filter interviews by

Renishaw Software Engineer Interview Questions and Answers

Updated 10 Jan 2024

Renishaw Software Engineer Interview Experiences

4 interviews found

Software Engineer Interview Questions & Answers

user image BT19MEC005 Afzal Ali

posted on 25 Sep 2023

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 

(1 Question)

  • Q1. Asked many questions from almost all subjects of mechanical engineering after starting from favorite subject.
Round 3 - Technical 

(1 Question)

  • Q1. Analysis of few mechanical systems. Degree of freedoms, dynamics of machine, trigonometry, geometry, vector algebra etc. Later fee computer science fundamentals were asked followed by bit more level of dsa...
Round 4 - HR 

(1 Question)

  • Q1. Why you want to work here. What makes you more preferable candidate than others. Are you willing to work from pune. Explained working culture and asked if I am comfortable with it. Salary expectations etc

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are getting better salary offer than this one, choose the other one. If you're expected salary hike here then you'll have to look for opportunities outside this company. Work culture and overall atmosphere are considerably good. Good place to start as software engineer if you're an mechanical engineer.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jan 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Two coding questions along with 10 technical mcq questions

Round 2 - Technical 

(2 Questions)

  • Q1. Coding questions like printing inverted pyramid
  • Q2. All the key concepts in C#
  • Ans. 

    Key concepts in C# include classes, objects, inheritance, polymorphism, encapsulation, and exception handling.

    • Classes: Blueprint for creating objects

    • Objects: Instances of classes that hold data and behavior

    • Inheritance: Allows a class to inherit properties and methods from another class

    • Polymorphism: Ability to use a single interface to represent different types of objects

    • Encapsulation: Bundling of data and methods into ...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. General attitude related questions
  • Q2. Questions related to work ethics you practice

Skills evaluated in this interview

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find DuplicateYou have been given an integer array/list(ARR) of s ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

I applied via Naukri.com and was interviewed in Feb 2022. There were 4 interview rounds.

Round 1 - Coding Test 

8 MCQ Questions
2 Program

Round 2 - Technical 

(1 Question)

  • Q1. Related to C#, WPF, MVVM, all the questions are available on internet
Round 3 - Behavioral 

(1 Question)

  • Q1. Questions related to projects which I worked on.
Round 4 - HR 

(1 Question)

  • Q1. Related to family, work experience and expectations

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest with your answer’s and go thorough the company website first.
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 tips
Round 2 - Aptitude Test 

Apti plus tech

Round 3 - Technical 

(1 Question)

  • Q1. Went for 1.3 hr... Maths Puzzle Core
Round 4 - HR 

(5 Questions)

  • Q1. Where do you see yourself in 5 years?
  • Q2. What is your family background?
  • Q3. Tell me about yourself.
  • Q4. Why should we hire you?
  • Q5. What are your strengths and weaknesses?

Interview Preparation Tips

Interview preparation tips for other job seekers - Preparation for good technical interview

Renishaw interview questions for designations

 Senior Software Engineer

 (1)

 Graduate Software Engineer

 (1)

 Sales Engineer

 (1)

 Programmer Analyst

 (1)

 Graduate Engineer Trainee (Get)

 (1)

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Vellore Institute of Technology (VIT) and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Coding Test 

3 coding questions were given and all should have to be passed for the next round

Round 2 - Technical 

(2 Questions)

  • Q1. It was based purely on resume
  • Q2. No hr. Only technical round
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Can you explain the difference between a stack and a queue and provide a real-world example where each would be used.
  • Ans. 

    A stack is a Last In First Out (LIFO) data structure, while a queue is a First In First Out (FIFO) data structure.

    • Stack: LIFO - Last In First Out. Example: browser history where the last page visited is the first to be accessed.

    • Queue: FIFO - First In First Out. Example: a line at a grocery store where the first person in line is the first to be served.

  • Answered by AI
  • Q2. Given an array of integers, write a function to find the two numbers that add up to a specific target. How would you optimize this solution?
  • Ans. 

    Function to find two numbers in array that add up to target. Optimize solution.

    • Use a hash map to store each number and its index as you iterate through the array.

    • For each number, check if the difference between the target and the number exists in the hash map.

    • Return the indices of the two numbers that add up to the target.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared with coding challenges, especially related to arrays, linked lists, and trees.
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain oop concets
  • Ans. 

    OOP concepts are fundamental principles in object-oriented programming that help in organizing and designing code.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

    • Inheritance: Ability of a class to inherit properties and behavior from another class.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation detai...

  • Answered by AI
  • Q2. Virtual functions
Round 2 - Technical 

(2 Questions)

  • Q1. Explain vectors and array difference
  • Ans. 

    Vectors are dynamic arrays that can change in size, while arrays have a fixed size.

    • Vectors can grow or shrink in size dynamically, while arrays have a fixed size.

    • Vectors can be resized using functions like push_back() and pop_back(), while arrays cannot.

    • Vectors are part of the C++ Standard Template Library (STL), while arrays are a fundamental data structure.

    • Example: vector vec; int arr[5];

Answered by AI
  • Q2. Virtual destructors
  • Round 3 - One-on-one 

    (2 Questions)

    • Q1. About last project
    • Q2. Puzzle with some analytical skills

    Skills evaluated in this interview

    Interview experience
    5
    Excellent
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    Selected Selected

    I applied via Walk-in and was interviewed in Dec 2023. There was 1 interview round.

    Round 1 - Technical 

    (4 Questions)

    • Q1. What technical skills you've learned so far in the college
    • Q2. Where do you see yourself in the next 5 years.
    • Q3. Reverse a linked list
    • Ans. 

      Reverse a linked list by changing the pointers direction

      • Iterate through the linked list and change the direction of pointers

      • Use three pointers - prev, current, next to reverse the list

      • Update the head pointer to point to the new first node

    • Answered by AI
    • Q4. General dbms, os, and cn questions

    Interview Preparation Tips

    Topics to prepare for Johnson Controls Software Engineer interview:
    • dsa
    • C++
    • computer networks
    • OS
    • sql
    Interview preparation tips for other job seekers - just learn basics of computer fundamentals, and know about your project you mentioned in resume, and be good with normal dsa questions like arrays, strings, linked list, stacks and queues, and you should be good mostly

    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 at Dr DY Patil Institute of Management and Research, Pune and was interviewed in Nov 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 - Aptitude Test 

    Basic aptitude questions

    Round 3 - Group Discussion 

    Topic was "which is best work from home or work from office?"

    Round 4 - Technical 

    (2 Questions)

    • Q1. Questions about html, css and javascript
    • Q2. Questions based on resume
    Interview experience
    4
    Good
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Coding Test 

    Easy coding exercise with test cases

    Round 2 - Technical 

    (2 Questions)

    • Q1. More about coding exercise
    • Q2. Work experience

    Renishaw Interview FAQs

    How many rounds are there in Renishaw Software Engineer interview?
    Renishaw interview process usually has 3-4 rounds. The most common rounds in the Renishaw interview process are Technical, HR and Resume Shortlist.
    How to prepare for Renishaw Software Engineer 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 Renishaw . The most common topics and skills that interviewers at Renishaw expect are C++, C#, Algorithm Development, Javascript and Python.
    What are the top questions asked in Renishaw Software Engineer interview?

    Some of the top questions asked at the Renishaw Software Engineer interview -

    1. All the key concepts in...read more
    2. Analysis of few mechanical systems. Degree of freedoms, dynamics of machine, tr...read more
    3. Asked many questions from almost all subjects of mechanical engineering after s...read more

    Tell us how to improve this page.

    People are getting interviews through

    based on 2 Renishaw interviews
    Job Portal
    100%
    Moderate Confidence
    ?
    Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
    Renishaw Software Engineer Salary
    based on 86 salaries
    ₹5.5 L/yr - ₹14 L/yr
    31% more than the average Software Engineer Salary in India
    View more details

    Renishaw Software Engineer Reviews and Ratings

    based on 14 reviews

    4.0/5

    Rating in categories

    3.3

    Skill development

    4.7

    Work-Life balance

    3.4

    Salary & Benefits

    4.8

    Job Security

    4.0

    Company culture

    2.9

    Promotions/Appraisal

    3.5

    Work Satisfaction

    Explore 14 Reviews and Ratings
    Software Engineer
    86 salaries
    unlock blur

    ₹5.5 L/yr - ₹14 L/yr

    Software Engineering Specialist
    49 salaries
    unlock blur

    ₹9.6 L/yr - ₹24 L/yr

    Applications Engineer
    20 salaries
    unlock blur

    ₹4.8 L/yr - ₹7.2 L/yr

    Software Testing Specialist
    14 salaries
    unlock blur

    ₹10 L/yr - ₹19.5 L/yr

    Softwaretest Engineer
    13 salaries
    unlock blur

    ₹6 L/yr - ₹12.5 L/yr

    Explore more salaries
    Compare Renishaw with

    Hexagon

    3.5
    Compare

    Carl Zeiss

    3.7
    Compare

    Trimble Solutions India

    4.5
    Compare

    Mitutoyo South Asia

    3.6
    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