Upload Button Icon Add office photos

Filter interviews by

Unthinkable Solutions Software Developer Interview Questions, Process, and Tips

Updated 11 Jan 2025

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 ...read more
  • Q2. 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 i ...read more
  • Q3. 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 las ...read more
View all 11 questions

Unthinkable Solutions Software Developer Interview Experiences

11 interviews found

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

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

Round 1 - Coding Test 

Round 1 -> 3 easy coding questions (I did all three)
round2 -> 2 coding questions (1 was leetcode's trapping rainwater problem) (Did 1.5)

Round 2 - Technical 

(2 Questions)

  • Q1. SQL query was asked on joins etc
  • Q2. What are Microservcies, solid principles, a pattern printing question, oops concepts
Round 3 - Technical 

(2 Questions)

  • Q1. Designing dbms for a college website
  • Ans. 

    Designing a DBMS for a college website involves creating tables for students, courses, faculty, and more.

    • Create tables for students, courses, faculty, departments, etc.

    • Establish relationships between tables using foreign keys.

    • Include attributes like student ID, course ID, faculty ID, etc.

    • Implement normalization to reduce redundancy and improve data integrity.

    • Consider implementing views for complex queries or reports.

  • Answered by AI
  • Q2. Implement debouncing, create a nodejs server with a get / post api, a puzzle, javascript questions like clousers, let / var / const, event loop, output based questions etc.
  • Ans. 

    Implement debouncing, create a nodejs server with get/post api, and answer JavaScript questions.

    • Implement debouncing by using setTimeout and clearTimeout to limit the number of times a function is called.

    • Create a nodejs server with Express framework to handle get and post requests.

    • Answer JavaScript questions on closures, let/var/const, event loop, and output based questions.

    • Provide examples for each concept to demonstr

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - :) Be good at SQL.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Pattern, string, array

Round 2 - Technical 

(2 Questions)

  • Q1. Merge intervals - lc
  • Q2. Trapping rain water
Round 3 - HR 

(2 Questions)

  • Q1. Behavioral questions
  • Q2. Why do you want to join
  • Ans. 

    I am passionate about creating innovative software solutions and believe your company aligns with my values and goals.

    • Passionate about software development

    • Believe company aligns with values and goals

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare patterns, basic strings, arrays
prepare quant

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 Nagarro
Q4. Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Subarray sum equals to zero

Round 2 - Technical 

(1 Question)

  • Q1. Basic technical questions related to your project
Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java, Python, and web development technologies

    • Strong problem-solving skills

    • Team player with excellent communication skills

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

It consisted of 30 mcq questoions

Round 2 - Coding Test 

The second round was lasted for 20 mins with a hard leetcode questionj.

Unthinkable Solutions interview questions for designations

 Software Developer Intern

 (2)

 Software Engineer

 (8)

 Software Tester

 (1)

 Associate Software Engineer

 (5)

 Software Engineer Intern

 (1)

 Full Stack Developer

 (1)

 Junior Associate Software Engineer

 (3)

 Software Development Engineer Intern

 (2)

Software Developer Interview Questions & Answers

user image Utkarsh Tripathi

posted on 11 Jan 2025

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

3 coding questions of array string and stack

Get interview-ready with Top Unthinkable Solutions Interview Questions

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Three questions of coding and compiler was not so good and time was 1 hour

Round 2 - Programming 

(1 Question)

  • Q1. DSA question and of medium level
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

1 to 2 coding rounds, depending on your score that covers basic DSA questions

Round 2 - Technical 

(1 Question)

  • Q1. 2-3 technical round, that covers basic to advanced questions of your preferred language Includes SQL questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It was good to atted the interview.

Round 2 - Coding Test 

It was easy it will ask you questions in java basically.

Round 3 - Group Discussion 

In the group discussion they will ask some Hr type questions.

Round 4 - Assignment 

In this round they will give you the assignment to complete it.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to go.

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

Software Developer Interview Questions & Answers

user image Rishabh Sharma

posted on 17 Jul 2023

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

I applied via campus placement at Dehradun Institute of Technology, Dehradun and was interviewed before Jul 2022. There were 4 interview rounds.

Round 1 - Coding Test 

Coding test based on average DSA on hackerearch.

Round 2 - Coding Test 

1 to 1 coding with interviewer

Round 3 - Case Study 

Some puzzles were asked more like quizez

Round 4 - HR 

(2 Questions)

  • Q1. Salary discussion and asked if know anything about company
  • Q2. What do you know about our company

Unthinkable Solutions Interview FAQs

How many rounds are there in Unthinkable Solutions Software Developer 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 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 Unthinkable Solutions. The most common topics and skills that interviewers at Unthinkable Solutions expect are Javascript, Software Development, C#, Java and .Net.
What are the top questions asked in Unthinkable Solutions Software Developer interview?

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

  1. Implement debouncing, create a nodejs server with a get / post api, a puzzle, j...read more
  2. Designing dbms for a college webs...read more
  3. what are Microservcies, solid principles, a pattern printing question, oops con...read more

Tell us how to improve this page.

Unthinkable Solutions Software Developer Interview Process

based on 10 interviews

3 Interview rounds

  • Coding Test Round
  • Technical Round
  • HR Round
View more
Unthinkable Solutions Software Developer Salary
based on 44 salaries
₹4 L/yr - ₹16.6 L/yr
19% more than the average Software Developer Salary in India
View more details

Unthinkable Solutions Software Developer Reviews and Ratings

based on 5 reviews

3.2/5

Rating in categories

3.3

Skill development

2.9

Work-life balance

3.5

Salary

2.7

Job security

3.2

Company culture

3.4

Promotions

2.9

Work satisfaction

Explore 5 Reviews and Ratings
Associate Software Engineer
194 salaries
unlock blur

₹7 L/yr - ₹18.6 L/yr

Junior Associate
82 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Software Engineer
79 salaries
unlock blur

₹3.3 L/yr - ₹16.4 L/yr

Junior Associate Software Engineer
66 salaries
unlock blur

₹2 L/yr - ₹10 L/yr

Junior IT Associate
47 salaries
unlock blur

₹4 L/yr - ₹9 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