Upload Button Icon Add office photos

Filter interviews by

Subtlelabs Software Solutions Interview Questions and Answers

Updated 20 Mar 2025

Subtlelabs Software Solutions Interview Experiences

Popular Designations

3 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

There were questions related to apitude, some basic oops, ds and os questions, 1 coding question. All were pen paper in one go.

Round 2 - Technical 

(3 Questions)

  • Q1. Introduce yourself
  • Q2. Questions on database
  • Q3. One programing question
Round 3 - HR 

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a software engineer with 5 years of experience in developing web applications using Java, Spring Boot, and Angular.

    • 5 years of experience in software development

    • Proficient in Java, Spring Boot, and Angular

    • Strong problem-solving skills

    • Experience working in Agile development environment

  • Answered by AI
  • Q2. Some questions on oops concepts

Interview Preparation Tips

Topics to prepare for Subtlelabs Software Solutions Software Engineer interview:
  • OOPS
  • OS
  • Relational Database

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 (223)
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. React live coding
  • Q2. What is the explanation of closures and promises in JavaScript?
  • Ans. 

    Closures are functions with access to their outer scope, while promises handle asynchronous operations in JavaScript.

    • A closure is created when a function retains access to its lexical scope even when the function is executed outside that scope.

    • Example of a closure: function outer() { let count = 0; return function inner() { count++; return count; }; }

    • Promises represent the eventual completion (or failure) of an asynchr...

  • Answered by AI

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 (43)
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Aptitude Test 

Oops, aptitude, coding

Round 2 - Technical 

(2 Questions)

  • Q1. Quick sort algorithm
  • Ans. 

    Quick sort is a divide-and-conquer algorithm that sorts an array by partitioning it into smaller subarrays.

    • Divide the array into two subarrays based on a pivot element

    • Recursively sort the subarrays

    • Combine the sorted subarrays to get the final sorted array

    • Time complexity is O(n log n) on average, but can degrade to O(n^2) in worst case

  • Answered by AI
  • Q2. Explain working of quick sort
  • Ans. 

    Quick sort is a divide-and-conquer algorithm that recursively divides an array into smaller subarrays based on a pivot element.

    • Choose a pivot element from the array

    • Partition the array into two subarrays - elements less than pivot and elements greater than pivot

    • Recursively apply quick sort to the subarrays

    • Combine the sorted subarrays to get the final sorted array

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm

Skills evaluated in this interview

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

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed before Dec 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic Aptitude like Quantitative , English and Logical Reasoning. Coding round had 4 questions - 2 SQL problems and 2 codes

Round 2 - HR 

(2 Questions)

  • Q1. Personality assessment , character judging and seeing if you are fit for the company on the basis of value was checked
  • Q2. Tell me about yourself

Interview Preparation Tips

Topics to prepare for Amdocs Software Engineer interview:
  • C++
  • SDLC
Interview preparation tips for other job seekers - Nothing to worry about. Just show confidence and good communication skills and a ability to learn.

Interview Questionnaire 

1 Question

  • Q1. Technical questions were asked

Interview Questionnaire 

1 Question

  • Q1. Computer networking, oops, programming

I applied via Recruitment Consulltant and was interviewed before Oct 2021. 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 - Technical 

(1 Question)

  • Q1. Questions regarding mainframe technology
Round 3 - Technical 

(1 Question)

  • Q1. Questions regarding COBOL JCL DB2 SQL VSAM IMSDB
Round 4 - HR 

(1 Question)

  • Q1. Regarding salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare in mainframe technology like JCL Cobol DB2 CICS and IMSDB related questions

Interview Questionnaire 

1 Question

  • Q1. Implement serialization of tree
  • Ans. 

    Serialize a tree data structure

    • Use pre-order traversal to serialize the tree

    • Store null values as a special character

    • Use a delimiter to separate nodes

    • Example: 1,2,null,null,3,4,null,null,5,null,null

    • Deserialize by splitting the string and using a queue

  • Answered by AI

Skills evaluated in this interview

I applied via Approached by Company and was interviewed before Aug 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What is difference between abstract class and interface?
  • Ans. 

    Abstract class can have implementation while interface cannot. Classes can implement multiple interfaces but only one abstract class.

    • Abstract class can have constructors while interface cannot.

    • Abstract class can have non-abstract methods while interface cannot.

    • Interfaces are used for full abstraction while abstract classes are used for partial abstraction.

    • Example: Abstract class - Animal with method eat() and subclass ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn about java and object oriented programming programming.

Skills evaluated in this interview

I applied via Company Website and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. They asked to calculate time complexity of any algorithm

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice is the only silver bullet to crack any interview!
Do coding of problem on notepad. Refer DS, ALGO related problem from GeeksOfGeeks site.

And 1 more thing coding is an art and please do not mug up the code, just try to understand the tricks, logic and solution and use those tricks and solution to solve any coding problem.

Do practice, Do practice and Do practice....nothing else

Subtlelabs Software Solutions Interview FAQs

How many rounds are there in Subtlelabs Software Solutions interview?
Subtlelabs Software Solutions interview process usually has 2-3 rounds. The most common rounds in the Subtlelabs Software Solutions interview process are Aptitude Test, Technical and Resume Shortlist.
How to prepare for Subtlelabs Software Solutions 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 Subtlelabs Software Solutions. The most common topics and skills that interviewers at Subtlelabs Software Solutions expect are Python, Django, Postgresql, Automation Testing and Github.
What are the top questions asked in Subtlelabs Software Solutions interview?

Some of the top questions asked at the Subtlelabs Software Solutions interview -

  1. What is the explanation of closures and promises in JavaScri...read more
  2. Explain working of quick s...read more
  3. Quick sort algori...read more

Tell us how to improve this page.

Subtlelabs Software Solutions Interview Process

based on 3 interviews

Interview experience

2.7
  
Poor
View more

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 863 Interviews
Google Interview Questions
4.4
 • 840 Interviews
Amdocs Interview Questions
3.7
 • 516 Interviews
Zoho Interview Questions
4.3
 • 512 Interviews
KPIT Technologies Interview Questions
3.4
 • 290 Interviews
SAP Interview Questions
4.2
 • 283 Interviews
Adobe Interview Questions
3.9
 • 234 Interviews
View all

Subtlelabs Software Solutions Reviews and Ratings

based on 4 reviews

5.0/5

Rating in categories

4.6

Skill development

5.0

Work-life balance

4.6

Salary

5.0

Job security

5.0

Company culture

4.6

Promotions

5.0

Work satisfaction

Explore 4 Reviews and Ratings
Software Engineer
14 salaries
unlock blur

₹2.4 L/yr - ₹5.6 L/yr

Software Developer
7 salaries
unlock blur

₹3 L/yr - ₹13.5 L/yr

IOS Developer
5 salaries
unlock blur

₹2 L/yr - ₹5 L/yr

Project Manager
4 salaries
unlock blur

₹11.2 L/yr - ₹15 L/yr

Android
4 salaries
unlock blur

₹9.5 L/yr - ₹15.3 L/yr

Explore more salaries
Compare Subtlelabs Software Solutions with

Oracle

3.7
Compare

Amdocs

3.7
Compare

Carelon Global Solutions

3.9
Compare

Automatic Data Processing (ADP)

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