Upload Button Icon Add office photos

Filter interviews by

Unthinkable Solutions Interview Questions, Process, and Tips

Updated 22 Jan 2025

Top Unthinkable Solutions Interview Questions and Answers

View all 35 questions

Unthinkable Solutions Interview Experiences

Popular Designations

56 interviews found

Jr. Associate I.T Interview Questions & Answers

user image Anonymous

posted on 6 Jan 2022

I applied via campus placement at Seth Jai Prakash Mukund Lal Institute of Engineering and Technology, Yamunanagar and was interviewed in Jul 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. OOPs concepts, 2 coding questions were given to solve, the level was moderate.

Interview Preparation Tips

Interview preparation tips for other job seekers - Have confidence, the interviewer were really nice, they will make you comfortable, just be confident and have good knowledge of whatever skills you mention in resume and be prepared to answer some project related questions

I applied via Walk-in and was interviewed before Sep 2021. There were 4 interview rounds.

Round 1 - Coding Test 

Coding test with easy to medium difficulty level problem.

Round 2 - Coding Test 

Easy to medium level coding problems

Round 3 - Technical 

(6 Questions)

  • Q1. Asked me to introduce myself
  • Q2. OOPS concepts like pillars of oops, what is diamond problem asked me to write a program to show run time polymorphism
  • Q3. Coding question - Pattern based questions
  • Q4. DBMS, OS concepts , etc
  • Q5. Questions based on projects
  • Q6. Behavioral questions
Round 4 - HR 

(3 Questions)

  • Q1. General behavioural questions
  • Q2. Situation based questions
  • Q3. Lots of cross questioning

Interview Preparation Tips

Topics to prepare for Unthinkable Solutions Associate Software Engineer interview:
  • Data Structures
  • Database
  • OOPS
Interview preparation tips for other job seekers - Focus on data structures and object oriented programming concepts. Practice on hackerrearth

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)

I applied via Campus Placement and was interviewed in Jul 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Concepts of oops, basic theory of ds , normal coding questions(3) , sql queries

Interview Preparation Tips

Interview preparation tips for other job seekers - interview was easy.
not much difficult to crack

Engineer Trainee Interview Questions asked at other Companies

Q1. If 10 people had a meeting and they shake hands only once with each of the others, then how many handshakes will be there in total ?
View answer (8)

I was interviewed in Nov 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Easy

The 1st round was online coding + MCQ round. It had 3 sections in total to be solved in 95 mins.
Next comes the technical interview. 
The technical interview lasted for about 45 minutes. It started with a basic introduction. Then, she framed some questions from my resume and projects which I have mentioned. Questions were mainly from Data structure, OS, DBMS, SQL. She told me to rate my data structure skill on a scale of 1 to 5.

  • Q1. 

    Kth Largest Number Problem Statement

    Design a data structure to process a stream of numbers and efficiently find the kth largest number at any given point in time.

    Explanation:

    You will receive a contin...

  • Ans. Brute Force
    • The brute force approach for this problem is very trivial.
    • We can always maintain an array that will hold the integers, sort the array in non-increasing order and return the element present at the kth index(1-based indexing).
    • The array should be such that it can add elements efficiently, for example, vectors in C++, lists in python, etc. Whenever we receive a query of type 1, we add the element in the array an...
  • Answered Anonymously
Round 2 - Face to Face 

(2 Questions)

Round duration - 30 minutes
Round difficulty - Easy

The technical interview lasted for about 45 minutes. It started with a basic introduction. Then, she framed some questions from my resume and projects which I have mentioned. Questions were mainly from Data structure, OS, DBMS, SQL. She told me to rate my data structure skill on a scale of 1 to 5.

  • Q1. 

    Binary Search Tree Search Problem

    Given a Binary Search Tree (BST) consisting of 'N' nodes, where each node contains some integer data, your task is to determine whether there is a node in the BST whose d...

  • Ans. Recursive Approach

    Approach: If the root node has data smaller than ‘X’. then by properties of BST, ‘X’ cannot be in its left subtree, so we recursively check for the right subtree. 

    If the root node has data larger than ‘X’. then by properties of BST, ‘X’ cannot be in its right subtree, so we recursively check for the left subtree.

    If the root node has data equal to ‘X’, then we return “True”. 

     

    The steps a...

  • Answered Anonymously
  • Q2. 

    Remove Duplicates Problem Statement

    You are given an array of integers. The task is to remove all duplicate elements and return the array while maintaining the order in which the elements were provided.

    ...

  • Ans. Brute Force

    We will traverse the whole array and check if that element previously occurred or not.

     

    The steps are as follows:

    • We initialize a vector ‘ans’ to store the final non-duplicate elements.
    • We will iterate over all the elements of the array, i.e., i = 0 to i = N - 1:
      • We will iterate over all the elements of the array excluding present element, i.e., j = 0 to j = N - 1:
        • If we get such positions such that arr[i] e...
  • Answered Anonymously

Interview Preparation Tips

Eligibility criteriaNo backlogUnthinkable Solutions interview preparation:Topics to prepare for the interview - Aptitude, SQL, Data structure, Dynamic Programming, Recursion, C++, Logical reasoningTime required to prepare for the interview - 7 monthsInterview preparation tips for other job seekers

Tip 1 : Read interview experience before interview
Tip 2 : Think loud about each coding question.

Application resume tips for other job seekers

Tip 1 : Have some projects on resume.
Tip 2 : No spelling mistake
Tip 3 : Resume should be in proper format

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Unthinkable Solutions Software Developer Interview Questions and Answers

Q1. Find Duplicate in ArrayYou are given an array of integers 'ARR' containing N elements. Each integer is in the range [1, N-1], with exactly one element repeated in the array. Your task is to find the duplicate element. Note : All the integer... read more
View answer (7)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

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)

 QA Engineer

 (2)

 Quality Engineer

 (2)

 Software Developer Intern

 (2)

I applied via Campus Placement and was interviewed in Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Question related to Java, Output Questions, Dql related questions
  • Q2. To prepare for the Interview just go through First 100 Interview questions of Java on javatpoint. Try to understand their underlying concept and not just memorising them. Try to understand basic coding sta...

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to follow the above pattern.

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)

Get interview-ready with Top Unthinkable Solutions Interview Questions

I applied via Recruitment Consultant

Interview Questionnaire 

1 Question

  • Q1. Well, it depends on the candidate. It can be technical or logical or both as per the experience and postition.

Interview Preparation Tips

Interview preparation tips for other job seekers - It has never been an easy thing to give an interview. You can never know what is the next question coming for you until you have some magical power to read someone's thoughts. And so what if you actually have those powers when you don't the answer. Well, that's where the problem lies. Candidates do not prepare well and this is what makes it difficult. Right?

I would advise the candidates to include reading habits into their hobbies. Spend time learning in-depth the technology you work upon daily but not just for the sake of clearing the interview. This way you will definitely be improving yourself.

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.

Tell us how to improve this page.

Unthinkable Solutions Interview Process

based on 49 interviews

Interview experience

3.8
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 801 Interviews
MAQ Software Interview Questions
2.0
 • 97 Interviews
View all

Unthinkable Solutions Reviews and Ratings

based on 161 reviews

3.0/5

Rating in categories

3.1

Skill development

2.7

Work-life balance

3.0

Salary

2.8

Job security

2.7

Company culture

2.9

Promotions

2.7

Work satisfaction

Explore 161 Reviews and Ratings
Associate Software Engineer
189 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.4 L/yr - ₹16.5 L/yr

Junior Associate Software Engineer
65 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