Upload Button Icon Add office photos

Raja Software Labs

Compare button icon Compare button icon Compare

Filter interviews by

Raja Software Labs Interview Questions and Answers

Updated 16 Jan 2025
Popular Designations

30 Interview questions

A Software Developer was asked 9mo ago
Q. Given an array of numbers, find the second largest number in the 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.

View all Software Developer interview questions
A Software Developer was asked 9mo ago
Q. Given an integer, find the nearest prime number to it.
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.

View all Software Developer interview questions
A Software Developer was asked 9mo ago
Q. You are given an integer array prices where prices[i] is the price of a given stock on the ith day. You are also given an integer k. Find the maximum profit you can achieve. You may complete at most k trans...
Ans. 

Maximize profit by buying and selling stocks with at most k transactions.

  • Use dynamic programming to track profits for each transaction.

  • Maintain an array to store maximum profit for each day.

  • Example: For prices [3,2,6,5,0,3] and k=2, max profit is 7.

  • Consider edge cases like k=0 or prices being empty.

View all Software Developer interview questions
A Software Development Engineer was asked 12mo ago
Q. Write a program to determine if a given year is a leap year.
Ans. 

Check if a given year is a leap year or not.

  • A leap year is divisible by 4, but not by 100 unless it is also divisible by 400

  • For example, 2000 is a leap year because it is divisible by 400, while 1900 is not because it is divisible by 100 but not by 400

View all Software Development Engineer interview questions
A Software Developer was asked
Q. You are given coins of different denominations and a total amount of money amount. Write a function to compute the fewest number of coins that you need to make up that amount. If that amount of money cannot...
Ans. 

Find minimum number of coins to make a given value using dynamic programming.

  • Use dynamic programming to find the minimum number of coins needed.

  • Create a dp array to store the minimum number of coins for each value up to the given value.

  • Iterate through each coin denomination and update the dp array accordingly.

  • Return the value at the given value index in the dp array.

View all Software Developer interview questions
A Software Developer was asked
Q. Write a program to find prime numbers.
Ans. 

A prime number is a number greater than 1 that is divisible only by 1 and itself.

  • Start with a loop to iterate through numbers

  • Check if each number is divisible by any number from 2 to its square root

  • If not divisible, add it to the list of prime numbers

View all Software Developer interview questions
A Software Developer was asked
Q. Given a string s, return the longest palindromic substring in s.
Ans. 

Find the longest substring that is a palindrome in a given string.

  • Use dynamic programming to solve the problem efficiently.

  • Create a 2D boolean array to store the results of subproblems.

  • Check for palindromes of length 1 and 2 separately.

  • For substrings of length greater than 2, check if the first and last characters are the same and the substring between them is also a palindrome.

  • Update the result if a longer palind...

View all Software Developer interview questions
Are these interview questions helpful?
A Software Developer was asked
Q. Given a string, find the first non-repeating character in it and return its index. If it doesn't exist, return -1.
Ans. 

Find the first non-repeating character in a string.

  • Create a hash table to store character frequency

  • Iterate through the string and update the hash table

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

View all Software Developer interview questions
A Software Developer was asked
Q. Given an array of numbers, how do you print all subsequences with a 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).

View all Software Developer interview questions
A Software Developer was asked
Q. How can you sort an array of 0s and 1s in only one loop using the two-pointer technique?
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).

View all Software Developer interview questions

Raja Software Labs Interview Experiences

43 interviews found

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

Round 1 - Aptitude Test 

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

Round 2 - 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 3 - 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)
Round 4 - 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 5 - 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
  • 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

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
  • Ans. 

    Maximize profit by buying and selling stocks with at most k transactions.

    • Use dynamic programming to track profits for each transaction.

    • Maintain an array to store maximum profit for each day.

    • Example: For prices [3,2,6,5,0,3] and k=2, max profit is 7.

    • Consider edge cases like k=0 or prices being empty.

  • Answered by AI
  • 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 & 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

SDE Interview Questions & Answers

user image Albert D'souza

posted on 7 Mar 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

MCQ based on c++ and java

Round 2 - Coding Test 

Solve 5 DSA questions

Round 3 - Technical 

(3 Questions)

  • Q1. 1. Buy and sell stocks 2. String balance 3. Storing algo
  • Q2. String balance questions and String manipulation
  • Q3. Sorting algorithms and their implementations
  • Ans. 

    Sorting algorithms are used to arrange elements in a specific order.

    • Common sorting algorithms include bubble sort, selection sort, insertion sort, merge sort, quick sort, and heap sort.

    • Each sorting algorithm has its own time complexity and space complexity.

    • Sorting algorithms can be implemented in various programming languages such as C++, Java, Python, etc.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Coding test is the first round and if it is cleared you will be interviewed

Round 2 - Technical 

(1 Question)

  • Q1. Find if the given year is a leap year or not.
  • Ans. 

    Check if a given year is a leap year or not.

    • A leap year is divisible by 4, but not by 100 unless it is also divisible by 400

    • For example, 2000 is a leap year because it is divisible by 400, while 1900 is not because it is divisible by 100 but not by 400

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Raja Software Labs Software Development Engineer interview:
  • DSA

Skills evaluated in this interview

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

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Campus Placement and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Consisted of aptitude and coding output questions

Round 2 - Coding Test 

Coding test was given with three questions .we have to write in on word in 45 mins

Round 3 - HR 

(1 Question)

  • Q1. They asked puzzles and other usual questions
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
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

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 Raja Software Labs?
Ask anonymously on communities.

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.

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 27 interview experiences

Difficulty level

Easy 31%
Moderate 69%

Duration

Less than 2 weeks 86%
2-4 weeks 14%
View more

Interview Questions from Similar Companies

VDart Interview Questions
4.0
 • 29 Interviews
DISYS Interview Questions
3.1
 • 27 Interviews
Ciklum Interview Questions
3.4
 • 22 Interviews
View all

Raja Software Labs Reviews and Ratings

based on 104 reviews

3.4/5

Rating in categories

3.3

Skill development

2.5

Work-life balance

3.4

Salary

2.7

Job security

3.2

Company culture

3.1

Promotions

3.0

Work satisfaction

Explore 104 Reviews and Ratings
Software Engineer Web Frontend

Pune

2-5 Yrs

Not Disclosed

Software Engineer iOS

Pune

2-4 Yrs

₹ 6-20 LPA

Software Engineer Android

Pune

2-4 Yrs

₹ 6-20 LPA

Explore more jobs
Software Engineer
260 salaries
unlock blur

₹6.9 L/yr - ₹14.7 L/yr

Software Developer
66 salaries
unlock blur

₹4.9 L/yr - ₹10.4 L/yr

IOS Developer
55 salaries
unlock blur

₹6.2 L/yr - ₹12 L/yr

Senior Software Engineer
20 salaries
unlock blur

₹12.5 L/yr - ₹21.8 L/yr

Android Developer
19 salaries
unlock blur

₹5.6 L/yr - ₹16.2 L/yr

Explore more salaries
Compare Raja Software Labs with

Saama Technologies

3.7
Compare

Jumio

3.8
Compare

DISYS

3.1
Compare

Data-Core Systems

3.1
Compare
write
Share an Interview