Upload Button Icon Add office photos

Filter interviews by

Robosoft Technologies Interview Questions and Answers

Updated 26 Jan 2025

Robosoft Technologies Interview Experiences

Popular Designations

44 interviews found

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.

Top Robosoft Technologies Software Engineer Interview Questions and Answers

Q1. Javascript is multi threaded or single threaded?
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (210)

I applied via Campus Placement and was interviewed in Sep 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Searching, sorting, datastructures

Interview Preparation Tips

Interview preparation tips for other job seekers - It was very good experience

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 9 Jan 2023

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

I applied via Referral and was interviewed before Jan 2022. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is API testing and postman
  • Ans. 

    API testing is a type of software testing that involves testing APIs directly, while Postman is a popular tool used for API testing.

    • API testing involves testing the functionality, reliability, performance, and security of APIs

    • Postman is a tool that allows developers to test APIs by sending requests and receiving responses

    • Postman can be used to automate API testing, create test suites, and generate documentation

    • API test...

  • Answered by AI
  • Q2. What is Bug life cycle
  • Ans. 

    Bug life cycle refers to the stages a bug goes through from discovery to resolution.

    • Bug is discovered and reported

    • Bug is assigned to a developer

    • Developer reproduces the bug

    • Developer fixes the bug

    • Bug is retested by QA

    • Bug is closed if fixed or reopened if not

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company. As of now remote work. Multiple projects

Skills evaluated in this interview

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (9)

I applied via Approached by Company and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - HR 

(3 Questions)

  • Q1. Share details of your previous job.
  • Q2. What is your family background?
  • Q3. What are your salary expectations?
Round 2 - One-on-one 

(1 Question)

  • Q1. Azure AD, .net core dependency injection, OAuth2.0, Caching technics, Angular life hooks, Data binding and data sharing technics

Interview Preparation Tips

Interview preparation tips for other job seekers - Keeps your basics concepts clear on your techy stack

Technical Lead Interview Questions asked at other Companies

Q1. 1. Explain 5 mins the flow from requirement analysis to production deployment and tools used in the process. 2. What is auto-scaling in a microservices architecture? 3. Difference between micro-service and serverless. 4. If you were going t... read more
View answer (4)

Robosoft Technologies interview questions for popular designations

 Software Engineer

 (11)

 Technical Lead

 (3)

 Software Engineer Trainee

 (3)

 Software Developer

 (2)

 Senior Software Engineer

 (2)

 Android Developer

 (2)

 QA Engineer

 (2)

 Senior Engineer

 (1)

I applied via Approached by Company and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - HR 

(3 Questions)

  • Q1. Share details of your previous job.
  • Q2. What is your family background?
  • Q3. What are your salary expectations?
Round 2 - One-on-one 

(1 Question)

  • Q1. Azure AD, .net core dependency injection, OAuth2.0, Caching technics, Angular life hooks, Data binding and data sharing technics

Interview Preparation Tips

Interview preparation tips for other job seekers - Keeps your basics concepts clear on your applied tech stack

Technical Lead Interview Questions asked at other Companies

Q1. 1. Explain 5 mins the flow from requirement analysis to production deployment and tools used in the process. 2. What is auto-scaling in a microservices architecture? 3. Difference between micro-service and serverless. 4. If you were going t... read more
View answer (4)

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

Top Robosoft Technologies Software Engineer Interview Questions and Answers

Q1. Javascript is multi threaded or single threaded?
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (210)

Interview Questionnaire 

9 Questions

  • Q1. What is the use of static keyword?
  • Ans. 

    Static keyword is used to create class-level variables and methods that can be accessed without creating an instance of the class.

    • Static variables are shared among all instances of a class

    • Static methods can be called without creating an object of the class

    • Static blocks are used to initialize static variables

    • Static import is used to import static members of a class

  • Answered by AI
  • Q2. What is generics?
  • Ans. 

    Generics is a feature in Java that allows classes and methods to be parameterized by type.

    • Generics provide type safety and reduce code duplication.

    • They allow for the creation of reusable code.

    • Example: List myList = new ArrayList();

    • Example: public class MyClass { ... }

    • Example: public void myMethod(T t) { ... }

