Upload Button Icon Add office photos

Filter interviews by

Clear (1)

MindTickle Software Developer Interview Questions, Process, and Tips

Updated 28 Nov 2024

Top MindTickle Software Developer Interview Questions and Answers

  • Q1. Search in a Row-wise and Column-wise Sorted Matrix Problem Statement You are given an N * N matrix of integers where each row and each column is sorted in increasing ord ...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. Ninja and His Meetings Problem Statement Ninja has started a new startup with a single conference room available for meetings. Given an array/list MEETINGS of consecutiv ...read more
View all 6 questions

MindTickle Software Developer Interview Experiences

3 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Instahyre and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Design LLD for Parking Lot
  • Ans. 

    Design LLD for Parking Lot

    • Create classes for ParkingLot, ParkingSpot, Vehicle, etc.

    • Implement methods for parking, unparking, checking availability, etc.

    • Consider different types of vehicles and parking spots (e.g. regular, handicapped, electric)

    • Include features like ticketing system, payment processing, and security measures

  • Answered by AI

Skills evaluated in this interview

I was interviewed in Oct 2021.

Round 1 - Video Call 

(1 Question)

Round duration - 50 minutes
Round difficulty - Medium

First round was a basic javascript problem-solving round. The interviewer judged my grasp on fundamental javascript concepts like objects, closures, polyfills, etc. It was during the afternoon and was conducted on google meet and leetcode playground.
The interviewer was very calm. I was first asked some general questions like why I'm applying for this role and what are the projects I've done.

  • Q1. 

    Search in a Row-wise and Column-wise Sorted Matrix Problem Statement

    You are given an N * N matrix of integers where each row and each column is sorted in increasing order. Your task is to find the positi...

  • Ans. 

    This question asks to find the position of a target integer in a row-wise and column-wise sorted matrix.

    • Iterate through each row and column of the matrix

    • Compare the target integer with the current element

    • If the target integer is found, return the position as {i, j}

    • If the target integer is not found, return {-1, -1}

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 40 minutes
Round difficulty - Easy

One DSA Question along with some javascript questions were asked like hoisting, difference between JSX and Javascript etc.

  • 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 of each bar.

    • Calculate the amount of water that can be trapped at each bar by taking the minimum of the maximum heights on the left and right.

    • Sum up the trapped water for all bars and return the total amount.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in PuneEligibility criteriaAt least an undergraduate degree.MindTickle interview preparation:Topics to prepare for the interview - Javascript, Execution Context, Closures, Prototypal Inheritance, Composition, Event Loop, Promises, React lifecycles, React hooks, Web fundamentals (Security, TCP/IP etc)Time required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Focus on core Javascript fundamentals before becoming a framework ninja
Tip 2 : Have at least one (or more) good project(s) which shows your experience in frontend development
Tip 3 : Practice fundamental javascript questions and machine coding

Application resume tips for other job seekers

Tip 1 : Clearly highlight the skills you have which match with the role you are applying for.
Tip 2 : Mention the work you have done in your internships related to your role (frontend in my case), work experience matters
Tip 3 : Mention some really good projects in your resume.
Tip 4 : Having some special achievements like SIH, Gsoc, etc. certainly helps but isn't compulsory.

Final outcome of the interviewSelected

Skills evaluated in this interview

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 Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more

I was interviewed in Apr 2021.

Round 1 - Telephonic Call 

(2 Questions)

Round duration - 45 Minutes
Round difficulty - Easy

It was a DSA round where I was asked 2 coding questions and optimised approaches for both.

  • Q1. 

    Ninja and His Meetings Problem Statement

    Ninja has started a new startup with a single conference room available for meetings. Given an array/list MEETINGS of consecutive appointment requests, Ninja must ...

  • Ans. 

    Find the maximum total booked minutes possible in a conference room for all meetings with a 15-minute break between meetings.

    • Iterate through the list of meeting durations and calculate the maximum total booked minutes considering the 15-minute break constraint.

    • Keep track of the total booked minutes and skip consecutive meetings that violate the break constraint.

    • Return the maximum total booked minutes for each test case

  • Answered by AI
  • Q2. 

    Trapping Rain Water II Problem Statement

    Given an M * N matrix where each cell's value represents its height in a 2-D elevation map, calculate the total volume of water that can be trapped after rainfall.

    ...
  • Ans. 

    Calculate the total volume of water that can be trapped in a 2-D elevation map after rainfall.

    • Iterate through each cell in the matrix and calculate the trapped water based on the surrounding heights.

    • Use a stack or queue to keep track of the cells to be processed.

    • Consider edge cases such as when the matrix is empty or has only one row or column.

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Medium

It was more of discussion around my projects and resume. Also asked some questions related to me. What are your hobbies? Willing to relocate?

  • Q1. 

    Smallest Subarray With K Distinct Elements

    Given an array A consisting of N integers, your task is to find the smallest subarray of A that contains exactly K distinct integers.

    If multiple such subarrays...

  • Ans. 

    Find the smallest subarray with exactly K distinct elements in an array.

    • Use a sliding window approach to keep track of the subarray with K distinct elements.

    • Maintain a hashmap to count the frequency of each element in the window.

    • Update the window size based on the number of distinct elements.

    • Return the smallest subarray with K distinct elements.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from National Institute of Technology Karnataka Surathkal.. Eligibility criteriaNAMindTickle interview preparation:Topics to prepare for the interview - OOPs, OS, DBMS, C++, System Design, Dynamic Programming, Pointers, System DesignTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Be consistent, you might not get success in the starting but if you are consistent with your prep, then in the end you will get offers from most companies
Tip 2 : Do participate in contests on leetcode
Tip 3 : Have a good resume

Application resume tips for other job seekers

Tip 1 : Good projects
Tip 2 : Includes achievements in coding contests like ACM ICPC or Google kickstart, Hashcode.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview questions from similar companies

I applied via Company Website and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions on Java,SQL,some trending technologies(IOT,Big data),pattern questions, programming questions with different approaches.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics of DSA, have knowledge about the databases, some common dml ,ddl statements, programming knowledge of a particular language like C,Java, python,etc...have good command on oops concepts... little bit of frameworks knowledge will also help

I applied via Newspaper Ad and was interviewed before Jun 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 
Round 2 - Technical 

(1 Question)

  • Q1. Basic questions of java.
Round 3 - HR 

(1 Question)

  • Q1. Intro and other hr related questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Cover the basic questions regarding the programming language.

I applied via Referral and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Puzzles, Psychometric Test

Round 2 - One-on-one 

(1 Question)

  • Q1. Some water in 3 Jars question, you had to measure out 5L correctly

Interview Preparation Tips

Interview preparation tips for other job seekers - Make the interview interactive, I got this input from another Senior. Before i went into the interview room the volunteers were telling all those who goes into Room No 1 is screwed. I was praying i don't get room no 1. But fortunately for me I got room no 1 because when the interviewer gave me the puzzle and handed over pen and paper he went back to relax his posture and when i explained i will fill the 5L Jar first, he immediately came forward to listen to me, at that moment i knew i got the job because i felt the previous candidates never made their interview interactive and that's why he went back to relax his posture.
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
Not Selected

I applied via Walk-in and was interviewed before Jan 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all Resume tips
Round 2 - Aptitude Test 

Aptitude test duration 90 min 100 question

Round 3 - Coding Test 

Coding test 50 code 100 marks 60 min

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well. code in c , c++ , java is very important

I applied via Company Website and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

First round was coding as well as aptitude done together went well I guess focusing on codes helps a lot.

Round 2 - Technical 

(1 Question)

  • Q1. 2nd round included tr and mr round went quite enegritic

Interview Preparation Tips

Interview preparation tips for other job seekers - Resume skills matters a lot don't fill resume the technologies you don't even aware of

I was interviewed in Sep 2016.

Interview Questionnaire 

3 Questions

  • 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 and ability to work in a team

    • Completed multiple projects including a web-based inventory management system

  • Answered by AI
  • Q2. Simple coding questions..Basically pattern.
  • Q3. And also they will ask about your projects.

Interview Preparation Tips

Round: Test
Experience: 60 multiple choice questions so have to manage time carefully.
Tips: Have to give equal importance to all the sections..So try to do well in all section.
Duration: 1 hour 30 minutes
Total Questions: 60

Round: Technical + HR Interview
Experience: Don't panic...Only write those things that you know in your resume.

Skills: Smart Coding
College Name: Jaypee Institute Of Information Technology, Noida

I was interviewed in May 2017.

Interview Preparation Tips

Round: Test
Total Questions: 20

Round: Group Discussion
Duration: 1 hour

Skills: Coding Skills And Knowledge On Data Structures
Contribute & help others!
anonymous
You can choose to be anonymous

MindTickle Interview FAQs

How many rounds are there in MindTickle Software Developer interview?
MindTickle interview process usually has 1 rounds. The most common rounds in the MindTickle interview process are Technical.
How to prepare for MindTickle 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 MindTickle. The most common topics and skills that interviewers at MindTickle expect are CSS, Enterprise Software, HTML, Javascript and Life Sciences.

Recently Viewed

INTERVIEWS

Info Edge

No Interviews

INTERVIEWS

Oil India

No Interviews

INTERVIEWS

ICICI Bank

No Interviews

INTERVIEWS

Directi

No Interviews

INTERVIEWS

Flipkart

No Interviews

INTERVIEWS

Adobe

No Interviews

INTERVIEWS

Meesho

No Interviews

INTERVIEWS

Biocon Biologics

No Interviews

INTERVIEWS

Cult.fit

No Interviews

INTERVIEWS

Tredence

No Interviews

Tell us how to improve this page.

MindTickle Software Developer Interview Process

based on 3 interviews

Interview experience

1.7
  
Bad
View more
MindTickle Software Developer Salary
based on 7 salaries
₹13 L/yr - ₹21 L/yr
109% more than the average Software Developer Salary in India
View more details

MindTickle Software Developer Reviews and Ratings

based on 2 reviews

2.1/5

Rating in categories

2.6

Skill development

2.7

Work-life balance

2.6

Salary

2.1

Job security

2.1

Company culture

2.1

Promotions

2.1

Work satisfaction

Explore 2 Reviews and Ratings
Software Development Engineer II
25 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer
20 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
15 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
13 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Manager
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare MindTickle with

Freshworks

3.5
Compare

Zoho

4.3
Compare

InMobi

3.5
Compare

Mu Sigma

2.6
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