Upload Button Icon Add office photos

Filter interviews by

Raja Software Labs Interview Questions, Process, and Tips

Updated 16 Jan 2025

Top Raja Software Labs Interview Questions and Answers

View all 37 questions

Raja Software Labs Interview Experiences

Popular Designations

43 interviews found

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

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

Round 1 - Coding Test 

Just plain leetcode medium questions

Top Raja Software Labs Software Engineer Interview Questions and Answers

Q1. sort a binary array using one traversal and no extra space
View answer (2)

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 (203)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(5 Questions)

  • Q1. Tell me about ypur self
  • Q2. What do you know about medicine and its distribution in worldwide
  • Q3. Why should we hire you
  • Q4. Why there is currier gap in your CV
  • Q5. What makes you unique

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and attend the interview

Billing Executive Interview Questions asked at other Companies

Q1. If a customer doesn't have a GST, how will you ship the goods him...?
View answer (3)
Raja Software Labs Interview Questions and Answers for Freshers
illustration image
Interview experience
3
Average
Difficulty level
-
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Aptitude Test 

Basic coding question on array and string.

Interview Preparation Tips

Interview preparation tips for other job seekers - Do coding practices as much you can

Top Raja Software Labs Software Developer Interview Questions and Answers

Q1. 1 print string without taking repeating characters eg helper - helpr
View answer (2)

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 (42)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

5 coding questions on google docs..duration 1 hour

Round 2 - Technical 

(1 Question)

  • Q1. Questions on string and array manipulation, leap year identification, second largest element of array, etc

Top Raja Software Labs Software Developer Interview Questions and Answers

Q1. 1 print string without taking repeating characters eg helper - helpr
View answer (2)

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

Raja Software Labs interview questions for popular designations

 Software Engineer

 (15)

 Software Developer

 (15)

 Developer

 (2)

 Software Engineer Trainee

 (1)

 Software Development Engineer

 (1)

 Java Developer

 (1)

 Billing Executive

 (1)

 Android Developer

 (1)

Software Engineer Interview Questions & Answers

user image Siddheshwar Kendre

posted on 22 Oct 2023

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Normal array and string questions
Round 3 - Technical 

(1 Question)

  • Q1. Array and string

Top Raja Software Labs Software Engineer Interview Questions and Answers

Q1. sort a binary array using one traversal and no extra space
View answer (2)

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

Get interview-ready with Top Raja Software Labs Interview Questions

I applied via Campus Placement and was interviewed in Jul 2022. There were 5 interview rounds.

Round 1 - Aptitude Test 

Basic Aptitude questions mainly on quantitative

Round 2 - Coding Test 

Google docs was shared which has 5 coding questions mainly on array and string.

Round 3 - Technical 

(4 Questions)

  • Q1. Interviewer introduced himself , then told the flow of interview ie. 2 coding question will be asked then he asked to introduce myself
  • Q2. Occurance of characters in string
  • Ans. 

    The question is about finding the occurrence of characters in a string.

    • Iterate through the string and count the occurrence of each character.

    • Use a hash table to store the count of each character.

    • Consider the case sensitivity of the characters.

    • Handle special characters and spaces as required.

  • Answered by AI
  • Q3. Angle between hour and minute hand of clock at a given time
  • Ans. 

    The angle between hour and minute hand of a clock at a given time.

    • Calculate the angle made by the hour hand with 12 o'clock

    • Calculate the angle made by the minute hand with 12 o'clock

    • Find the difference between the two angles

    • If the difference is greater than 180 degrees, subtract it from 360 degrees

    • The result is the angle between the hour and minute hand

  • Answered by AI
  • Q4. Both question I was able to solve quickly interview was sheduled for one hour but i solved questions in 23 minutes so interview ended. I was called for second techinal round
Round 4 - Technical 

(4 Questions)

  • Q1. Same format as above introduction and 2 coding questions
  • Q2. 1 Integer to roman it took me some time to solve the question
  • Q3. 2 given sum and we have to print all the subsequences in array with given sum
  • Ans. 

    Printing all the subsequences in an array with a given sum.

    • Use recursion to generate all possible subsequences.

    • Check if the sum of each subsequence is equal to the given sum.

    • Print the subsequences that satisfy the condition.

    • Time complexity: O(2^n).

  • Answered by AI
  • Q4. The interview took almost 45 minutes and i was able to solve both questions so i was selected for third round ie technical + HR
Round 5 - HR 

(5 Questions)

  • Q1. First introduction then as all rounds 2 coding questions and then HR questions were asked
  • Q2. 1 print string without taking repeating characters eg helper - helpr
  • Ans. 

    The task is to print a string without any repeating characters.

    • Iterate through the string and keep track of the characters seen so far.

    • If a character is already seen, skip it.

    • Otherwise, add it to the output string.

    • Return the output string.

  • Answered by AI
  • Q3. 2 sort array of 0s and 1s in only one loop solution was using two pointers
  • Ans. 

    Sort an array of 0s and 1s in one loop using two pointers.

    • Use two pointers, one starting from the beginning and the other from the end.

    • Swap the values at the pointers if the value at the beginning pointer is greater than the value at the end pointer.

    • Continue until the pointers meet in the middle.

    • Time complexity is O(n).

  • Answered by AI
  • Q4. I solved both the questions then questions were asked on projects
  • Q5. Difficulties in project how you learn new technology After two days I received mail and I was selected for software developer role

Interview Preparation Tips

Topics to prepare for Raja Software Labs Software Developer interview:
  • arrays
  • string
Interview preparation tips for other job seekers - - Practice questions on array and string
- Also see puzzles on GFG they are also asked frequently
- No need to revise DBMS , OS for RSL interviews only coding is necessary

Skills evaluated in this interview

Top Raja Software Labs Software Developer Interview Questions and Answers

Q1. 1 print string without taking repeating characters eg helper - helpr
View answer (2)

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

I applied via Campus Placement and was interviewed in Jun 2022. There were 6 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all Resume tips
Round 2 - Aptitude Test 

20 questions were given.
aptitude + simple coding output based.

Round 3 - Coding Test 

5 questions were shared on a doc file. We need to code them paste their solutions in the file. Level was easy to medium. Array-string based Questions.

Round 4 - Technical 

(3 Questions)

  • Q1. There Were 3 Technical rounds. In 1st Round Basic coding Questions were Asked on Array like find minimum angle between hour and minute hand. 0,1 array sort and there was another question too which I don't...
  • Q2. Find minimum angle between hour and minute hand.
  • Ans. 

    Find minimum angle between hour and minute hand.

    • Calculate the angle made by hour hand with 12 o'clock position and minute hand with 12 o'clock position.

    • Calculate the difference between the two angles.

    • If the difference is greater than 180 degrees, subtract it from 360 degrees to get the minimum angle.

  • Answered by AI
  • Q3. 0, 1 array sort (keep complexity low)
  • Ans. 

    Sort an array of 0s and 1s with low complexity.

    • Use two pointers, one at the beginning and one at the end of the array.

    • Swap 0s from the beginning with 1s from the end until the pointers meet.

    • Time complexity: O(n), space complexity: O(1).

  • Answered by AI
Round 5 - Technical 

(3 Questions)

  • Q1. Then on next day Technical Round 2 happened Same another Interviewer and same process. Round was 1 hour long. I was given a question and I had to solve it. I was not asked puzzles but some of my friends we...
  • Q2. Maximum span of 1 in a 0,1 array
  • Ans. 

    Find the maximum span of 1 in a 0,1 array.

    • Iterate through the array and keep track of the first and last occurrence of 1.

    • Calculate the difference between the last and first occurrence of 1.

    • Repeat the process for all 1's in the array and return the maximum difference.

  • Answered by AI
  • Q3. Upside down triangle pattern
Round 6 - Technical 