Answered by AI
  • Q3. Indexing in SQL?
  • Ans. 

    Indexing in SQL is a technique to improve query performance by creating indexes on columns.

    • Indexes are created on columns that are frequently used in WHERE, JOIN, and ORDER BY clauses.

    • Indexes can be created using CREATE INDEX statement.

    • Indexes can be unique or non-unique.

    • Indexes can be clustered or non-clustered.

    • Indexes can be dropped using DROP INDEX statement.

  • Answered by AI
  • Q4. Oops concepts
  • Q5. Difference between abstract class and interface
  • Ans. 

    Abstract class can have implementation while interface only has method signatures.

    • Abstract class can have constructors while interface cannot.

    • A class can implement multiple interfaces but can only extend one abstract class.

    • Abstract classes can have non-abstract methods while interfaces cannot.

    • Abstract classes can have instance variables while interfaces cannot.

    • Interfaces can have default methods while abstract classes

  • Answered by AI
  • Q6. Difference between list and set
  • Ans. 

    List is an ordered collection while Set is an unordered collection of unique elements.

    • List allows duplicate elements while Set does not.

    • List maintains the insertion order while Set does not guarantee any order.

    • List is implemented using ArrayList, LinkedList, etc. while Set is implemented using HashSet, TreeSet, etc.

    • List has methods like get(), set(), add(), remove(), etc. while Set has methods like add(), remove(), con

  • Answered by AI
  • Q7. What the use of spring boot
  • Ans. 

    Spring Boot is a framework for building standalone, production-grade Spring-based applications.

    • Simplifies the process of creating and deploying Spring-based applications

    • Provides a range of pre-configured features and dependencies

    • Enables rapid development and prototyping

    • Supports a variety of deployment options, including cloud-based platforms

    • Offers a range of plugins and tools for development and testing

    • Improves develop

  • Answered by AI
  • Q8. Joins in sql
  • Ans. 

    Joins are used in SQL to combine data from two or more tables based on a related column between them.

    • Types of joins include inner join, left join, right join, and full outer join

    • Inner join returns only the matching rows from both tables

    • Left join returns all rows from the left table and matching rows from the right table

    • Right join returns all rows from the right table and matching rows from the left table

    • Full outer join...

  • Answered by AI
  • Q9. About projects
  • Skills evaluated in this interview

    Top Robosoft Technologies Java Developer Interview Questions and Answers

    Q1. What is the use of static keyword?
    View answer (1)

    Java Developer Interview Questions asked at other Companies

    Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
    View answer (4)

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

    Interview Questionnaire 

    5 Questions

    • Q1. Questions related to API testing .CURD commands
    • Q2. Manual testing scenario based questions
    • Q3. Code to print Fibonacci and Prime number
    • Ans. 

      Code to print Fibonacci and Prime number

      • For Fibonacci, use a loop to generate the sequence and print each number

      • For Prime numbers, use a loop to check if each number is divisible by any number less than itself

      • Combine the two loops to print both sequences

    • Answered by AI
    • Q4. Selenium Questions based on locators .
    • Q5. Different types of Waits on selenium
    • Ans. 

      Different types of waits in Selenium include Implicit Wait, Explicit Wait, Fluent Wait, and Thread.sleep()

      • Implicit Wait: waits for a certain amount of time before throwing an exception if the element is not found

      • Explicit Wait: waits for a certain condition to occur before proceeding with the next step

      • Fluent Wait: waits for a certain condition to occur with a polling frequency and timeout

      • Thread.sleep(): pauses the execu

    • Answered by AI

    Skills evaluated in this interview

    Software Testing Engineer Interview Questions asked at other Companies

    Q1. Maximal AND Subsequences Problem Given an array consisting of N integers, your task is to determine how many k-element subsequences of the given array exist where the bitwise AND of the subsequence's elements is maximal. Your objective is t... read more
    View answer (1)

    I applied via Campus Placement and was interviewed before Aug 2021. There were 5 interview rounds.

    Round 1 - Aptitude Test 

    Logical and numerical aptitude

    Round 2 - Coding Test 

    Writing code to given problems related to time, strong

    Round 3 - Case Study 

    Group discussion on given topic.

    Round 4 - Technical 

    (1 Question)

    • Q1. Questions related to stack, Coding questions on- - find a number is even or odd without arithmetic operator - traverse a stack - find the occurances of a char in string
    Round 5 - HR 

    (1 Question)

    • Q1. The formal HR round about you and your background

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Be thorugh with the coding basics. Practice coding questions on string,

    Software Engineer Trainee Interview Questions asked at other Companies

    Q1. Palindromic Linked List Problem Statement Given a singly linked list of integers, determine if it is a palindrome. Return true if it is a palindrome, otherwise return false. Example: Input: 1 -> 2 -> 3 -> 2 -> 1 -> NULL Outpu... read more
    View answer (1)

    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.

    Top Robosoft Technologies Software Engineer Interview Questions and Answers

    Q1. Javascript is multi threaded or single threaded?
    View answer (1)

    Software Engineer Interview Questions asked at other Companies

    Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
    View answer (210)

    Robosoft Technologies Interview FAQs

    How many rounds are there in Robosoft Technologies interview?
    Robosoft Technologies interview process usually has 2-3 rounds. The most common rounds in the Robosoft Technologies interview process are Technical, HR and Aptitude Test.
    How to prepare for Robosoft Technologies 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 Javascript, Java, Python, SQL and AWS.
    What are the top questions asked in Robosoft Technologies interview?

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

    1. What is the Java Selenium code to validate the new price and old price of mobil...read more
    2. How will you validate any API through Rest assure, write a script for...read more
    3. What is the use of static keywo...read more
    How long is the Robosoft Technologies interview process?

    The duration of Robosoft Technologies interview process can vary, but typically it takes about less than 2 weeks to complete.

    Tell us how to improve this page.

    Robosoft Technologies Interview Process

    based on 37 interviews

    Interview experience

    4.1
      
    Good
    View more

    Interview Questions from Similar Companies

    TCS Interview Questions
    3.7
     • 10.5k Interviews
    Tech Mahindra Interview Questions
    3.5
     • 3.8k Interviews
    LTIMindtree Interview Questions
    3.8
     • 2.9k Interviews
    Mphasis Interview Questions
    3.4
     • 796 Interviews
    Coforge Interview Questions
    3.3
     • 519 Interviews
    Cyient Interview Questions
    3.7
     • 288 Interviews
    View all

    Robosoft Technologies Reviews and Ratings

    based on 283 reviews

    3.4/5

    Rating in categories

    3.3

    Skill development

    3.3

    Work-life balance

    3.3

    Salary

    2.9

    Job security

    3.2

    Company culture

    3.0

    Promotions

    3.2

    Work satisfaction

    Explore 283 Reviews and Ratings
    Software Engineer
    301 salaries
    unlock blur

    ₹4.7 L/yr - ₹15 L/yr

    Senior Software Engineer
    275 salaries
    unlock blur

    ₹8.5 L/yr - ₹29 L/yr

    Associate Software Engineer
    108 salaries
    unlock blur

    ₹4 L/yr - ₹7 L/yr

    Technical Lead
    76 salaries
    unlock blur

    ₹11 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

    ITC Infotech

    3.6
    Compare

    CMS IT Services

    3.1
    Compare

    KocharTech

    3.9
    Compare

    Xoriant

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