Upload Button Icon Add office photos

Filter interviews by

Unthinkable Solutions Interview Questions, Process, and Tips

Updated 25 Feb 2025

Top Unthinkable Solutions Interview Questions and Answers

View all 37 questions

Unthinkable Solutions Interview Experiences

Popular Designations

58 interviews found

I applied via Approached by Company and was interviewed in Jun 2022. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. 1) some basic o/p predict question on javascript code
  • Q2. 2) one coding question -> input->"my name is xyz" output ->"My Name Is Xyz" need to uppercase first letter of all words in a sentence.
  • Ans. 

    A coding question to uppercase the first letter of all words in a sentence.

    • Split the sentence into words using space as a delimiter.

    • Loop through each word and uppercase the first letter using string manipulation.

    • Join the words back into a sentence with a space in between.

  • Answered by AI
  • Q3. React js question is to make a component which has input tag when we type so auto suggestion will be shown this list of countries interviewer provided to take reference . when we type as per key pressed ...
Round 2 - Technical 

(3 Questions)

  • Q1. 1) coding question range is given example 2 to 10 in this range find 3 largest prime number sum. and for this 2 to 10 range exmaple is 3, 5 , 7 sum=15.
  • Ans. 

    Find the sum of three largest prime numbers within a given range.

    • Create a function to check if a number is prime.

    • Loop through the given range and store prime numbers in an array.

    • Sort the array in descending order and sum the first three elements.

    • Return the sum.

  • Answered by AI
  • Q2. I show case my full stack project on MERN tech, 20 min disscussion going on this only.
  • Q3. Some basic javascript ,node and react based questions
Round 3 - HR 

(1 Question)

  • Q1. Tell me about your family and your technical skills.

Interview Preparation Tips

Topics to prepare for Unthinkable Solutions Junior Associate Software Engineer interview:
  • Javascript
  • Node.Js
  • React.Js
Interview preparation tips for other job seekers - Just be ready with your basics and make one good project that will inhance your skills and will be helpfull in interview to showcase

Skills evaluated in this interview

Junior Associate Software Engineer Interview Questions asked at other Companies

Q1. 1) coding question range is given example 2 to 10 in this range find 3 largest prime number sum. and for this 2 to 10 range exmaple is 3, 5 , 7 sum=15.
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Dsa questions they asked me about linked list and stack
  • Q2. They asked about circular linkedlist

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 (196)
Unthinkable Solutions Interview Questions and Answers for Freshers
illustration image

I applied via Referral and was interviewed in Feb 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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Java Core concepts in detail Project details Data Structure and Algorithm Binary Search Program
Round 3 - Technical 

(1 Question)

  • Q1. Java core concepts Spring boot concepts RDBS concepts Few basic coding questions
Round 4 - HR 

(1 Question)

  • Q1. Why are you leaving previous organisation? Can you work in hybrid culture? Project overview Salary and role discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on learning basic concepts like OOPS, RDBMS, Java

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

Junior Associate Interview Questions & Answers

user image Abhishek Kushwaha

posted on 25 Oct 2023

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

I applied via Campus Placement and was interviewed before Oct 2022. There were 5 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 Resume tips
Round 2 - Coding Test 

DS and problem solving

Round 3 - Technical 

(3 Questions)

  • Q1. Basic coding concepts
  • Q2. Pattern printing
  • Q3. DRY run code flow
Round 4 - Technical 

(2 Questions)

  • Q1. College project discussion
  • Q2. Hackathon related verbal questionaire
Round 5 - HR 

(1 Question)

  • Q1. Overall journey and experience of studies and future goals

Junior Associate Interview Questions asked at other Companies

Q1. What are Reverse Repo Rate and Repo Rate of Reserve Bank Of India?
View answer (5)

Unthinkable Solutions interview questions for popular designations

 Software Developer

 (11)

 Software Engineer

 (8)

 Associate Software Engineer

 (5)

 Junior Associate

 (3)

 Junior Associate Software Engineer

 (3)

 Software Developer Intern

 (3)

 Softwaretest Engineer

 (2)

 Quality Engineer

 (2)

I was interviewed in Jun 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

The round was basically based on the DSA easy level questions. Platform was good enough to code easily

  • Q1. 

    Trapping Rain Water Problem Statement

    You are given a long type array/list ARR of size N, representing an elevation map. The value ARR[i] denotes the elevation of the ith bar. Your task is to determine th...

  • Ans. 

    The question asks to find the total amount of rainwater that can be trapped in the given elevation map.

    • Iterate through the array and find the maximum height on the left and right side of each bar.

    • Calculate the amount of water that can be trapped on each bar by subtracting its height from the minimum of the maximum heights on both sides.

    • Sum up the amount of water trapped on each bar to get the total amount of rainwater

  • Answered by AI
  • Q2. 

    Reverse String Word Wise Problem Statement

    Your task is to reverse the given string word-wise. This means the last word in the string should appear first, the second last word should appear second, and so...

  • Ans. 

    The given string needs to be reversed word wise, keeping the individual words intact.

    • Split the string into an array of words using a space as the delimiter.

    • Reverse the array of words.

    • Join the reversed array of words using a space as the separator to form the final reversed string.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 20 minutes
