Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Miko Team. If you also belong to the team, you can get access from here

Miko Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Miko Senior Robotic Engineer Interview Questions, Process, and Tips

Updated 18 May 2024

Miko Senior Robotic Engineer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Assignment 

Told me to design a path planner for a 2D Grid

Round 2 - One-on-one 

(5 Questions)

  • Q1. What is Scan Matching in ICP algorithm?
  • Ans. 

    Scan matching in ICP algorithm involves aligning two sets of scan data to find the transformation that minimizes the difference between them.

    • Scan matching is a key step in Iterative Closest Point (ICP) algorithm used for registering point clouds.

    • It involves finding the transformation (translation and rotation) that aligns two sets of scan data.

    • The goal is to minimize the difference between the two sets of points by ite...

  • Answered by AI
  • Q2. Explain the navigation stack.
  • Ans. 

    The navigation stack is a collection of software components that work together to enable a robot to navigate autonomously in its environment.

    • The navigation stack typically includes components such as localization, mapping, path planning, and obstacle avoidance.

    • Localization is the process of determining the robot's position and orientation in the environment.

    • Mapping involves creating a map of the environment using senso...

  • Answered by AI
  • Q3. Explain VSLAM stack
  • Ans. 

    VSLAM stack stands for Visual Simultaneous Localization and Mapping stack, used in robotics for navigation and mapping.

    • VSLAM stack combines visual data from cameras with sensor data for localization and mapping in real-time

    • It typically includes components like feature extraction, feature matching, camera calibration, and pose estimation

    • Popular VSLAM algorithms include ORB-SLAM, LSD-SLAM, and PTAM

  • Answered by AI
  • Q4. What is loop closer in VSLAM and Scan matching
  • Ans. 

    Loop closer in VSLAM and Scan matching is a technique used to optimize the trajectory of a robot by closing loops in the map.

    • Loop closer is responsible for correcting accumulated errors in the estimated trajectory of a robot in VSLAM.

    • It helps in aligning the current scan data with the previously mapped environment to improve localization accuracy.

    • Loop closer can be implemented using techniques like loop closure detecti...

  • Answered by AI
  • Q5. Why you want to join the company.

Interview Preparation Tips

Interview preparation tips for other job seekers - Believe in yourself and be confident

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via AmbitionBox and was interviewed in Dec 2022. 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 tips
Round 2 - Aptitude Test 

Basic grammer, maths questions,

Round 3 - Technical 

(2 Questions)

  • Q1. Basic questions on programming languages
  • Q2. Oops concepts, collections, method overloading, method overriding
Round 4 - HR 

(2 Questions)

  • Q1. Tell me about your self?
  • Ans. 

    I am a software engineer with experience in developing and maintaining software applications.

    • Proficient in programming languages such as Java, C++, and Python

    • Experience in developing web applications using frameworks like Spring and Django

    • Strong problem-solving and analytical skills

    • Familiarity with version control systems like Git

    • Ability to work in a team and collaborate effectively

  • Answered by AI
  • Q2. What is your salary expectations?
  • Ans. 

    I am open to discussing salary based on the responsibilities and requirements of the position.

    • I am flexible and open to negotiation.

    • I am looking for a competitive salary based on my skills and experience.

    • I am interested in discussing the overall compensation package, including benefits and bonuses.

    • I am open to considering other forms of compensation, such as stock options or profit sharing.

    • I would like to learn more ab...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare on basic questions reach there on time. If

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

Interview Questionnaire 

4 Questions

  • Q1. What is closure and explain?
  • Ans. 

    Closure is a function that has access to variables in its outer scope, even after the outer function has returned.

    • Closure is created when a function is defined inside another function.

    • The inner function has access to the outer function's variables and parameters.

    • The inner function can access the outer function's variables even after the outer function has returned.

    • Closures are used for data privacy, event handlers, and...

  • Answered by AI
  • Q2. What is hoc, pure component and react.memo.
  • Ans. 

    hoc, pure component and react.memo are all ways to optimize React components.

    • Higher Order Components (HOC) are functions that take a component and return a new component with additional functionality.

    • Pure Components are components that only re-render when their props or state change.

    • React.memo is a higher order component that memoizes the result of a component rendering, preventing unnecessary re-renders.

  • Answered by AI
  • Q3.  Give the result of pre written javascript questions like counter increment.
  • Q4. One coding question in react.

Interview Preparation Tips

Interview preparation tips for other job seekers - Should have basics clear and try some coding questions in JavaScript.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Apr 2023. There were 2 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 tips
Round 2 - Technical 

