Upload Button Icon Add office photos

Filter interviews by

Robosoft Software Developer Interview Questions and Answers

Updated 13 Jun 2024

Robosoft Software Developer Interview Experiences

1 interview found

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

(2 Questions)

  • Q1. Asked to write Sql query
  • Ans. 

    SQL query to retrieve specific data from a database table based on given conditions.

    • Use SELECT statement to specify columns to retrieve. Example: SELECT name, age FROM users;

    • Use WHERE clause to filter results. Example: SELECT * FROM orders WHERE status = 'shipped';

    • Use JOIN to combine rows from two or more tables based on a related column. Example: SELECT users.name, orders.amount FROM users JOIN orders ON users.id = or...

  • Answered by AI
  • Q2. Java basic concept explanation and spring boot related questions

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Robosoft?
Ask anonymously on communities.

Interview questions from similar companies

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

It was very good

  • Q1. 

    Find the Longest Palindromic Substring

    Given a string ‘S’ composed of lowercase English letters, your task is to identify the longest palindromic substring within ‘S’.

    If there are multiple longest palin...

  • Ans. 

    Find the longest palindromic substring in a given string, returning the rightmost one if multiple exist.

    • Use dynamic programming to check if substrings are palindromes

    • Iterate through the string and expand around each character to find palindromic substrings

    • Keep track of the longest palindromic substring found

  • Answered by AI
  • Q2. 

    Minimum Sum in Matrix Problem Statement

    You are given a 2D matrix 'ARR' of size 'N x 3' with integers, where 'N' is the number of rows. Your task is to compute the smallest sum achievable by selecting one...

  • Ans. 

    Find the smallest sum achievable by selecting one element from each row of a 2D matrix, following certain constraints.

    • Iterate through each row and calculate the minimum sum by selecting elements that do not violate the constraints.

    • Keep track of the minimum sum achieved so far.

    • Avoid selecting elements directly beneath previously selected elements.

    • Example: For input [[1, 2, 3], [4, 8, 6], [1, 5, 3]], the optimal selectio...

  • Answered by AI
Round 2 - Face to Face 

Round duration - 1 hour
Round difficulty - Medium

It was a good interview

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Techno India NJR Institute of Technology. I applied for the job as SDE - 1 in IndoreEligibility criteria7 cgpaTata Consultancy Services (TCS) interview preparation:Topics to prepare for the interview - I have done a rigourous training on Data Structure and Algorithms. It really helped me a lot to excel in life. Also I did vocational courses which enhanced my personality. I did analytical mindset training with problem solving methodologies. The hands on training on Python and Unix helped me a lot.Time required to prepare for the interview - 1 yearInterview preparation tips for other job seekers

Tip 1 : Daily practice programming
Tip 2 : Work with honesty
Tip 3 : Do with utmost dedication

Application resume tips for other job seekers

Tip 1 : Write with honesty
Tip 2 : Mention about your achievements

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Rakuten
Q2. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Amazon
Q3. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more

I applied via Company Website and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Tell me about yourself and project
  • Q2. Ask to do fibonacci problem

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and practise yourself againa and again

I appeared for an interview in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

4 Questions which were of Easy, Medium, and Hard level.

  • Q1. 

    Lowest Common Ancestor of a Binary Tree III

    The structure of a binary tree has been modified so that each node includes a reference to its parent node.

    Problem Statement

    You are provided with two nodes,...

  • Ans. 

    This question is about finding the lowest common ancestor of two nodes in a binary tree with parent references.

    • Traverse from the given nodes to their respective root nodes and store the paths in two separate lists.

    • Compare the two lists and find the last common node.

    • Return the last common node as the lowest common ancestor.

  • Answered by AI
  • Q2. 

    Maximum Subarray Problem Statement

    Ninja has been given an array, and he wants to find a subarray such that the sum of all elements in the subarray is maximum.

    A subarray 'A' is considered greater than a...

  • Ans. 

    The problem is to find a subarray with the maximum sum in a given array.

    • Iterate through the array and keep track of the maximum sum and the current sum.

    • If the current sum becomes negative, reset it to 0.

    • Update the maximum sum if the current sum is greater.

    • Also keep track of the start and end indices of the subarray with the maximum sum.

    • Return the subarray using the start and end indices.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 50 Minutes
Round difficulty - Easy

  • Q1. 

    Next Greater Element Problem Statement

    Given a list of integers of size N, your task is to determine the Next Greater Element (NGE) for every element. The Next Greater Element for an element X is the firs...

  • Ans. 

    The task is to find the next greater element for each element in an array.

    • Iterate through the array from right to left.

    • Use a stack to keep track of the elements that have a greater element to their right.

    • For each element, pop elements from the stack until a greater element is found or the stack is empty.

    • If a greater element is found, it is the next greater element for the current element.

    • If the stack becomes empty, the...

  • Answered by AI
  • Q2. 

    Trapping Rain Water Problem Statement

    You are given a long type array/list ARR of size N, representing an elevation map. The value ARR[i] denotes the elevation of the ith bar. Your task is to determine th...

  • Ans. 

    The question asks to find the total amount of rainwater that can be trapped in the given elevation map.

    • Iterate through the array and find the maximum height on the left and right side of each bar.

    • Calculate the amount of water that can be trapped at each bar by taking the minimum of the maximum heights on both sides and subtracting the height of the bar.

    • Sum up the amount of water trapped at each bar to get the total amo...

  • Answered by AI
Round 3 - HR 

Round duration - 30 Minutes
Round difficulty - Easy

It is just a formality round, asked basic questions like relocation and joining date etc

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BengaluruEligibility criteriawith resumeSwiggy interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Puzzles, Project, Mock Interviews, etcTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Be good with all data structures and algorithms
Tip 2 : Able to explain your projects well 
Tip 3 : focus on basics

Application resume tips for other job seekers

Tip 1 : Try to make a single-page resume. 
Tip 2 : Don't write unnecessary details like hobbies, family, etc.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com

Interview Questionnaire 

2 Questions

  • Q1. Open personal email in some remote desktop
  • Q2. Never ever do it.

Interview Preparation Tips

Interview preparation tips for other job seekers - Scammers Alert : Online technical test conducted by 3rd party (BIM Era) is terrible.
They ask us to connect to their remote desktop via AnyDesk and ask us to login and open our personal email id in the remote desktop.

Even LnT HR asserts on doing the same. - PRIVACY RIPPED.

As for the LnT team is considered, I would like to ask if LnT company policies provides permission for their employees, if they can login with their work credentials and open work email outside company provided computers on some random Remote Desktops.
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is bundling
  • Ans. 

    Bundling is the process of combining multiple files or resources into a single file for more efficient delivery.

    • Bundling helps reduce the number of HTTP requests needed to load a web page.

    • It can improve performance by reducing latency and bandwidth usage.

    • Common tools for bundling in web development include Webpack and Parcel.

  • Answered by AI
  • Q2. What is minification
  • Ans. 

    Minification is the process of removing unnecessary characters from code without affecting its functionality.

    • Minification reduces file size by removing comments, whitespace, and renaming variables.

    • It helps improve website loading speed and performance.

    • Example: Minified JavaScript code: var x=document.getElementById('demo');x.innerHTML='Hello World';

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement

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 

It was basic test of maths and aptitude.

Round 3 - Coding Test 

This has basic coding such as fibonacci series, problem solving, stack, queue

Round 4 - One-on-one 

(1 Question)

  • Q1. Tell me about yourself was first question, then carry on with your project showcase

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared and confident with basic coding and data structures. Also prepare your projects
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Jul 2023. There were 2 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 - Basic interview 

