Upload Button Icon Add office photos

Filter interviews by

Robosoft Technologies Interview Questions, Process, and Tips

Updated 26 Jan 2025

Top Robosoft Technologies Interview Questions and Answers

View all 39 questions

Robosoft Technologies Interview Experiences

Popular Designations

44 interviews found

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

I was interviewed in Dec 2024.

Round 1 - Technical 

(7 Questions)

  • Q1. What is data-driven testing?
  • Ans. 

    Data-driven testing is a testing methodology where test input and output values are stored in data files or databases.

    • Test cases are designed based on input and output data stored in external files or databases.

    • Allows for easy maintenance and scalability of test cases by separating test data from test scripts.

    • Helps in reusability of test scripts with different sets of data.

    • Commonly used in automation testing to perform...

  • Answered by AI
  • Q2. Difference between HashMap and HashTable
  • Ans. 

    HashMap is non-synchronized and allows null values, while HashTable is synchronized and does not allow null values.

    • HashMap is non-synchronized, meaning it is not thread-safe, while HashTable is synchronized and thread-safe.

    • HashMap allows null values for both keys and values, while HashTable does not allow null keys or values.

    • HashMap is generally preferred for non-thread-safe applications, while HashTable is used in mul...

  • Answered by AI
  • Q3. What do DependsOn Method do in TestNG
  • Ans. 

    DependsOn Method in TestNG is used to specify the methods that this method depends on to run successfully.

    • Allows to specify the methods that need to be executed before the current method

    • If any of the methods specified in DependsOn fails, the current method will be skipped

    • Helps in maintaining the order of test methods execution

  • Answered by AI
  • Q4. What is a content type mismatch in an API?
  • Ans. 

    Content type mismatch in an API occurs when the expected content type of a request or response does not match the actual content type.

    • Occurs when the content type specified in the request headers does not match the content type of the data being sent or received

    • Can lead to errors in processing the data or displaying it correctly

    • For example, sending JSON data with a content type of 'application/xml' in the request heade

  • Answered by AI
  • Q5. What is the Java Selenium code to validate the new price and old price of mobile phones on Amazon?
  • Ans. 

    Use Java Selenium code to validate new and old prices of mobile phones on Amazon.

    • Use WebDriver to open Amazon website

    • Locate the elements for new and old prices using XPath or CSS selectors

    • Get the text of both elements and compare them to validate

  • Answered by AI
  • Q6. Write a Java program for generating permutations and combinations of any given string
  • Ans. 

    Java program to generate permutations and combinations of a given string

    • Use recursion to generate permutations and combinations

    • Create a function to swap characters in the string

    • Use a HashSet to store unique permutations and combinations

  • Answered by AI
  • Q7. How will you validate any API through Rest assure, write a script for it
  • Ans. 

    Validating APIs using Rest Assured involves writing scripts to send requests and verify responses.

    • Use Rest Assured library to send HTTP requests and validate responses

    • Write test scripts using given(), when(), then() methods to set up request, send request, and validate response

    • Verify status code, response body, headers, etc. in the script

    • Use assertions to check expected values against actual values

  • Answered by AI

Top Robosoft Technologies Automation Engineer Interview Questions and Answers

Q1. What is the Java Selenium code to validate the new price and old price of mobile phones on Amazon?
View answer (1)

Automation Engineer Interview Questions asked at other Companies

Q1. 16) What is modbus ? Types of modbus? How many slaves we can connect to one master
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I was interviewed in Oct 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. React Coding Question
  • Q2. React Hooks and Life Cycle
Round 2 - Technical 

(3 Questions)

  • Q1. How to Improve Performance of a Web application
  • Ans. 

    Improving web application performance involves optimizing code, reducing network requests, and utilizing caching techniques.

    • Optimize code by removing unnecessary code, using efficient algorithms, and minimizing DOM manipulation.

    • Reduce network requests by combining files, using asynchronous loading, and implementing lazy loading.

    • Utilize caching techniques such as browser caching, server-side caching, and CDN caching to

  • Answered by AI
  • Q2. What are all the things you take care when you start a new project
  • Ans. 

    When starting a new project, I focus on planning, setting up the environment, defining requirements, choosing technologies, and establishing coding standards.

    • Plan the project scope and requirements

    • Set up the development environment

    • Choose the appropriate technologies and frameworks

    • Establish coding standards and best practices

    • Define project timelines and milestones

  • Answered by AI
  • Q3. Old Projects and Responsibilites

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Hands on Coding on React and Even syntax, they will except exact output

