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

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Dec 2024.

Round 1 - Coding Test 

I participated in a coding round on their platform, which consisted of three coding questions in 60 min. however, their editor and compiler were quite inadequate. The event was held onsite, with 500 candidates arriving on January 11, 2024, at 9 AM. Approximately 100 candidates cleared that round.

Round 2 - Coding Test 

I solved all three questions, yet we still had to participate in the second round, which included one coding question to be completed in 20 minutes. The question was poorly framed, leading to the rejection of most students. However, I managed to solve all the test cases.

Round 3 - Coding Test 

The coding round comprised one question and was conducted on paper for a duration of 10 minutes.

Round 4 - Technical 

(5 Questions)

  • Q1. It was the puzzle question involving five numbered fingers where you need to determine which finger corresponds to a given number in constant time complexity O(1)?
  • Q2. Write code for searching in a 2D matrix with a time complexity of O(mlogn)?
  • Ans. 

    Implement a binary search in each row of a sorted 2D matrix to achieve O(mlogn) time complexity.

    • Divide and conquer approach can be used to search in each row of the matrix.

    • Perform binary search on each row to find the target element efficiently.

    • Ensure the rows are sorted to apply binary search in each row.

  • Answered by AI
  • Q3. How would you design a store management system, including all relevant schema tables?
  • Ans. 

    Design a store management system with relevant schema tables

    • Create a 'Store' table with attributes like store_id, name, location, etc.

    • Design a 'Product' table with attributes like product_id, name, price, quantity, etc.

    • Include a 'Sales' table to track sales transactions with attributes like sale_id, date, total_amount, etc.

    • Implement a 'Stock' table to manage product stock levels with attributes like stock_id, product_i

  • Answered by AI
  • Q4. Design schema of your project
  • Ans. 

    The schema of my project is designed to efficiently store and retrieve data for a web application.

    • Use relational database to store structured data

    • Create tables for different entities like users, products, orders

    • Establish relationships between tables using foreign keys

    • Use indexes to optimize query performance

  • Answered by AI
  • Q5. Design category schema where category can have multiple sub categories
  • Ans. 

    Design a category schema with multiple subcategories

    • Use a parent-child relationship to link categories and subcategories

    • Implement a tree data structure to represent the hierarchy

    • Each category can have multiple subcategories

    • Example: Category - Electronics, Subcategories - Computers, Mobile Phones, TVs

  • Answered by AI
Round 5 - Technical 

(2 Questions)

  • Q1. Questions related to javascript
  • Q2. Sql queries which consists of group and joins
  • Ans. 

    SQL queries involving group by and joins are used to retrieve data from multiple tables and aggregate results.

    • Use GROUP BY to group rows that have the same values in specified columns

    • Use JOIN to combine rows from two or more tables based on a related column

    • Examples: SELECT column1, SUM(column2) FROM table1 JOIN table2 ON table1.id = table2.id GROUP BY column1

  • Answered by AI
Round 6 - HR 

(2 Questions)

  • Q1. Can you provide your introduction?
  • Ans. 

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

    • Currently pursuing a degree in Computer Science

    • Proficient in Java, Python, and web development technologies like HTML, CSS, and JavaScript

    • Completed internships at tech companies working on software projects

    • Participated in coding competitions and hackathons

  • Answered by AI
  • Q2. Why do you want to join this company?
  • Ans. 

    I am impressed by the company's innovative projects and collaborative work culture.

    • Impressed by innovative projects

    • Desire to work in collaborative environment

    • Company's reputation in the industry

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Salary: 5 LPA; Bond: 1.6 years. My experience was quite poor. Initially, we were required to report at 9 AM, and our workday extended until 10:30 PM. We were not provided with any dinner or food after 6 PM, only receiving coffee, and we were prohibited from going outside to get food. Subsequently, we were called for an interview on a different day, but despite passing the HR round, I was ultimately rejected. Out of the initial group, only 20 candidates reached the technical interviews, and only 2 or 3 were extended offers on the same day.

Software Engineer Intern Interview Questions asked at other Companies

Q1. Check if Two Trees are Mirror Given two arbitrary binary trees, your task is to determine whether these two trees are mirrors of each other. Explanation: Two trees are considered mirror of each other if: The roots of both the trees are the... read more
Add answer

Rate your
company

🤫 100% anonymous

How was your last interview experience?

Share interview
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Jan 2025.

Round 1 - Coding Test 

3 coding test range from easy to hard.

Round 2 - One-on-one 

(3 Questions)

  • Q1. About the project?
  • Q2. What are Joins?
  • Ans. 

    Joins are used in databases to combine rows from two or more tables based on a related column between them.

    • Joins are used to retrieve data from multiple tables based on a related column.

    • Common types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • INNER JOIN returns rows when there is at least one match in both tables.

    • LEFT JOIN returns all rows from the left table and the matched rows from the right ta...

  • Answered by AI
  • Q3. How JS works and nodeJs works
  • Ans. 

    JavaScript is a scripting language used for web development, while Node.js is a runtime environment that allows JavaScript to run on the server side.

    • JavaScript is a client-side scripting language used for creating interactive web pages.

    • Node.js is a runtime environment that allows JavaScript to run on the server side.

    • Node.js uses the V8 JavaScript engine from Google Chrome to execute code.

    • Node.js provides a set of built...

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Can you provide details about your project and draw an ER diagram for an e-commerce website?

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)
Unthinkable Solutions Interview Questions and Answers for Freshers
illustration image
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

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 (38)
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 Nov 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Coding test of mixed level hard beginners medium

Round 2 - Technical 

(3 Questions)

  • Q1. Questions related to coding
  • Q2. Python programming
  • Q3. C++ programof swap
Round 3 - HR 

(1 Question)

  • Q1. About myself and hobby

Software Development Engineer Intern Interview Questions asked at other Companies

Q1. Say you're dealing with really long integers. They're too long to fit into a regular datatype, so linked lists are used to store them, with each node of the list containing one digit. Now the problem is, given two linked lists, i.e. two rea... read more
View answer (2)

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)

 QA Engineer

 (2)

 Quality Engineer

 (2)

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

The coding test included three questions to be attempted, primarily focusing on arrays; however, it also involved complex data structure and algorithm problems.

Round 2 - Technical 

(1 Question)

  • Q1. Subject-related question of the OOP concept and also operating systems

Interview Preparation Tips

Interview preparation tips for other job seekers - Study hard on data structures and algorithms, ensuring you cover all topics and questions related to arrays and numerical logic.

Software Development Engineer Intern Interview Questions asked at other Companies

Q1. Say you're dealing with really long integers. They're too long to fit into a regular datatype, so linked lists are used to store them, with each node of the list containing one digit. Now the problem is, given two linked lists, i.e. two rea... read more
View answer (2)

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 applied via campus placement at Pranveer Singh Institute of Technology, Kanpur and was interviewed in Jun 2024. There were 5 interview rounds.

Round 1 - Coding Test 

There were 3 questions:
1. Given a string check if it is possible to rearrange the elements of the string to form a palindrome. [Check GFG for the question]
2. Given an integer n, print n rows of following pattern.
Example :
n = 7
* * * * * * *
* *
* * * * *
* * * *
* * * * *
* *
* * * * * * *
3. Cut the sticks [Check hacker rank for the question desc.]
Total duration 90 mins.

Round 2 - Coding Test 

I was directly shortlisted for PI. Hence did not sit for this round but I am aware that there were 2 DSA questions in 40 mins. One was pattern and other was is Anagram question on leetcode valid anagram question.

Round 3 - Technical 

(4 Questions)

  • Q1. Resume discussion with basic questions on projects
  • Q2. Couple of SQL queries
  • Q3. Basics of DBMS, OOPS
  • Q4. 3 DSA questions
Round 4 - Technical 

(2 Questions)

  • Q1. Basic programming question 1. Longest Palindromic Substring 2. Pattern : a b b c c c 3. Given a string "ccabdd" convert to "c2a1b1d2"
  • Q2. Thorough Resume Based questions each and every technology mentioned in resume was asked in great detail.
Round 5 - HR 