(4 Questions)

  • Q1. Introducing yourself...
  • Ans. Hello let me start by thanking you for this opportunity .. My name is Urvashi Chauhan I am From jansath muzaffarnagar . My father's name is mr omveer Singh . He is a farmer and my mother name is ms babita Devi . She is a housewife. I completed my 10 , 12 both are same college that's name Gomti kanya inter college jansath muzaffarnagar. I got 80 % in 10 and 65 % in 12. Currently I completed I BTech by CSE From s D colle...
  • Answered Anonymously
  • Q2. What is your strength
  • Ans. My strength is that my family supporting me..
  • Answered Anonymously
  • Q3. What's your weeknees
  • Ans. My weakness is that lest i fail
  • Answered Anonymously
  • Q4. What's the field that you have interested?
  • Ans. Web designing..
  • Answered Anonymously

Interview Preparation Tips

Topics to prepare for TCS iON Software Developer interview:
  • Web Designing
Interview preparation tips for other job seekers - Because I am a fresher soo you giveme any job .
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Mar 2024.

Round 1 - Aptitude Test 

Average type of questions

Round 2 - HR 

(2 Questions)

  • Q1. They were very friendly
  • Q2. Where do you see yourself in 5 years

Interview Preparation Tips

Interview preparation tips for other job seekers - Concentrate on your practice
Interview experience
4
Good
Difficulty level
Easy
Process Duration
6-8 weeks
Result
No response

I applied via Walk-in and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic apt, advanced apt - 90 min

Round 2 - Technical 

(4 Questions)

  • Q1. What is Maven? where it used ? what it use case ?
  • Ans. 

    Maven is a build automation tool used primarily for Java projects to manage dependencies, build processes, and project documentation.

    • Maven is used to manage project dependencies by automatically downloading required libraries from repositories.

    • It simplifies the build process by providing a standard way to build, test, and package projects.

    • Maven uses a project object model (POM) file to define project structure, depende...

  • Answered by AI
  • Q2. Spring (again based on the resume)
  • Q3. Simple Java Program?
  • Q4. JDBC ? HOW WE USE IT ?
  • Ans. 

    JDBC is a Java API for connecting and executing SQL queries on a database.

    • JDBC stands for Java Database Connectivity.

    • It allows Java programs to interact with databases.

    • We use JDBC by loading the driver, establishing a connection, creating a statement, executing queries, and handling results.

    • Example: Class.forName("com.mysql.jdbc.Driver"); Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/databas...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The Question are mostly based on what we have in our resume. so they asked the question accordingly what put it in my resume. The TR, MR, HR conducted at same time.

Skills evaluated in this interview

Robosoft Interview FAQs

How many rounds are there in Robosoft Software Developer interview?
Robosoft interview process usually has 1 rounds. The most common rounds in the Robosoft interview process are Technical.
What are the top questions asked in Robosoft Software Developer interview?

Some of the top questions asked at the Robosoft Software Developer interview -

  1. Asked to write Sql qu...read more
  2. Java basic concept explanation and spring boot related questi...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Robosoft Software Developer Salary
based on 4 salaries
₹13 L/yr - ₹14 L/yr
36% more than the average Software Developer Salary in India
View more details
Senior Software Engineer
15 salaries
unlock blur

₹8 L/yr - ₹25.5 L/yr

Software Engineer
10 salaries
unlock blur

₹5 L/yr - ₹12.5 L/yr

Technical Lead
5 salaries
unlock blur

₹18 L/yr - ₹25 L/yr

Senior Test Engineer
5 salaries
unlock blur

₹10 L/yr - ₹18 L/yr

Software Developer
4 salaries
unlock blur

₹13 L/yr - ₹14 L/yr

Explore more salaries
Compare Robosoft with

Quess

3.8
Compare

ITC Infotech

3.7
Compare

Test Yantra Software Solutions

3.0
Compare

Swiggy

3.7
Compare
write
Share an Interview