Skills evaluated in this interview

React Js Frontend Developer Interview Questions asked at other Companies

Q1. 1. What is difference between abstract class and interface ?
View answer (1)

Software Engi Interview Questions & Answers

user image Bhumika Barad

posted on 4 Jul 2024

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

I applied via Recruitment Consulltant and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

30 min test about core concept and some code snippets

Round 2 - Technical 

(2 Questions)

  • Q1. About project structure and folder names
  • Q2. About specific domain and strategy
Round 3 - HR 

(2 Questions)

  • Q1. About family and location
  • Q2. About previous company

Software Engi Interview Questions asked at other Companies

Q1. A design pattern where a class is only created one instance at runtime.
View answer (1)

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 6 Jan 2025

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

(1 Question)

  • Q1. Basic question on java and selenium

Interview Preparation Tips

Interview preparation tips for other job seekers - nice exp for first round with some basic questions on selenium

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)

Robosoft Technologies interview questions for popular designations

 Software Engineer

 (11)

 Software Engineer Trainee

 (3)

 Technical Lead

 (3)

 Android Developer

 (2)

 QA Engineer

 (2)

 Senior Software Engineer

 (2)

 Software Developer

 (2)

 Assistant Manager

 (1)

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

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 (170)

Get interview-ready with Top Robosoft Technologies Interview Questions

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

5 rounds
1. Aptitude
2. Questions based on technology,
3. Basics Of programming language,
4. Data structure
5. Algorithms

Round 2 - Coding Test 

Programming questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice and exicited

Softwaretest Engineer Interview Questions asked at other Companies

Q1. What is boundary value analysis? How do u perform boundary value testing for User ID & Password textfields in login page?
View answer (2)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Have you worked in travel domain?
  • Q2. Have you handled multiple projects
  • Q3. Can you work in US shift?

Interview Preparation Tips

Interview preparation tips for other job seekers - share what have you done in the past and aligh with JD.

Project Manager Interview Questions asked at other Companies

Q1. What is success & what is failure to you? How do you handle failure? - not much interviewer asks such questions, but I believe these are very important questions, if you want to succeed.
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

General aptitude test and one to one questionnaire

Round 2 - HR 

(2 Questions)

  • Q1. How was your previous employment experience
  • Ans. 

    My previous employment experience was in a fast-paced tech company where I provided technical support for various software products.

    • Provided technical support for software products to customers via phone, email, and chat

    • Troubleshooted and resolved technical issues reported by customers

    • Collaborated with cross-functional teams to escalate and resolve complex technical issues

    • Created and maintained documentation for troubl

  • Answered by AI
  • Q2. Family background

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company

Support Engineer Interview Questions asked at other Companies

Q1. How to handle escalations/ your approach to solve any issues/ why do you want to join support when already you are working on development
View answer (2)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Referral and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Java coding questions

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Hirist and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic Questions on Android, oops and Kotlin.
Round 2 - One-on-one 

(1 Question)

  • Q1. Asked me about my past Projects.

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join this company. They Don't have projects. Sudden layoff.

Android Developer Interview Questions asked at other Companies

Q1. Cube Sum Pairs Problem Statement Given a positive integer N, find the number of ways to express N as a sum of cubes of two integers, A and B, such that: N = A^3 + B^3 Ensure you adhere to the following conditions: A must be greater than or... read more
Add answer

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.9k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 810 Interviews
Coforge Interview Questions
3.3
 • 520 Interviews
Cyient Interview Questions
3.6
 • 284 Interviews
View all

Robosoft Technologies Reviews and Ratings

based on 278 reviews

3.4/5

Rating in categories

3.4

Skill development

3.3

Work-life balance

3.3

Salary

2.9

Job security

3.3

Company culture

3.0

Promotions

3.2

Work satisfaction

Explore 278 Reviews and Ratings
Software Engineer
302 salaries
unlock blur

₹4.7 L/yr - ₹15 L/yr

Senior Software Engineer
278 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
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

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