(3 Questions)

  • Q1. Introduce Yourself
  • Ans. 

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

    • Experienced in Java and Python programming languages

    • Proficient in web development technologies like HTML, CSS, and JavaScript

    • Completed multiple projects showcasing my skills

  • Answered by AI
  • Q2. Will you like to work in a team or Solo
  • Ans. 

    I prefer working in a team as it allows for collaboration, diverse perspectives, and shared responsibilities.

    • Collaboration with team members leads to better problem-solving and innovation

    • Diverse perspectives can lead to more creative solutions

    • Shared responsibilities help distribute workload and prevent burnout

  • Answered by AI
  • Q3. Explain your projects
  • Ans. 

    Developed a web application for tracking personal fitness goals and progress

    • Used HTML, CSS, and JavaScript for front-end development

    • Implemented a RESTful API using Node.js and Express for back-end functionality

    • Utilized MongoDB for database management

    • Incorporated chart.js for visualizing progress data

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Look at pattern based problems.

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum Of Max And MinYou are given an array “ARR” of size N. Your task is to find out the sum of maximum and minimum elements in the array. Follow Up: Can you do the above task in a minimum number of comparisons? Input format: The first line ... read more
View answer (8)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain the first 3 months if you are hired
  • Q2. Fair dealing, but everyone and everything seemed rushed, as if they would like to see magic within 3 months
Round 2 - Assignment 

Campaign idea gor unthinkable

Marketing Manager Interview Questions asked at other Companies

Q1. What the big opportunities to handle a sales in a worse situation i.e when prices & demand are low & vice versa
View answer (2)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

On Hackerearth (1 hour) ,array string two pointer sliding window, solve 150 interview sheet leetcode

Round 2 - Technical 

(5 Questions)

  • Q1. Introduction and Next Js project (SSR,API,AI)
  • Q2. Javascript (@strict,hoisting) , Component in react
  • Q3. Joins,Referential Integrity,Left Outer Join, Find 3rd highest salary of employee.
  • Q4. Leetcode Q3 ,Q84, Q560, Q5
  • Q5. Linked list, Implement stack using array

Interview Preparation Tips

Interview preparation tips for other job seekers - Study all the topics basics , medium & hard . Unthinkable can ask anything (literally anything)

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

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 24 Oct 2024

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

I applied via Walk-in and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Coding question 3 in 1.5 hours

Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell about Technical Skills
  • Ans. 

    I have strong technical skills in test automation, manual testing, bug tracking, and test case design.

    • Proficient in test automation tools like Selenium and JUnit

    • Skilled in manual testing techniques and methodologies

    • Experience with bug tracking systems such as Jira

    • Ability to design comprehensive test cases for various scenarios

  • Answered by AI
  • Q2. 3 DSA Questions on Arrays ,String

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (7)
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in May 2024. There were 4 interview rounds.

Round 1 - Coding Test 

3 rounds on hacker earth (easy to medium)
Q1 find longest rectangle in Matrix
Q2 print a pattern
Q3 some array question

Round 2 - Technical 

(3 Questions)

  • Q1. SQL query to find second highest salary
  • Ans. 

    SQL query to find second highest salary

    • Use the ORDER BY clause to sort salaries in descending order

    • Use the LIMIT clause to retrieve the second row

  • Answered by AI
  • Q2. Questions related to oops and resume
  • Q3. Some DSA questions (don't remember) overall it was 60 mins long Received great feedback
Round 3 - Technical 

(1 Question)

  • Q1. 4 DSA questions, oops, SQL, puzzles, and project related. Overall it was a 2-2:30 hour interview Recieved good feedback but was tired after all this
Round 4 - Technical 

(1 Question)

  • Q1. Again DSA and project related questions and SQL All of these happened on the same day

Skills evaluated in this interview

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given SumYou are given an array/list ARR consisting of N integers. Your task is to find all the distinct triplets present in the array which adds up to a given number K. An array is said to have a triplet {ARR[i], ARR[j], ARR[... read more
View answer (4)
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

INTERVIEWS

Boeing

85 interviews

INTERVIEWS

Apexon

135 interviews

INTERVIEWS

Xogene

8 interviews

INTERVIEWS

OpenBet

3 interviews

INTERVIEWS

ABB

233 interviews

INTERVIEWS

Stark Interio

No Interviews

INTERVIEWS

IGT Solutions

No Interviews

INTERVIEWS

Credit Bajaar

No Interviews

INTERVIEWS

InsuranceDekho

No Interviews

INTERVIEWS

Chiratae Ventures

No Interviews

Tell us how to improve this page.

Unthinkable Solutions Interview Process

based on 52 interviews

Interview experience

3.8
  
Good
View more

Anonymously discuss salaries, work culture, and many more

Get Ambitionbox App

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 167 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 167 Reviews and Ratings
Associate Software Engineer
196 salaries
unlock blur

₹7 L/yr - ₹19.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
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent