Upload Button Icon Add office photos

Filter interviews by

Intuit Interview Questions, Process, and Tips

Updated 6 Jan 2025

Top Intuit Interview Questions and Answers

  • Q1. Word Presence in Sentence Determine if a given word 'W' is present in the sentence 'S' as a complete word. The word should not merely be a substring of another word. Inp ...read more
    asked in Software Developer interview
  • Q2. Grid Satisfaction Problem In this problem, you are given a grid of size N*M containing two types of people: type ‘A’ and type ‘B’. You are given the number of people of ...read more
    asked in Software Developer Intern interview
  • Q3. Maximum Non-Adjacent Subsequence Sum Given an array of integers, determine the maximum sum of a subsequence without choosing adjacent elements in the original array. Inp ...read more
    asked in Senior Software Engineer interview
View all 92 questions

Intuit Interview Experiences

Popular Designations

88 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected
Round 1 - Coding Test 

DSA based on any general language prefer C++

Round 2 - Technical 

(3 Questions)

  • Q1. DBMS, BST, Sieve of Erathnus, Dynamic Programming
  • Q2. Debugging c++ code
  • Q3. OOPS based question
Round 3 - HR 

(1 Question)

  • Q1. General questions and some questions on personality

Top Intuit Software Developer Intern Interview Questions and Answers

Q1. Grid ValueYou are given a grid of size N*M. There are two types of people, type ‘A’ and type ‘B’ . You are also given the number of people of each type say ‘countA’ is the number of ‘A’ type persons and ‘countB’ is the number of ‘B’ type of... read more
View answer (2)

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
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Glider coding test
1 easy and 1 medium leetcode question

Round 2 - Technical 

(2 Questions)

  • Q1. Min cost of painting the houses, given no two adjacent houses are of same color List input ={[17,2,17],[16,16,5],[14,3,19]} To be solved using dynamic programming
  • Ans. 

    Dynamic programming solution to find minimum cost of painting houses with no adjacent houses of same color

    • Create a 2D dp array to store the minimum cost of painting each house with each color

    • Iterate through each house and each color option, updating the dp array with the minimum cost

    • Return the minimum cost of painting the last house

  • Answered by AI
  • Q2. Questions on multithreading and different type of thread pool

Interview Preparation Tips

Topics to prepare for Intuit Senior Software Engineer 2 interview:
  • Dynamic Programming

Senior Software Engineer 2 Interview Questions asked at other Companies

Q1. What microservices patterns are you aware ? let's assume that there is a microservice based architecture and service A is calling service B which in turn service C. If service b fails, how will you manage transaction and logging ?
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Very broad generic system design question, where she was trying to know all that I know of. Not a focused system design question to focus on any particular aspect.
  • Q2. Given a string of parenthesis, determine if it forms valid parenthesis or not.
  • Ans. 

    Check if a string of parenthesis is valid or not.

    • Use a stack to keep track of opening parenthesis.

    • Iterate through the string and push opening parenthesis onto the stack.

    • When encountering a closing parenthesis, pop from the stack and check if it matches the corresponding opening parenthesis.

    • If stack is empty at the end and all parenthesis have been matched, the string is valid.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The expectancy was to directly know the underlying technology that the interviewer was using in her team. Trying to arrive at an answer progressively to determine the technology was not appreciated. Not a good experience with the interview. They expect us to know what they are using internally, rather than focusing on interview and candidate experience.

Skills evaluated in this interview

Senior Staff Software Engineer Interview Questions asked at other Companies

Q1. Given a string of parenthesis, determine if it forms valid parenthesis or not.
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Good experience with the coding with medium difficulty questions

Round 2 - Technical 

(2 Questions)

  • Q1. Dbms related queries
  • Q2. OS practical questions

Summer Intern Interview Questions asked at other Companies

Q1. There are 8 bottles of milk out of which one bottle is poisoned. What will be the minimum number of persons required to find the poisoned bottle if the person dies within 24 hours of drinking the poison. You have only 24 hours.
View answer (6)

