Upload Button Icon Add office photos

Filter interviews by

Robosoft Technologies Software Engineer Interview Questions, Process, and Tips

Updated 7 Jan 2025

Top Robosoft Technologies Software Engineer Interview Questions and Answers

View all 6 questions

Robosoft Technologies Software Engineer Interview Experiences

11 interviews found

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

I applied via Company Website and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Easy array, string and DSA important problems

Round 2 - Aptitude Test 

Basic questions prepare easy questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare all basic concepts of DSA and some DBMS concepts

Software Engineer Interview Questions & Answers

user image Sarath Kumar Sekar

posted on 9 Feb 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basics questions regarding swift

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 the Duplicate Number Problem Statement Given an integer arra ... 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

Software Engineer Interview Questions & Answers

user image Vara prasad Goudu

posted on 8 Sep 2023

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 Aug 2023. 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 

(1 Question)

  • Q1. Basics and medium questions related to tech stack.
Round 3 - Coding Test 

Medium and hard questions on tech stack and live coding

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

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

Round 2 - 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

Robosoft Technologies interview questions for designations

 Software Engineer Trainee

 (3)

 Senior Software Engineer

 (2)

 Associate Software Engineer

 (1)

 Software Engineer II

 (1)

 Software Testing Engineer

 (1)

 Software Developer

 (2)

 Software Developer Trainee

 (1)

 QA Engineer

 (2)

Software Engineer Interview Questions & Answers

user image Bhumika Barad

posted on 21 Jun 2024

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

I applied via Recruitment Consulltant and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Fontend developer have question about HTML, CSS and Javascript

Round 2 - Technical 

(2 Questions)

  • Q1. About project handling
  • Q2. About routing and deployments
Round 3 - HR 

(2 Questions)

  • Q1. About career goals
  • Q2. About family and future plans

Interview Preparation Tips

Interview preparation tips for other job seekers - Need a strong knowledge about project handling and deployments

Get interview-ready with Top Robosoft Technologies Interview Questions

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

I applied via Referral and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. React and JavaScript basics
  • Q2. Explain the concept of Virtual DOM
  • Ans. 

    Virtual DOM is a lightweight copy of the actual DOM that allows for efficient updates and rendering in web applications.

    • Virtual DOM is a concept used in frameworks like React to improve performance by minimizing direct manipulation of the actual DOM.

    • When changes are made to the virtual DOM, a comparison is done with the actual DOM to identify the minimal updates needed, reducing re-renders.

    • This approach helps in optimi...

  • Answered by AI
  • Q3. JavaScript Map, filter method

Skills evaluated in this interview

Software Engineer Jobs at Robosoft Technologies

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

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

Round 1 - Technical 

(1 Question)

  • Q1. About List, Array, Map depth
Round 2 - Technical 

(1 Question)

  • Q1. Kotlin related questions
Round 3 - HR 

(1 Question)

  • Q1. Asked about previous experience

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.

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

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.

Robosoft Technologies Interview FAQs

How many rounds are there in Robosoft Technologies Software Engineer interview?
Robosoft Technologies interview process usually has 2-3 rounds. The most common rounds in the Robosoft Technologies interview process are Technical, Coding Test and Resume Shortlist.
How to prepare for Robosoft Technologies 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 Robosoft Technologies. The most common topics and skills that interviewers at Robosoft Technologies expect are AUTOSAR, Automation Testing, Device Testing, Integration Testing and MATLAB.
What are the top questions asked in Robosoft Technologies Software Engineer interview?

Some of the top questions asked at the Robosoft Technologies Software Engineer interview -

  1. Javascript is multi threaded or single thread...read more
  2. What is prototype in javascri...read more
  3. Reverse an array, get substring, eliminates 0 from ar...read more

Tell us how to improve this page.

Robosoft Technologies Software Engineer Interview Process

based on 8 interviews

2 Interview rounds

  • Technical Round
  • HR Round
View more
Robosoft Technologies Software Engineer Salary
based on 306 salaries
₹4.7 L/yr - ₹17.4 L/yr
18% more than the average Software Engineer Salary in India
View more details

Robosoft Technologies Software Engineer Reviews and Ratings

based on 51 reviews

3.2/5

Rating in categories

3.3

Skill development

3.2

Work-life balance

3.0

Salary

2.6

Job security

3.1

Company culture

2.8

Promotions

3.0

Work satisfaction

Explore 51 Reviews and Ratings
Software Engineer (Model-Based Testing)

Bangalore / Bengaluru

2-5 Yrs

₹ 3.8-20 LPA

Explore more jobs
Software Engineer
306 salaries
unlock blur

₹4.7 L/yr - ₹17.4 L/yr

Senior Software Engineer
288 salaries
unlock blur

₹8.2 L/yr - ₹29 L/yr

Associate Software Engineer
108 salaries
unlock blur

₹4 L/yr - ₹6.5 L/yr

Technical Lead
74 salaries
unlock blur

₹13.8 L/yr - ₹36 L/yr

Software Developer
44 salaries
unlock blur

₹5.2 L/yr - ₹10 L/yr

Explore more salaries
Compare Robosoft Technologies with

Persistent Systems

3.5
Compare

TCS

3.7
Compare

LTIMindtree

3.8
Compare

Mphasis

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