Round difficulty - Easy

It is base on OOPS and Data structures.

  • Q1. 

    Problem: Sort an Array of 0s, 1s, and 2s

    Given an array/list ARR consisting of integers where each element is either 0, 1, or 2, your task is to sort this array in increasing order.

    Input:

    The input sta...
  • Ans. 

    The task is to sort an array of 0s, 1s, and 2s in increasing order.

    • Use a three-pointer approach to partition the array into three sections: 0s, 1s, and 2s.

    • Initialize three pointers: low, mid, and high. low points to the start of the array, mid points to the current element being processed, and high points to the end of the array.

    • While mid <= high, perform the following checks: if arr[mid] == 0, swap arr[low] and arr[mi

  • Answered by AI
  • Q2. 

    Find the Second Largest Element

    Given an array or list of integers 'ARR', identify the second largest element in 'ARR'.

    If a second largest element does not exist, return -1.

    Example:

    Input:
    ARR = [2,...
  • Ans. 

    The task is to find the second largest element in an array of integers.

    • Iterate through the array and keep track of the largest and second largest elements.

    • Initialize the largest and second largest variables with the first two elements of the array.

    • Compare each element with the largest and second largest variables and update them accordingly.

    • Return the second largest element at the end.

  • Answered by AI
Round 3 - HR 

(2 Questions)

Round duration - 20 minutes
Round difficulty - Medium

One Coding question and projects was discussed

  • Q1. 

    Sort Array by Reversing a Subarray

    You are given an array of 'N' distinct integers, 'ARR'. Determine if it is possible to sort this array by selecting a continuous subarray and reversing it. Return 'true'...

  • Ans. 

    The question asks whether it is possible to sort an array by choosing a continuous subarray and reversing it.

    • Check if the array is already sorted. If yes, return true.

    • Find the first and last elements of the subarray that needs to be reversed.

    • Check if the subarray is in non-decreasing order. If yes, return true.

    • Check if the elements after the subarray are in non-increasing order. If yes, return true.

    • Otherwise, return fa

  • Answered by AI
  • Q2. 

    Find Duplicate in Array Problem Statement

    You are provided with an array of integers 'ARR' consisting of 'N' elements. Each integer is within the range [1, N-1], and the array contains exactly one duplica...

  • Ans. 

    The task is to find the duplicate element in an array of integers.

    • Iterate through the array and keep track of the frequency of each element using a hash map.

    • Return the element with a frequency greater than 1.

    • Alternatively, sort the array and check for adjacent elements with the same value.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Bharati Vidyapeeth's College of Engineering. I applied for the job as SDE - 1 in DelhiEligibility criteria7 CGPA with no backlogUnthinkable Solutions interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 - Practice Atleast 250 Questions
Tip 2 - Ex- Do atleast 2 projects

Application resume tips for other job seekers

Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Unthinkable Solutions Software Developer Interview Questions and Answers

Q1. Find Duplicate in Array Problem Statement You are provided with an array of integers 'ARR' consisting of 'N' elements. Each integer is within the range [1, N-1], and the array contains exactly one duplicated element. Your task is to identif... read more
View answer (1)

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)

Get interview-ready with Top Unthinkable Solutions Interview Questions

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

I was interviewed before Apr 2023.

Round 1 - Coding Test 

Coding questions of arrays and stack

Round 2 - HR 

(1 Question)

  • Q1. Introduction, why this org and other usual questions.

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)

Jobs at Unthinkable Solutions

View all

QA Associate Interview Questions & Answers

user image Anonymous

posted on 26 Oct 2021

Interview Questionnaire 

4 Questions

  • Q1. All basic Testing Questions were asked.
  • Q2. What is Agile .Explain
  • Ans. 

    Agile is a project management methodology that emphasizes on iterative development, collaboration, and customer satisfaction.

    • Agile is based on the Agile Manifesto, which values individuals and interactions, working software, customer collaboration, and responding to change.

    • Agile involves breaking down a project into smaller, manageable chunks called sprints.

    • Agile encourages continuous feedback and improvement throughou...

  • Answered by AI
  • Q3. What is difference between integration and System testing.
  • Ans. 

    Integration testing checks if different modules work together, while system testing checks if the entire system meets requirements.

    • Integration testing focuses on testing the interfaces between modules or components of a system.

    • System testing focuses on testing the entire system as a whole, including all integrated components.

    • Integration testing is performed before system testing.

    • System testing is performed after integr...

  • Answered by AI
  • Q4. What is SANITY , Smoke Testing. Explain difference giving live project examples.
  • Ans. 

    Sanity and Smoke Testing are types of software testing used to ensure the stability of the application.

    • Smoke Testing is a quick and shallow test to check if the application is stable enough for further testing.

    • Sanity Testing is a more thorough test to check if the application is ready for release.

    • Smoke Testing is usually done after a new build is released, while Sanity Testing is done after major changes are made to th...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - There were three rounds of interview. Two technical and One HR Round.
The interviewee were very considerate and supportive.

Skills evaluated in this interview

QA Associate Interview Questions asked at other Companies

