Upload Button Icon Add office photos

Intuit

Compare button icon Compare button icon Compare

Filter interviews by

Intuit Interview Questions, Process, and Tips

Updated 6 Jan 2025

Top Intuit Interview Questions and Answers

View all 92 questions

Intuit Interview Experiences

Popular Designations

77 interviews found

I was interviewed in Aug 2016.

Interview Questionnaire 

7 Questions

  • Q1. Given an array and a number find a pair of integers in the array whose sum is equal to given number.
  • Ans. 

    Find a pair of integers in an array whose sum is equal to a given number.

    • Iterate through the array and for each element, check if the difference between the given number and the current element exists in the array.

    • Use a hash set to store the elements of the array for efficient lookup.

    • Return the pair of integers if found, otherwise return a message indicating no such pair exists.

  • Answered by AI
  • Q2. Find lca of 2 nodes in a binary tree (write pseudocode)
  • Ans. 

    The Lowest Common Ancestor (LCA) of two nodes in a binary tree is the deepest node that is a common ancestor of both nodes.

    • Start from the root node and traverse the tree to find the given nodes.

    • Store the paths from the root to each node.

    • Compare the paths to find the last common node, which is the LCA.

  • Answered by AI
  • Q3. Implement a specialStack class which should support O(1) push O(1) pop and should return minimum element in the stack in O(1) time
  • Ans. 

    Implement a specialStack class with O(1) push, pop, and minimum element retrieval.

    • Use an additional stack to keep track of the minimum element at each step.

    • When pushing an element, compare it with the top of the minimum stack and update if necessary.

    • When popping an element, also pop from the minimum stack if the popped element is the current minimum.

  • Answered by AI
  • Q4. Explain polymorphism and other OOPS concepts
  • Ans. 

    Polymorphism is the ability of an object to take on many forms. Other OOPS concepts include inheritance, encapsulation, and abstraction.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • Inheritance allows a class to inherit properties and methods from another class.

    • Encapsulation is the bundling of data and methods within a class, hiding the internal details.

    • Abstraction foc...

  • Answered by AI
  • Q5. How do you design a website which displays say top 1000 products with product rating updating every second?
  • Ans. 

    To design a website displaying top 1000 products with real-time rating updates, use a combination of backend and frontend technologies.

    • Implement a backend system to fetch and update product ratings from a database or API.

    • Use a frontend framework like React or Angular to create a dynamic user interface.

    • Implement pagination or lazy loading to handle the large number of products.

    • Optimize the website for performance by cac...

  • Answered by AI
  • Q6. Given a million points and a new point P find a point closest to P(you can do preprocessing)
  • Ans. 

    Find the point closest to a given point P among a million points.

    • Preprocess the million points to calculate their distances from P.

    • Store the distances and corresponding points in a data structure.

    • Sort the distances in ascending order.

    • Return the point corresponding to the smallest distance.

  • Answered by AI
  • Q7. Given a function which upon input x returns f(x) write code to evaluate integral a to b f(x)dx (what is the maximum accuracy of your algorithm)

Interview Preparation Tips

Round: Test
Experience: 10 MCQs and 3 programming questions are given.
MCQs included questions asking the outputs of code snippets, algorithmic complexities.
Programming problems are tough.
I was able to solve only 1 problem completely and 1 partially.
Partial score is given for passing some test cases.
Tips: For programming problems code any solution(even brute force) if you are not able to come up with exact solution
Duration: 1 hour
Total Questions: 13

Round: Technical Interview
Experience: I was able to solve all questions.
Tips: Read geeksforgeeks and other blogs for standard problems

Round: Technical Interview
Experience: I couldn't answer 3rd and 4th questions properly but gave some suboptimal solutions.
Tips: Answer multiple solutions trading off time and space complexities

Skills: Programming, Algorithmic Approach To Problem Solving
College Name: IIT Kharagpur

Skills evaluated in this interview

Top Intuit Software Developer 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. Input: The first line contains an integer 'T', the number of test cases.Th... 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 (42)
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 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 each type: 'countA' denotes the number of type 'A' people, and 'countB'... read more
View answer (1)

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)
Intuit 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 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)

Intuit interview questions for popular designations

 Software Developer

 (18)

 Senior Software Engineer

 (11)

 Software Developer Intern

 (7)

 Software Engineer

 (6)

 Software Engineer2

 (5)

 SDE-2

 (2)

 Intern

 (2)

 Senior Software Engineer 2

 (2)

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)

Get interview-ready with Top Intuit Interview Questions

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.
  • Ans. 

    Intuit's innovative culture and focus on customer-centric solutions align with my passion for driving business growth through data-driven insights.

    • Intuit's reputation for developing cutting-edge financial software solutions appeals to my interest in leveraging technology to drive business success.

    • I admire Intuit's commitment to customer satisfaction and believe my analytical skills can contribute to enhancing user expe...

  • Answered by AI
  • Q2. Previous roles and responsibilities
  • Ans. 

    I have experience as a Business Analyst in the software industry, where I analyzed user requirements and translated them into functional specifications.

    • Analyzed user requirements to understand business needs

    • Translated requirements into functional specifications for development team

    • Collaborated with stakeholders to ensure project success

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Presentational Skills
  • Q2. How you are the best fit for this role
  • Ans. 

    I have a strong background in analyzing product data and identifying business opportunities.

    • Extensive experience in analyzing market trends and customer feedback to drive product improvements

    • Proven track record of successfully launching new products and optimizing existing ones

    • Strong communication skills to collaborate with cross-functional teams and stakeholders

    • Proficient in using data analysis tools and techniques to

  • Answered by AI
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)
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 Non-Adjacent Subsequence Sum Given an array of integers, determine the maximum sum of a subsequence without choosing adjacent elements in the original array. Input: The first line consists of an integer 'T', the number of test cases... read more
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)
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 (196)
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 Non-Adjacent Subsequence Sum Given an array of integers, determine the maximum sum of a subsequence without choosing adjacent elements in the original array. Input: The first line consists of an integer 'T', the number of test cases... read more
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)
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. Key qualities of a Program Manager
View answer (1)

SDE-2 Interview Questions & Answers

user image Anonymous

posted on 3 May 2024

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

I applied via Instahyre and was interviewed in Apr 2024. There were 4 interview rounds.

Round 1 - Coding Test 

There is 1 coding question from ds, and 5 MCQs from general programming knowledge

Round 2 - Case Study 

This is a craft round where you have to finish an assignment keeping in mind all the protocols, basically a production ready code. Around a week's time is given

Round 3 - Technical 

(1 Question)

  • Q1. This round is based on the project we have done, they asked to do some modifications there and then, examples like change the queries, api responses, unit test cases, logging, caching, implementation of lo...
Round 4 - Technical 

(1 Question)

  • Q1. This is purely DS algo round, they asked a dp based question which I couldn't answer. Something modified on house robbery problem

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared for th DS algo round

SDE-2 Interview Questions asked at other Companies

Q1. Maximum Frequency Number Problem Statement Given an array of integers with numbers in random order, write a program to find and return the number which appears the most frequently in the array. If multiple elements have the same maximum fre... read more
View answer (5)
Contribute & help others!
anonymous
You can choose to be anonymous

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.

Recently Viewed

INTERVIEWS

Intuit

No Interviews

INTERVIEWS

Amadeus

No Interviews

INTERVIEWS

BIZONGO

No Interviews

INTERVIEWS

Intuit

No Interviews

INTERVIEWS

Arms

No Interviews

INTERVIEWS

Intuit

No Interviews

INTERVIEWS

BIZONGO

No Interviews

INTERVIEWS

Intuit

No Interviews

INTERVIEWS

PharmEasy

No Interviews

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.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
IBM Interview Questions
4.0
 • 2.3k Interviews
Oracle Interview Questions
3.7
 • 847 Interviews
SAP Interview Questions
4.2
 • 283 Interviews
Adobe Interview Questions
3.9
 • 234 Interviews
Salesforce Interview Questions
4.0
 • 222 Interviews
View all

Intuit Reviews and Ratings

based on 164 reviews

3.5/5

Rating in categories

3.2

Skill development

3.5

Work-life balance

4.2

Salary

3.0

Job security

3.3

Company culture

3.1

Promotions

3.0

Work satisfaction

Explore 164 Reviews and Ratings
Senior Software Engineer
219 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Software Engineer2
146 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Software Engineer
126 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Devops Engineer
45 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Staff Software Engineer
43 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Intuit with

Salesforce

4.0
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