Upload Button Icon Add office photos

Filter interviews by

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

Updated 16 Jan 2025

Top Raja Software Labs Software Engineer Interview Questions and Answers

View all 11 questions

Raja Software Labs Software Engineer Interview Experiences

15 interviews found

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

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

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

(1 Question)

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

(1 Question)

  • Q1. Array and string

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

Raja Software Labs interview questions for designations

 Software Engineer Trainee

 (1)

 Software Development Engineer

 (1)

 Software Engineer Level 1

 (1)

 Software Developer

 (15)

 Software Developer Intern

 (1)

 Softwaretest Engineer

 (1)

 Developer

 (2)

 Java Developer

 (1)

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all 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

Get interview-ready with Top Raja Software Labs Interview Questions

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

I applied via campus placement at Centre for Development of Advanced Computing (CDAC) 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

I applied via Company Website and was interviewed in May 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 tips
Round 2 - Aptitude Test 

The test contains basic programming output questions and some aptitude questions.

Round 3 - Coding Test 

We have to solve 5 programming questions in 1 hour. Questions are on arrays and strings.

Round 4 - Technical 

(2 Questions)

  • Q1. Parenthesis balancing Reversing the string Finding the angle between hour and minute hand of clock
  • Ans. 

    Three technical questions related to string manipulation and clock calculations.

    • For parenthesis balancing, use a stack data structure to keep track of opening and closing brackets.

    • To reverse a string, use two pointers starting from the beginning and end of the string and swap characters until they meet in the middle.

    • To find the angle between hour and minute hand of clock, use the formula (30H - 11/2M) degrees, where H

  • Answered by AI
  • Q2. Prime no Add all digits in a number
  • Ans. 

    The question asks to check if a number is prime and add all its digits.

    • To check if a number is prime, we can use a loop to divide it by all numbers from 2 to its square root.

    • If the number is divisible by any of these numbers, it is not prime.

    • To add all digits in a number, we can use a loop to extract each digit and add it to a running total.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice all previously asked questions which are on internet. Questions are based on arrays, mathematics (prime no.,leap year etc) strings, stack and queue.
Try to optimise the code as much as possible.

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

user image Vibhay Pandey

posted on 15 Jul 2022

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

Round 1 - Aptitude Test 

Some Questions are based on programming and some are aptitude questions.

Round 2 - Coding Test 

This is coding round here 5 coding questions is there?

Round 3 - One-on-one 

(3 Questions)

  • Q1. Find first non repeated character in string?
  • Ans. 

    Find the first non-repeated character in a string.

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

    • Return the first character with a count of 1.

  • Answered by AI
  • Q2. We have given a integer array then find the second maximum difference ?
  • Ans. 

    Find the second maximum difference in an integer array.

    • Sort the array in descending order

    • Calculate the difference between adjacent elements

    • Return the second maximum difference

  • Answered by AI
  • Q3. We have given a integer find the sum of all digits.
  • Ans. 

    Given an integer, find the sum of all its digits.

    • Convert the integer to a string and iterate over each character to get the sum.

    • Use modulo operator to get the last digit and add it to the sum, then divide by 10 to remove the last digit.

    • Recursively call the function with the integer divided by 10 and add the remainder to the sum.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - You can brush up your basic concepts of Array and string these things is helping a lot in that interviews.

Skills evaluated in this interview

I applied via Job Portal and was interviewed in Mar 2022. There were 6 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 - Coding Test 

It's totally based on your basic coding skills. Have basics ques about coding and have some problems to solve.

Round 3 - Technical 

(1 Question)

  • Q1. Problems with Array and String and need to solve the question on notepad. You can use any languages but need to describe the code which you will write.
Round 4 - Technical 

(1 Question)

  • Q1. DSA Problems, coding round.
Round 5 - Technical 

(1 Question)

  • Q1. DSA problems. need to solve and describe the approach.
Round 6 - Technical 

(1 Question)

  • Q1. DSA problems, coding round. Check glassdoor for the questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - - Need basics of DSA concepts clear
- You can use any languages Java, Python, C++, Kotlin or any?
-
Round 1 - Aptitude Test 

Basic technical que on java c++

Round 2 - Coding Test 

Google docs paltform
5 coding ques

Round 3 - Technical 

(1 Question)

  • Q1. Ques on my resume two coding ques

Interview Preparation Tips

Interview preparation tips for other job seekers - be clear with the basics of c++ java and dsa

Raja Software Labs Interview FAQs

How many rounds are there in Raja Software Labs Software Engineer interview?
Raja Software Labs interview process usually has 3-4 rounds. The most common rounds in the Raja Software Labs interview process are Technical, Coding Test and Aptitude Test.
How to prepare for Raja Software Labs Software Engineer 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 Backend, Design, Development, Mobile and UI.
What are the top questions asked in Raja Software Labs Software Engineer interview?

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

  1. sort a binary array using one traversal and no extra sp...read more
  2. find minimum angle between hour and minute ha...read more
  3. We have given a integer array then find the second maximum differenc...read more

Tell us how to improve this page.

Raja Software Labs Software Engineer Interview Process

based on 7 interviews

6 Interview rounds

  • Resume Shortlist Round
  • Coding Test Round - 1
  • Coding Test Round - 2
  • Technical Round - 1
  • Technical Round - 2
  • Technical Round - 3
View more
Raja Software Labs Software Engineer Salary
based on 200 salaries
₹4.5 L/yr - ₹16 L/yr
28% more than the average Software Engineer Salary in India
View more details

Raja Software Labs Software Engineer Reviews and Ratings

based on 42 reviews

3.6/5

Rating in categories

3.4

Skill development

2.9

Work-life balance

3.9

Salary

2.8

Job security

3.6

Company culture

3.3

Promotions

3.3

Work satisfaction

Explore 42 Reviews and Ratings
Software Engineer
200 salaries
unlock blur

₹4.5 L/yr - ₹16 L/yr

Software Developer
61 salaries
unlock blur

₹5 L/yr - ₹16 L/yr

IOS Developer
54 salaries
unlock blur

₹5 L/yr - ₹16 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.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview