Upload Button Icon Add office photos

Filter interviews by

Asimov Robotics Interview Questions and Answers

Updated 12 Jul 2024

Asimov Robotics Interview Experiences

Popular Designations

2 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Define Stress and strain.
  • Ans. 

    Stress is the force applied to a material, while strain is the resulting deformation or change in shape.

    • Stress is the force applied per unit area on a material.

    • Strain is the measure of deformation or change in shape of a material.

    • Stress and strain are related by the material's modulus of elasticity.

    • Example: When a weight is placed on a spring, the stress on the spring increases, causing it to deform (strain).

  • Answered by AI
  • Q2. Define Poisson's ratio.
  • Ans. 

    Poisson's ratio is a measure of the ratio of lateral strain to longitudinal strain in a material subjected to stress.

    • Poisson's ratio is denoted by the symbol 'ν'.

    • It is a dimensionless quantity that typically ranges between 0 and 0.5.

    • A material with a Poisson's ratio of 0.5 would mean that it does not change in lateral dimensions when stretched longitudinally.

    • Common materials like rubber have a Poisson's ratio close to

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare basics of mechanical engineering and you are well and good to crack the interview.

Mechanical Design Intern Interview Questions asked at other Companies

Q1. How are you in SolidWorks?
View answer (1)

I applied via Company Website and was interviewed before Jun 2021. 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 tips
Round 2 - Technical 

(3 Questions)

  • Q1. About control systems
  • Q2. Questions in basics of ros
  • Q3. The question in vision technologies
Round 3 - HR 

(1 Question)

  • Q1. About the expected salary. About his working period.

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to learn the things that were given in job description.

Robotics Engineer Interview Questions asked at other Companies

Q1. Difference between Deep Learning and Reinforcement Learning, scenario where each should be preferred or not preferred.
View answer (1)

Interview questions from similar companies

I applied via Campus Placement and was interviewed before May 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Mcq, group disscusion. Technical questions DS related

Interview Preparation Tips

Interview preparation tips for other job seekers - Good. Work life balance could have been better

I applied via Company Website and was interviewed in Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions from core java deep concept, kotlin deep concept, android app I have made, and the question from android sdk related things.

Interview Preparation Tips

Interview preparation tips for other job seekers - There was 3 round . 2 Technical and one H.R round.

I applied via Walk-in and was interviewed before Oct 2021. 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 tips
Round 2 - Aptitude Test 

General aptitude, Numerical, and mental ability test

Round 3 - Technical 

(2 Questions)

  • Q1. Trade Related Questions and Privious Experience Related Questions.
  • Q2. Salary Expectation and Reason to leave previous Organisation.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep Kalm and If you have good experience, No need to worry. The thing matters is your Gratitude and learning/leading skills

I applied via Naukri.com and was interviewed in Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. Nodejs architecture?
  • Q2. What is event loop?
  • Ans. 

    Event loop is a mechanism that allows JavaScript to perform non-blocking I/O operations.

    • Event loop is a part of JavaScript runtime that continuously checks the call stack and the task queue.

    • It executes the tasks in the task queue one by one, and once the task is completed, it is removed from the queue.

    • Event loop ensures that the JavaScript code does not block the main thread and allows for asynchronous programming.

    • Exam...

  • Answered by AI
  • Q3. Mongodb queries basic
  • Q4. Basic javascript questions
  • Q5. Difference between var and let
  • Ans. 

    var is function-scoped while let is block-scoped.

    • var declarations are hoisted to the top of their scope while let declarations are not.

    • var can be redeclared in the same scope while let cannot.

    • let is preferred over var for better code readability and avoiding unexpected behavior.

    • Example: var x = 10; if (true) { var x = 20; } console.log(x); // Output: 20 let y = 10; if (true) { let y = 20; } console.log(y

  • Answered by AI
  • Q6. What is prototype in javascript?
  • Ans. 

    Prototype is a property of an object that allows adding new properties and methods to an existing object.

    • Prototype is a blueprint for creating objects.

    • It is used to add new properties and methods to an existing object.

    • All objects in JavaScript have a prototype property.

    • The prototype property is used to share properties and methods between objects.

    • Modifying the prototype of an object affects all instances of that object

  • Answered by AI
  • Q7. Javascript is multi threaded or single threaded?
  • Ans. 

    Javascript is single threaded.

    • Javascript has a single call stack and event loop.

    • It can handle asynchronous operations through callbacks and promises.

    • Web workers can be used for multi-threading in Javascript.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic questions mainly regarding to javascript

Skills evaluated in this interview

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

I appeared for an interview in Jan 2023.

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 - Technical 

(2 Questions)

  • Q1. Pass one data from parent to child component
  • Ans. 

    Passing data from parent to child component in React

    • Use props to pass data from parent to child component

    • Define a prop in the parent component and pass it to the child component

    • Access the prop in the child component using this.props

    • Example:

  • Answered by AI
  • Q2. Basic of Angular
Round 3 - Technical 

(3 Questions)

  • Q1. How do you code optimization
  • Ans. 

    Code optimization involves improving the efficiency and performance of software by reducing resource usage and execution time.

    • Identify and eliminate bottlenecks in the code

    • Use efficient algorithms and data structures

    • Minimize unnecessary computations and memory usage

    • Optimize database queries and network communication

    • Profile and analyze code to identify areas for improvement

  • Answered by AI
  • Q2. Ionic build step to release android and ios
  • Ans. 

    Ionic build step to release Android and iOS

    • To release an Ionic app for Android, use the command 'ionic cordova build android --release'

    • To release an Ionic app for iOS, use the command 'ionic cordova build ios --release'

    • For Android, you will need a keystore file and signing configuration

    • For iOS, you will need a valid provisioning profile and certificate

  • Answered by AI
  • Q3. Ionic Lifecycle
Round 4 - HR 

(2 Questions)

  • Q1. Reasons for lefting last company
  • Q2. How do you manage work with work from home

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before May 2020. There were 6 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Ds related basic questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic interview with logical questions and ds related questions

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

Interview Questionnaire 

2 Questions

  • Q1. Brief yourself
  • Q2. Technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Just Be prepared for what you have experienced, Be Confident, and if you do not know the answer to the question be strait forward.
Interview experience
5
Excellent
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 - Aptitude Test 

1 hour multiple choice and fill in the blanks questions on basic English, Maths. Coding concepts

Round 3 - Technical 

(2 Questions)

  • Q1. I was asked questions on Array operations
  • Q2. Reverse an array, get substring, eliminates 0 from array
  • Ans. 

    Reverse array, get substring, remove 0s

    • Use array.reverse() to reverse the array

    • Use string.substring() to get a substring

    • Use array.filter() to remove 0s from the array

  • Answered by AI

Asimov Robotics Interview FAQs

How many rounds are there in Asimov Robotics interview?
Asimov Robotics interview process usually has 2 rounds. The most common rounds in the Asimov Robotics interview process are Technical, Resume Shortlist and HR.
How to prepare for Asimov Robotics 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 Asimov Robotics. The most common topics and skills that interviewers at Asimov Robotics expect are C++, GIT, Linux, MATLAB and Machine Learning.
What are the top questions asked in Asimov Robotics interview?

Some of the top questions asked at the Asimov Robotics interview -

  1. Define Stress and stra...read more
  2. Define Poisson's rat...read more
  3. the question in vision technolog...read more

Tell us how to improve this page.

Asimov Robotics Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Grey Orange Interview Questions
3.2
 • 38 Interviews
Wishup Interview Questions
4.1
 • 23 Interviews
InsanelyGood Interview Questions
4.1
 • 19 Interviews
Sun Mobility Interview Questions
4.0
 • 19 Interviews
Vegrow Interview Questions
4.1
 • 17 Interviews
FarMart Interview Questions
4.1
 • 16 Interviews
Systemantics Interview Questions
4.9
 • 3 Interviews
View all

Asimov Robotics Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

4.0

Salary

3.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Compare Asimov Robotics with

Grey Orange

3.2
Compare

Sastra Robotics

5.0
Compare

Gridbots Technologies

2.9
Compare

Drishta Inc

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