(2 Questions)

  • Q1. Last company work profile
  • Ans. 

    I worked as a Senior Software Engineer at XYZ Company.

    • Developed and maintained software applications

    • Collaborated with cross-functional teams to gather requirements and design solutions

    • Implemented new features and enhancements

    • Performed code reviews and provided technical guidance to junior developers

    • Resolved bugs and issues reported by users

    • Optimized application performance and scalability

    • Participated in agile developme

  • Answered by AI
  • Q2. Dot Net, oracle framework, sql related qu.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(3 Questions)

  • Q1. What is recursive function?
  • Ans. 

    A recursive function is a function that calls itself within its definition.

    • A recursive function must have a base case to prevent infinite recursion.

    • Recursion is often used to solve problems that can be broken down into smaller, similar subproblems.

    • Example: Factorial function, Fibonacci sequence.

  • Answered by AI
  • Q2. Difference between c and c++
  • Ans. 

    C is a procedural programming language while C++ is an object-oriented programming language.

    • C is a procedural programming language, while C++ is a combination of procedural and object-oriented programming.

    • C does not support classes and objects, while C++ does.

    • C does not have built-in support for exception handling, while C++ does.

    • C does not have namespaces, while C++ does.

    • C does not have function overloading, while C++

  • Answered by AI
  • Q3. Inheritance and data structures?
Round 3 - Technical 

(2 Questions)

  • Q1. What are the Oops concepts
  • Ans. 

    Oops concepts are the fundamental principles of object-oriented programming, including inheritance, encapsulation, polymorphism, and abstraction.

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

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

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

    • Abstraction: Hiding the complex i...

  • Answered by AI
  • Q2. How to reverse any string
  • Ans. 

    To reverse a string, iterate through the characters and build a new string in reverse order.

    • Iterate through the characters of the string from end to start

    • Append each character to a new string to build the reversed string

    • Return the reversed string as the result

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare with basic programming and logical concepts

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Normal DSA and sql is more then enough.

Round 2 - Technical 

(1 Question)

  • Q1. Project and subject related questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear with basic and some basic interview question.

Intern Interview Questions & Answers

Feuji user image Smitha D.M.

posted on 31 Jan 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Jul 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Java related code snippets based mcq around 30 questions
Round 2 - One-on-one 

(2 Questions)

  • Q1. Core java concepts and sql and basic coding questions
  • Q2. Non prime numbers coding question continue , break difference polymorphism exception handling
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Apr 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 - Technical 

(3 Questions)

  • Q1. Tell me about yourself . about the product/ project related question
  • Q2. They will give you a set of requirement on which you have to write a user story.
  • Ans. During 30min they want you to write whole product workflow user story. which i find funny. they dont want to listen to your user story idea or analysis.
  • Answered Anonymously
  • Q3. Brd document formatting
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Jun 2023. There were 3 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 tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Problem Statement on Javascript Debugging, Core CSS, React Implementation questions
Round 3 - Technical 

(1 Question)

  • Q1. Details asked regarding past projects, past experience in detail and in-depth technical questions based on past projects

Interview Preparation Tips

Topics to prepare for Codemonk Senior Software Engineer interview:
  • Javascript
  • React.Js
  • CSS
  • Tailwind
  • Typescript
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jun 2022. There were 6 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 

20 aptitude question 10 was the cut off

Round 3 - Coding Test 

There were total 9 question 3 mcq and 6 DSA question easy to moderate.

Round 4 - Technical 

(1 Question)

  • Q1. Deep discussion on javascript and project. They asked lot of questions on binary search, interviewer wants to check how strong is my basic concept is. Last question was also on binary search(HARD)
Round 5 - Technical 

(1 Question)

  • Q1. Deep discussion about my all projects. Again asked 1 DSA question (Easy)
Round 6 - HR 

(1 Question)

  • Q1. This round was basically to tell me that I was selected.

Interview Preparation Tips

Interview preparation tips for other job seekers - You should know every line of your resume.
Solve leetcode question clear you DSA concepts.

Miko Interview FAQs

How many rounds are there in Miko Senior Robotic Engineer interview?
Miko interview process usually has 2 rounds. The most common rounds in the Miko interview process are Assignment and One-on-one Round.
What are the top questions asked in Miko Senior Robotic Engineer interview?

Some of the top questions asked at the Miko Senior Robotic Engineer interview -

  1. What is loop closer in VSLAM and Scan match...read more
  2. What is Scan Matching in ICP algorit...read more
  3. Explain the navigation sta...read more

Tell us how to improve this page.

Miko Senior Robotic Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

XenonStack Interview Questions
3.3
 • 26 Interviews
Zebronics Interview Questions
3.7
 • 23 Interviews
Convin Interview Questions
4.3
 • 21 Interviews
Boult Audio Interview Questions
4.0
 • 12 Interviews
Netomi Interview Questions
4.4
 • 9 Interviews
BoAt Interview Questions
3.6
 • 8 Interviews
Habilelabs Interview Questions
4.2
 • 8 Interviews
Feuji Interview Questions
2.8
 • 8 Interviews
View all
Content Writer
7 salaries
unlock blur

₹1.1 L/yr - ₹7.1 L/yr

Product Manager
7 salaries
unlock blur

₹17 L/yr - ₹27 L/yr

Sales Associate
6 salaries
unlock blur

₹2.4 L/yr - ₹4 L/yr

Business Analyst
5 salaries
unlock blur

₹13.5 L/yr - ₹14 L/yr

Associate Product Manager
5 salaries
unlock blur

₹16.5 L/yr - ₹21.2 L/yr

Explore more salaries
Compare Miko with

XenonStack

3.2
Compare

Sequretek It Solutions

4.0
Compare

Dozee

3.9
Compare

Convin

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