Q1. what is SANITY , Smoke Testing. Explain difference giving live project examples.
View answer (1)

I applied via Recruitment Consulltant and was interviewed in Mar 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

3 coding question
1. Easy and 2 medium
You can easily solve 2

Round 2 - Technical 

(1 Question)

  • Q1. 2 coding questions Climbing stairs and print repeating elements

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good at intermediate and basic DP and advance topics

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

I applied via Campus Placement and was interviewed before Mar 2022. There were 5 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 Resume tips
Round 2 - Coding Test 

Problem-solving, data structures and logical ability on HackerEarth which lasts for 1.5-2 hours

Round 3 - Technical 

(3 Questions)

  • Q1. Star pattern in C language
  • Ans. 

    Star pattern is a common programming exercise to print a pattern of stars in a specific shape.

    • Use nested loops to print the desired number of rows and columns.

    • Use if-else statements to determine when to print a star or a space.

    • Experiment with different loop conditions and print statements to create different patterns.

  • Answered by AI
  • Q2. Linked list and arrays manipulation
  • Q3. Analytical thinking to solve a problem
Round 4 - Technical 

(2 Questions)

  • Q1. About your project done in college
  • Q2. Any professional or freelancing experience
  • Ans. 

    Yes, I have professional experience as a Junior Associate in a law firm.

    • Worked as a Junior Associate at XYZ Law Firm for 2 years

    • Assisted senior attorneys in legal research, drafting legal documents, and preparing for trials

    • Managed client communication and maintained case files

    • Participated in client meetings and court hearings

    • Developed strong analytical and problem-solving skills

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. General questions by HR like hobbies, background, likes, expectations

Interview Preparation Tips

Topics to prepare for Unthinkable Solutions Junior Associate interview:
  • Data Structures
  • Database
  • C
  • linklist
  • Pattern Making
Interview preparation tips for other job seekers - If you are a fresher, be prepared with C language and do not use any library to solve your problem.

Skills evaluated in this interview

Junior Associate Interview Questions asked at other Companies

Q1. What are Reverse Repo Rate and Repo Rate of Reserve Bank Of India?
View answer (5)

I applied via Referral and was interviewed before Dec 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 Resume tips
Round 2 - Coding Test 

Data Structure And Logical Questions

Round 3 - Technical 

(1 Question)

  • Q1. No Idea totally depends on the interviewer
Round 4 - HR 

(1 Question)

  • Q1. About 20 min totally depends on communication skills

Interview Preparation Tips

Interview preparation tips for other job seekers - Just Prepare for DSA anything else didn't matter.



thanks

Junior Associate Software Engineer Interview Questions asked at other Companies

Q1. 1) coding question range is given example 2 to 10 in this range find 3 largest prime number sum. and for this 2 to 10 range exmaple is 3, 5 , 7 sum=15.
View answer (1)
Contribute & help others!
anonymous
You can choose to be anonymous

Unthinkable Solutions Interview FAQs

How many rounds are there in Unthinkable Solutions interview?
Unthinkable Solutions interview process usually has 2-3 rounds. The most common rounds in the Unthinkable Solutions interview process are Coding Test, Technical and HR.
How to prepare for Unthinkable 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 Unthinkable Solutions. The most common topics and skills that interviewers at Unthinkable Solutions expect are Java, Javascript, C#, .Net and Sales.
What are the top questions asked in Unthinkable Solutions interview?

Some of the top questions asked at the Unthinkable Solutions interview -

  1. 1) coding question range is given example 2 to 10 in this range find 3...read more
  2. How would you design a store management system, including all relevant schema t...read more
  3. what is SANITY , Smoke Testing. Explain difference giving live project exampl...read more
How long is the Unthinkable Solutions interview process?

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

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

SALARIES

Unthinkable Solutions

INTERVIEWS

IGT Solutions

80 top interview questions

SALARIES

HPCL-Mittal Energy Limited

SALARIES

HPCL-Mittal Energy Limited

LIST OF COMPANIES

IGT Solutions

Locations

SALARIES

Unthinkable Solutions

INTERVIEWS

Tata Power

No Interviews

Tell us how to improve this page.

Unthinkable Solutions Interview Process

based on 52 interviews

Interview experience

3.8
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.7k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 811 Interviews
MAQ Software Interview Questions
1.9
 • 98 Interviews
View all

Unthinkable Solutions Reviews and Ratings

based on 168 reviews

3.0/5

Rating in categories

3.1

Skill development

2.7

Work-life balance

3.0

Salary

2.8

Job security

2.6

Company culture

2.8

Promotions

2.7

Work satisfaction

Explore 168 Reviews and Ratings
Sr . Associate System Engineer

Gurgaon / Gurugram

3-8 Yrs

Not Disclosed

Associate Presales ( Tender )

Gurgaon / Gurugram

3-8 Yrs

Not Disclosed

Admin Executive

Gurgaon / Gurugram

3-8 Yrs

Not Disclosed

Explore more jobs
Associate Software Engineer
196 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Junior Associate
82 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
79 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Junior Associate Software Engineer
69 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Junior IT Associate
47 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Unthinkable Solutions 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