Intuit interview questions for popular designations

 Software Developer

 (19)

 Senior Software Engineer

 (11)

 Software Engineer

 (9)

 Software Developer Intern

 (7)

 Software Engineer2

 (5)

 Intern

 (2)

 Production Manager

 (2)

 SDE-2

 (2)

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Why and How Intuit? What would make you a fit.
  • Q2. Previous roles and responsibilities
Round 2 - Technical 

(2 Questions)

  • Q1. Presentational Skills
  • Q2. How you are the best fit for this role
Round 3 - Technical 

(1 Question)

  • Q1. Provided instructions and questions based on it.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well. Minimal preparation won’t help!

Product Business Analyst Interview Questions asked at other Companies

Q1. 1. what is the day-to-day activity of the Product analyst 2. What A/B testing 3. Case study on how many Tata cars are there in India 4. Asked about the difference between rank, dense_rank,row_number,
View answer (1)

Get interview-ready with Top Intuit Interview Questions

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Rest API retry based questions.
  • Q2. Data access layer questions
Round 2 - One-on-one 

(2 Questions)

  • Q1. Dad algo based question
  • Q2. Dad algo based question 2

Interview Preparation Tips

Interview preparation tips for other job seekers - A very thorough interview it was. They also give a small at home test.

Top Intuit Senior Software Engineer Interview Questions and Answers

Q1. Maximum sum of non-adjacent elementsYou are given an array/list of ‘N’ integers. You are supposed to return the maximum sum of the subsequence with the constraint that no two elements are adjacent in the given array/list. Note: A subsequenc... read more
View answer (4)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Design Rate Limiter

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

Software Engineer interview

user image Keerti Purswani

posted on 11 Jan 2022

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Html, js and css concepts

Round 2 - Coding Test 

Binary search related questions

Round 3 - Technical 

(2 Questions)

  • Q1. Projects handled at the current organisation
  • Ans. 

    Developed and maintained multiple web applications for internal use

    • Led a team in redesigning the company's main website to improve user experience

    • Implemented new features and functionalities based on user feedback

    • Optimized existing codebase to improve performance and scalability

    • Integrated third-party APIs to enhance application capabilities

  • Answered by AI
  • Q2. How to figure errors before customers report it
  • Ans. 

    Implement automated monitoring and logging to proactively detect errors before customers report them.

    • Set up automated monitoring tools to track system performance and detect anomalies

    • Implement logging mechanisms to capture errors and exceptions in real-time

    • Utilize error tracking software to aggregate and analyze error data

    • Establish alerts and notifications for critical errors to prompt immediate action

    • Regularly review ...

  • Answered by AI

Skills evaluated in this interview

Top Intuit Senior Software Engineer Interview Questions and Answers

Q1. Maximum sum of non-adjacent elementsYou are given an array/list of ‘N’ integers. You are supposed to return the maximum sum of the subsequence with the constraint that no two elements are adjacent in the given array/list. Note: A subsequenc... read more
View answer (4)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(5 Questions)

  • Q1. No questions, fake discussion without any questions :)
  • Ans. YES. Interview Mr Neeraj soni was incapable to ask any questions. Basically he himself is from testing background and was kept on discussing how his part 7months timespan with Amazon engineering manager was used to work and what Intuit eng manager is working and was asking about mine. BEginning itself he said that I am having very good experience and later said he liked to have the conversation. With this conclusion of
  • Answered Anonymously
  • Q2. Confused interviewer as fake discussion and half experienced testing background resource Neeraj soni
  • Q3. STated you are having very good experience
  • Q4. Interviewer kept on speaking about his past 7months duration with Amazon engineering manager what work he was doing and mapping of that with my and his current Intuit org engineering manager
  • Q5. After above he stated he liked to have conversation with me. Interviewfinished

Interview Preparation Tips

Interview preparation tips for other job seekers - FAThis company arranged fake interview discussion where interviewer didnt ask any questions and just was busy with mapping of what his own past 7months duration Amazon engineering manager was used to work, whats in his current Intuit org and was enquiring in my organisation. He clearly stated you have very good experience and towards end he liked to have the discussion with me. Interview over.
When I had escalated this fake interview to their recruitment team when consultancy didnt responded to me for 2 days then in the reply Intuit recruitment team didnt followed any professional protocols and responded very badly with unrealistic feedback with consultancy GM cc'ed. In my email I had also requested them to correct their end process, have some internal checks so that no other candidate will get humiliated by half experienced guy that too from testing background not in a position to ask a single interview question to me. Regarding fake interview calls Intuit recruitment mentioned 'they worked with multiple vendors and I must have received fake call from them'.
They put the blame very easily from whom they are getting resources to expand own business and need basis finerpointing to them. No doubt the way they responded and instead of correcting own process they were fingerpointing to me very badly by producing fake feedback. For feedback interview should happen in the first instance isnt it. No matter if interviewer is 1 yr experienced also should ask some questions then he is liable to come up with feedback.
It doesnt ends here. Recruitment team Rudresh Nayana copies leadership team Pritha Talukdar from PMO team. :) I found same lady owns flat in my same residential apartment. In this duration she arranged threatening calls to me for continuous 2 saturdays. Threatening fake calls by some muslim person on the truecaller screen. This saturday she sent fake people to my doorstep stating oh we wanted to goto different block and came here and surprisingly those people names got changed within a day. Story doesnt ends here. When I put in my apartment mygate app stating this lady to come forward and apologise else be ready to face police, instead of apologising her husband same day added 1 muslim fellow to apartment mygate app as owner along with him and this owner is bengali :) This team is having some friend circle in mumbai region and prior weeks fake muslim fellow call was from mumbai location and this family must not be able to share any mygate text sent by me hence added muslim fellow.
This team of Neeraj soni, Pritha Talukdar , Rudresh Nayana dont even understand difference between PMO and develop. They are tied up with some muslim friend circle and reaching to this cheap level to provide own residential apartment neibours information to some muslim friends of them. What could be their another background god knows.
My apartment team is rigourously working on cctv footage etc

Senior Technical Program Manager Interview Questions asked at other Companies

Q1. Tell me how you would make optimizations
View answer (1)

Intuit Interview FAQs

How many rounds are there in Intuit interview?
Intuit interview process usually has 2-3 rounds. The most common rounds in the Intuit interview process are Technical, Coding Test and One-on-one Round.
How to prepare for Intuit 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 Intuit. The most common topics and skills that interviewers at Intuit expect are Java, AWS, Python, Software Development and Agile Development.
What are the top questions asked in Intuit interview?

Some of the top questions asked at the Intuit interview -

  1. How do you design a website which displays say top 1000 products with product r...read more
  2. Given an array of n elements which contains elements from 0 to n­1, with any o...read more
  3. Given a word and dictionary, write a program to calculate the total number of v...read more
How long is the Intuit interview process?

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

Tell us how to improve this page.

Intuit Interview Process

based on 57 interviews

Interview experience

4.1
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Accenture Interview Questions
3.9
 • 8.1k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
Oracle Interview Questions
3.7
 • 895 Interviews
SAP Interview Questions
4.2
 • 304 Interviews
Salesforce Interview Questions
4.1
 • 270 Interviews
Adobe Interview Questions
4.0
 • 249 Interviews
View all

Intuit Reviews and Ratings

based on 161 reviews

3.6/5

Rating in categories

3.3

Skill development

3.5

Work-life balance

4.2

Salary

3.1

Job security

3.4

Company culture

3.1

Promotions

3.1

Work satisfaction

Explore 161 Reviews and Ratings
Senior Software Engineer
225 salaries
unlock blur

₹20 L/yr - ₹80 L/yr

Software Engineer2
140 salaries
unlock blur

₹20 L/yr - ₹52 L/yr

Software Engineer
121 salaries
unlock blur

₹14 L/yr - ₹47.2 L/yr

Devops Engineer
45 salaries
unlock blur

₹4.2 L/yr - ₹16 L/yr

Staff Software Engineer
43 salaries
unlock blur

₹32 L/yr - ₹97 L/yr

Explore more salaries
Compare Intuit with

Salesforce

4.1
Compare

Yodlee

3.8
Compare

SAP

4.2
Compare

Oracle

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview