Upload Button Icon Add office photos

Filter interviews by

Raja Software Labs Software Developer Interview Questions, Process, and Tips

Updated 7 Dec 2024

Top Raja Software Labs Software Developer Interview Questions and Answers

  • Q1. 1 print string without taking repeating characters eg helper - helpr
  • Q2. angle between hour and minute hand of clock at a given time
  • Q3. 2 given sum and we have to print all the subsequences in array with given sum
View all 11 questions

Raja Software Labs Software Developer Interview Experiences

15 interviews found

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

Code Snept question with 3-4 Reasoning question. Google form

Round 2 - Assignment 

Pen paper coding round. String , Array . Linkedlist , graph, questions

Round 3 - Technical 

(3 Questions)

  • Q1. Maximum Spaning
  • Q2. Nearest Prime number
  • Ans. 

    To find the nearest prime number, iterate from the given number in both directions until a prime number is found.

    • Start iterating from the given number in both directions to find the nearest prime number.

    • Check if a number is prime by dividing it by all numbers less than its square root.

    • Keep track of the closest prime number found during the iteration.

  • Answered by AI
  • Q3. Second Maximum Number in Array
  • Ans. 

    Find the second maximum number in an array of strings.

    • Convert the array of strings to an array of integers.

    • Sort the array in descending order.

    • Return the second element in the sorted array.

  • Answered by AI
Round 4 - Technical 

(4 Questions)

  • Q1. Project Question
  • Q2. Robot question of DSA
  • Q3. Stock Buy and sell - VI . Leetcode Hard
  • Q4. Leetcode Medium

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Programming questions on string, array, numbers.
Difficultity level was simple.

Round 2 - Coding Test 

5 questions were asked out of which 2 of them were easy and rest of them were hard.
Easy :- sorting, numbers
Hard :- bitwise, mathematical equation question.

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 Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more

Software Developer Interview Questions & Answers

user image Amey Uplenchwar

posted on 29 Nov 2024

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

I applied via Campus Placement

Round 1 - Coding Test 

Three were basic questions around strings and arrays

Round 2 - One-on-one 

(1 Question)

  • Q1. Detailed discussion on data structures and algorithms

Software Developer Interview Questions & Answers

user image Mayuresh Gujar

posted on 28 Nov 2024

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

DSA questions such as Map, linked list

Raja Software Labs interview questions for designations

 Software Developer Intern

 (1)

 Developer

 (2)

 Software Engineer

 (15)

 Android Developer

 (1)

 Java Developer

 (1)

 Software Engineer Trainee

 (1)

 Software Development Engineer

 (1)

 Software Engineer Level 1

 (1)

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

Medium level question based on quantitative aptitude

Round 2 - Coding Test 

Medium level leetcode questions

Interview Preparation Tips

Interview preparation tips for other job seekers - good experience and get very much to learn

Get interview-ready with Top Raja Software Labs Interview Questions

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Good question with nice logic

Round 2 - Coding Test 

5 question in 1 hour so it's kinda difficult to manage time

Software Developer Interview Questions & Answers

user image Sarvesh Barapatre

posted on 24 Sep 2024

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

Questions based on data structure

Round 2 - Coding Test 

Questions based on Data structure

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

I applied via campus placement at Pimpri Chinchwad College of Engineering, Pimpri 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

Raja Software Labs Interview FAQs

How many rounds are there in Raja Software Labs Software Developer 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 Software Developer 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 .Net, Algorithms, Android, Application Development and C.
What are the top questions asked in Raja Software Labs Software Developer interview?

Some of the top questions asked at the Raja Software Labs Software Developer 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

Tell us how to improve this page.

Raja Software Labs Software Developer Interview Process

based on 14 interviews

3 Interview rounds

  • Aptitude Test Round
  • Coding Test Round
  • Technical Round
View more
Raja Software Labs Software Developer Salary
based on 60 salaries
₹4.5 L/yr - ₹13 L/yr
At par with the average Software Developer Salary in India
View more details

Raja Software Labs Software Developer Reviews and Ratings

based on 10 reviews

2.9/5

Rating in categories

3.1

Skill development

2.2

Work-life balance

2.6

Salary

2.3

Job security

2.8

Company culture

2.6

Promotions

3.0

Work satisfaction

Explore 10 Reviews and Ratings
Software Engineer
239 salaries
unlock blur

₹4.5 L/yr - ₹16 L/yr

Software Developer
60 salaries
unlock blur

₹4.5 L/yr - ₹13 L/yr

IOS Developer
54 salaries
unlock blur

₹5 L/yr - ₹15.8 L/yr

Android Developer
19 salaries
unlock blur

₹6 L/yr - ₹18 L/yr

Softwaretest Engineer
14 salaries
unlock blur

₹2.5 L/yr - ₹6.5 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