Upload Button Icon Add office photos

Filter interviews by

Stemrobo Technologies Innovation Engineer Interview Questions and Answers for Freshers

Updated 2 Aug 2024

Stemrobo Technologies Innovation Engineer Interview Experiences for Freshers

2 interviews found

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

I applied via Naukri.com and was interviewed in Mar 2023. There were 5 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 

Simple online aptitude test which you will get after scrutiny.

Round 3 - Technical 

(1 Question)

  • Q1. Types of Diodes, Embedded C, Uses of Zener Diode, Transistors etc.
  • Ans. 

    Diodes include Zener, Schottky, LED, etc. Transistors include BJT, FET, MOSFET, etc. Embedded C is used for microcontroller programming.

    • Zener diodes are used for voltage regulation and protection against voltage spikes

    • Schottky diodes have low forward voltage drop and are used in high-speed switching applications

    • BJT transistors are used for amplification and switching

    • FET and MOSFET transistors are used for low-power app...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Why do you want to join this particular firm, Why do you think you are fit for this role, Why didn't you bag any other placement before, About yourself etc.
Round 5 - Behavioral 

(1 Question)

  • Q1. Mainly description of the role, why do you think you are fit for the role etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be throught with the basics of your Branch, study the basics from internet and you can easily clear the interview.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Dec 2022. There were 6 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 - Aptitude Test 

Aptitude test is so easy,we can easily crack it.

Round 3 - Technical 

(2 Questions)

  • Q1. Technical round is also easy , if you are from electronics background you can easily cracked.
  • Q2. Arduino related
Round 4 - Technical 

(1 Question)

  • Q1. Same as second round company related and Arduino electronic components related
Round 5 - Company culture 

(1 Question)

  • Q1. Normal question like work location and all.
Round 6 - HR 

(1 Question)

  • Q1. Normal how are you and where are you lived.

Innovation Engineer Interview Questions Asked at Other Companies for undefined

Q1. Types of Diodes, Embedded C, Uses of Zener Diode, Transistors etc ... read more

Innovation Engineer Jobs at Stemrobo Technologies

View all

Interview questions from similar companies

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

(1 Question)

  • Q1. Based on profile and Job description

I was interviewed in May 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 120 Minutes
Round difficulty - Easy

  • Q1. 

    Rectangle Area Calculation

    Given a list of rectangles, where each rectangle is represented by an array of four integers indicating its bottom-left and top-right corners, calculate the total area covered b...

  • Ans. 

    Calculate total area covered by a list of rectangles on a plane.

    • Iterate through each rectangle and calculate its area

    • Check for overlapping areas between rectangles

    • Sum up the total area covered by all rectangles

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Oops concepts and 1 DSA problem

  • Q1. 

    Bit Set Problem Statement

    You are provided with a string, termed as DIGIT_PATTERN, which consists solely of digits. The objective is to identify the first digit that repeats in the sequence. If there's no...

  • Ans. 

    Identify the first repeating digit in a given string of digits.

    • Iterate through the string and keep track of seen digits using a set.

    • Return the first digit that repeats, or -1 if no digit repeats.

    • Time complexity: O(n), where n is the length of the input string.

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Firstly Some general questions and then suddenly a cosing question with modifications

  • Q1. 

    Print All Permutations of a String

    Given an input string STR, generate and print all possible permutations of the string.

    Input:

    str

    Output:

    All permutations of the input string, each on a new line.

    ...

  • Ans. 

    Generate and print all possible permutations of a given input string.

    • Use recursion to generate all permutations by swapping characters in the string.

    • Maintain a visited array to keep track of characters already used in a particular permutation.

    • Print each permutation as it is generated.

    • Handle duplicate characters by skipping swapping if the character is already in the current position.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from TIET - Thapar Institute of Engineering And Technology. I applied for the job as Software Engineer in GurgaonEligibility criteria7.5 CgpaGreyOrange interview preparation:Topics to prepare for the interview - DSA, OOPs, OS, DBMS, projects, PuzzlesTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : You should be perfect in what you know
Tip 2 : Prepare atleast DSA standard questions very well
Tip 3 : Don't ignore OOPs, they are asked very frequently.

Application resume tips for other job seekers

Tip 1 : Add good projects
Tip 2 : Must mention all your coding profiles and github where you worked.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Feb 2022. 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 - One-on-one 

(1 Question)

  • Q1. The interviewer asked Basic SQL and Linux OS-related questions.
Round 3 - Technical 

(2 Questions)

  • Q1. The interviewer asked questions regarding projects and experience.
  • Q2. The interviewer asked some aptitude and logical reasoning questions.
Round 4 - HR 

(1 Question)

  • Q1. Salary negotiations.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good organization for freshers and people with no/limited experience.

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 minutes
Round difficulty - Easy

The test had it's webcam on, we were not allowed to go out of the frame.

  • Q1. 

    Nth Fibonacci Number Problem Statement

    Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2), with initial conditions F(1) = F(2) = 1.

    Input:

    ...
  • Ans. 

    The program calculates the Nth Fibonacci number using a recursive formula.

    • The Fibonacci series starts with 1, 1, and each subsequent number is the sum of the two preceding numbers.

    • The program uses a recursive function to calculate the Nth Fibonacci number.

    • The time complexity of the program is O(2^N), which can be optimized using memoization or dynamic programming.

  • Answered by AI
  • Q2. 

    Longest Consecutive Sequence Problem Statement

    You are provided with an unsorted array/list ARR of N integers. Your task is to determine the length of the longest consecutive sequence present in the array...

  • Ans. 

    The task is to find the length of the longest consecutive sequence in an unsorted array of integers.

    • Sort the array to bring consecutive numbers together

    • Iterate through the sorted array and keep track of the current consecutive sequence length

    • Update the maximum length if a longer sequence is found

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

The interview was online from home.

  • Q1. 

    Reverse the String Problem Statement

    You are given a string STR which contains alphabets, numbers, and special characters. Your task is to reverse the string.

    Example:

    Input:
    STR = "abcde"
    Output:
    "e...
  • Ans. 

    The task is to reverse a given string containing lowercase letters, uppercase letters, digits, and special characters.

    • Iterate through the string from the last character to the first character and append each character to a new string.

    • Alternatively, you can use built-in string reversal functions or methods available in your programming language.

    • To solve the follow-up question with O(1) space complexity, you can use a tw...

  • Answered by AI
Round 3 - HR 

Round duration - 20 minutes
Round difficulty - Easy

This was last round. In this round interviewer ask about me and what i know about company. Also he ask about my projects as well as my future goals . 
The interviewer was very understanding and supportive.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in GurgaonEligibility criteriaNoGreyOrange interview preparation:Topics to prepare for the interview - Data Structures, Object-Oriented Programming, Algorithms, Dynamic programming, Graphs, Operating Systems and Database Management System,Java, MySQL, HTML, CSS, JavaScript, Nodejs, PythonTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Find a good course, and first clear all your fundamentals and implementation of every data structure. You should be thorough with their time as well as space complexities. 
Tip 2 : Upon clearing the fundamentals, select a platform where you have a large no of questions, also whose test cases are good. eg. LeetCode, InterviewBit or Codezen. Go and complete 300-400 questions.
Tip 3 : Also whenever you're not able to solve the problem, check out the editorial and then re-attempt it again. Also, check the discussion if there is some good solution to the same problem.
Tip 4 : For OOPS, DS and programming, I recommend Codezen, Leetcode, InterviewBit and GeeksforGeeks.
Tip 5 : For OS, DBMS and Computer Network, I recommend GateSmasher, Knowledge Gate and TutorialsPoint.

Application resume tips for other job seekers

Tip 1 : Resume should contain facts, numbers, and data comparison.
Tip 2 : Mention only those projects and internships in your resume that you are comfortable with, that is, you can explain to the interviewee.
Tip 3 : Technical achievements in the field you're applying to, would be good.
Tip 4 : DO NOT FAKE THINGS, the interviewer is smart enough.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Jul 2020. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Most common questions - 1-Introduction 2-Basics of programming 3-Skills included in resume
  • Q2. My answer to the 1 is I went in unorthodox manner , instead of telling about myself I started the journey that made It here to attend the interview and I informed the interviewer to have a look at the shee...
  • Q3. 2- Simple syntax; and basics of c language abou strings , factorial programs thats it.
  • Q4. Skills - I made my resume so simple like I added a skill as a Good listener , which made the interviewer Impressed - may be am not sure these is skill but being patience is also a skill in time of need .

Interview Preparation Tips

Interview preparation tips for other job seekers - Be +ve , no one will play the role as you
Do remember -You do you , I do me

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

Interview Questionnaire 

1 Question

  • Q1. Reverse an array
  • Ans. 

    Reverse an array of strings

    • Iterate through the array from both ends and swap the elements

    • Continue swapping until the middle of the array is reached

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare DS and algo well and some general HR questions

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Jun 2021. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. Expected salary and current salary

Interview Preparation Tips

Interview preparation tips for other job seekers - had a good interview experience and all the best

I applied via Monster and was interviewed in Aug 2019. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. What is your Experience in current company?
  • Q2. What is the importance of job in your daily life?
  • Q3. What is you technical knowledge?
  • Q4. What is your highest strengths?
  • Q5. How long have you been working this company?

Interview Preparation Tips

Interview preparation tips for other job seekers - that is good dressing and confidence is the first key where we go for interview. and good knowledge in their domain that what we experienced.

Stemrobo Technologies Interview FAQs

How many rounds are there in Stemrobo Technologies Innovation Engineer interview for freshers?
Stemrobo Technologies interview process for freshers usually has 5-6 rounds. The most common rounds in the Stemrobo Technologies interview process for freshers are Technical, Resume Shortlist and Aptitude Test.
How to prepare for Stemrobo Technologies Innovation Engineer interview for freshers?
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 Stemrobo Technologies. The most common topics and skills that interviewers at Stemrobo Technologies expect are Robotics, Arduino, Artificial Intelligence, Biotechnology and Drone.
What are the top questions asked in Stemrobo Technologies Innovation Engineer interview for freshers?

Some of the top questions asked at the Stemrobo Technologies Innovation Engineer interview for freshers -

  1. Types of Diodes, Embedded C, Uses of Zener Diode, Transistors e...read more
  2. 2.what do you know about arduino and raspberri...read more
  3. Technical round is also easy , if you are from electronics background you can e...read more

Tell us how to improve this page.

Stemrobo Technologies Innovation Engineer Interview Process for Freshers

based on 2 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

Cognizant Interview Questions
3.8
 • 5.6k Interviews
Nagarro Interview Questions
4.0
 • 759 Interviews
Publicis Sapient Interview Questions
3.5
 • 611 Interviews
GlobalLogic Interview Questions
3.7
 • 584 Interviews
UST Interview Questions
3.8
 • 507 Interviews
Zoho Interview Questions
4.3
 • 505 Interviews
CGI Group Interview Questions
4.0
 • 479 Interviews
View all
Stemrobo Technologies Innovation Engineer Salary
based on 90 salaries
₹1.8 L/yr - ₹5 L/yr
31% less than the average Innovation Engineer Salary in India
View more details

Stemrobo Technologies Innovation Engineer Reviews and Ratings

based on 41 reviews

4.1/5

Rating in categories

4.3

Skill development

4.2

Work-life balance

3.4

Salary

4.3

Job security

4.4

Company culture

3.5

Promotions

4.0

Work satisfaction

Explore 41 Reviews and Ratings
STEM Innovation Engineer

Ludhiana,

Gorakhpur

+1

0-4 Yrs

₹ 2.5-3.5 LPA

STEM Innovation Engineer

Jalandhar,

Delhi/Ncr

+1

0-4 Yrs

₹ 2.5-3.5 LPA

STEM Innovation Engineer

Jalandhar,

Delhi/Ncr

+1

0-4 Yrs

₹ 2.5-3.5 LPA

Explore more jobs
Innovation Engineer
90 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Development Manager
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Innovation Engineer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Stemrobo Technologies with

Robolab Technologies

4.2
Compare

Agnikul Cosmos

2.8
Compare

Grey Orange

3.2
Compare

Drona Aviation

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