(3 Questions)

  • Q1. Next day Technical Round 3 This time my interviewer was a Senior Engineer Interview round was 1 hour+ I was given 2 coding questions then hr questions were asked. In hr they asked me a lot regarding my pro...
  • Q2. First non repeating Character
  • Ans. 

    Find the first non-repeating character in a string.

    • Create a hash table to store the frequency of each character in the string.

    • Iterate through the string and update the frequency in the hash table.

    • Iterate through the string again and return the first character with a frequency of 1.

  • Answered by AI
  • Q3. Sort a binary array using one traversal and no extra space
  • Ans. 

    Sort a binary array using one traversal and no extra space.

    • Use two pointers, one starting from the beginning and one from the end of the array.

    • Swap the elements if the left pointer points to 1 and the right pointer points to 0.

    • Continue traversing until the pointers meet in the middle.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just clear your basics and have a good command on easy to medium array string questions.
Mention only those things in resume which you really did.
prepare common puzzle questions from GFG or some other platform.

Skills evaluated in this interview

Top Raja Software Labs Software Engineer Interview Questions and Answers

Q1. sort a binary array using one traversal and no extra space
View answer (2)

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

I applied via Company Website and was interviewed in Sep 2022. There were 4 interview rounds.

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 Resume tips
Round 2 - Aptitude Test 

Basic Aptitude questions like quantitative and logical

Round 3 - Coding Test 

Programs have to written for given questions

Round 4 - Technical 

(2 Questions)

  • Q1. F2F interview programming questions were asked
  • Q2. Questions were asked about projects and technology used in project

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong enough in data structures and algorithms you can easily crack the interview

Top Raja Software Labs Software Engineer Interview Questions and Answers

Q1. sort a binary array using one traversal and no extra space
View answer (2)

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 (203)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement and was interviewed before Jan 2024. There were 2 interview rounds.

Round 1 - Coding Test 

5 questions written coding test
Basic question on string and array manipulation

Round 2 - Technical 

(1 Question)

  • Q1. 2nd smallest number
  • Ans. 

    Find the 2nd smallest number in an array of integers.

    • Sort the array in ascending order

    • Return the second element in the sorted array

  • Answered by AI

Top Raja Software Labs Software Engineer Interview Questions and Answers

Q1. sort a binary array using one traversal and no extra space
View answer (2)

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 (203)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Coding Test 

There were total 3 rounds and it consists of Basic array and string coding question

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice array and string medium level questions.

Android Developer Interview Questions asked at other Companies

Q1. BST Iterator Problem Statement You are tasked with creating a class named BSTIterator that acts as an iterator for the inorder traversal of a binary search tree. Implement the following functions: BSTIterator(Node root): A constructor that... read more
View answer (1)
Contribute & help others!
anonymous
You can choose to be anonymous

Raja Software Labs Interview FAQs

How many rounds are there in Raja Software Labs interview?
Raja Software Labs interview process usually has 2-3 rounds. The most common rounds in the Raja Software Labs interview process are Coding Test, Technical and Aptitude Test.
How to prepare for Raja Software Labs 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 Raja Software Labs. The most common topics and skills that interviewers at Raja Software Labs expect are Programming, Design, Development, Java and UI.
What are the top questions asked in Raja Software Labs interview?

Some of the top questions asked at the Raja Software Labs interview -

  1. 1 print string without taking repeating characters eg helper - he...read more
  2. angle between hour and minute hand of clock at a given t...read more
  3. 2 given sum and we have to print all the subsequences in array with given ...read more
How long is the Raja Software Labs interview process?

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

Recently Viewed

SALARIES

Hunt Property Infratech

SALARIES

Lifesight

INTERVIEWS

Accenture

No Interviews

LIST OF COMPANIES

MAHLE ANAND Filter Systems

Overview

INTERVIEWS

Cummins

No Interviews

SALARIES

Magna International

INTERVIEWS

Lifesight

5.6k top interview questions

SALARIES

Info Edge

SALARIES

Lifesight

REVIEWS

Raja Software Labs

No Reviews

Tell us how to improve this page.

Raja Software Labs Interview Process

based on 27 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 791 Interviews
View all

Raja Software Labs Reviews and Ratings

based on 97 reviews

3.5/5

Rating in categories

3.5

Skill development

2.7

Work-life balance

3.5

Salary

2.7

Job security

3.4

Company culture

3.2

Promotions

3.2

Work satisfaction

Explore 97 Reviews and Ratings
Software Engineer
245 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
61 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

IOS Developer
55 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Android Developer
19 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
15 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Raja Software Labs with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent