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 Oct 2020.

Round 1 - Video Call 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

The round lasted for about 45 min. I was asked a lot of OOPs questions. There was a detailed discussion on one of my project along with current problems in my project. How can I make it more secured and increase scalability.

  • Q1. 

    Stack using Two Queues Problem Statement

    Develop a Stack Data Structure to store integer values using two Queues internally.

    Your stack implementation should provide these public functions:

    Explanation:

    ...
  • Ans. 

    Implement a stack using two queues to store integer values.

    • Use two queues to simulate stack operations efficiently.

    • Maintain the top element in one of the queues for easy access.

    • Ensure proper handling of edge cases like empty stack.

    • Example: Push elements onto one queue, then dequeue and enqueue to the other queue for pop operation.

    • Example: Use a flag to track the top element and update it accordingly.

  • Answered by AI
Round 2 - Video Call 

Round duration - 90 minutes
Round difficulty - Hard

There were two interviewers. After introduction, and small discussion on my project. They asked my favourite subject, I answered OOP- was asked to differentiate between OOP language and Procedure Oriented Languages. Then definition of OOP and real life examples of overloading and overriding. 

I was asked to code a data structure where I can obtain, add, remove one occurrence and all occurrence in O(1). I tried using maps, he was not very satisfied. 

 

 

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Birla Institute of Technology, Mesra. Eligibility criteriaSelected candidates were contacted based on resume.Intuit interview preparation:Topics to prepare for the interview - Data structure, Algorithms, OOPs, Operating System, DBMSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Do competitive programming in 1st and 2nd year.
Tip 2 : Study every data structure and algorithm in dfs manner. Once done then practice. 
Tip 3 : Don't ignore theoretical subjects.

Application resume tips for other job seekers

Tip 1 : Do at least 2 projects. 
Tip 2 : Mention your programming accounts.

Final outcome of the interviewRejected

Skills evaluated in this interview

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)

I was interviewed before Sep 2020.

Round 1 - Coding Test 

Round duration - 90 minutes
Round difficulty - Easy

This was a coding round in which two questions were asked. I solved first question fully and the second question partially.

Round 2 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

This was face to face interview round and the interviewer asked me one question only.

  • Q1. Given an array of size n, how would you find the smallest subarray that contains k distinct values?
  • Ans. 

    Use sliding window technique to find smallest subarray with k distinct values.

    • Use a sliding window approach to keep track of the subarray with k distinct values.

    • Use a hashmap to store the frequency of each element in the window.

    • Slide the window to the right until the hashmap contains k distinct elements.

    • Shrink the window from the left while maintaining k distinct elements.

    • Update the minimum subarray length as you slide...

  • Answered by AI
Round 3 - Face to Face 

Round duration - 60 minutes
Round difficulty - Easy

I had an interview with two tech people from Intuit who had an experience of 5-6 years in the industry.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Delhi Technological University. I applied for the job as SDE - Intern in BangaloreIntuit interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Operating Systems, Database Management, Computer Networks.Time required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

I used Codezen platform of Coding Ninjas to practice data structures related questions . There you will get topic wise questions. So try to do as much as practice there or at any other coding portal to enhance your speed and efficiency. 

Application resume tips for other job seekers

Mention good level projects in your resume and also your internships or previous experiences with a brief explanation about what you have done in that internship.

Final outcome of the interviewSelected

Skills evaluated in this interview

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 Preparation Tips

Round: Test
Experience: This was a written round. Proper code with correct syntax to be written on paper.
There were 4 questions to be solved in 1 hour. Some questions needed test cases and time complexity to be answered as well.
1) Binary numbers are given as linked lists. Add and store result in linked list.
2) A number starting from 1 can be got by either multiplying 3 or adding 5 to it. Given a number, find the sequence of operations to get it or say it’s not possible.
Eg: 13 = 1 * 3 + 5 + 5, 15 ; Not possible
3) Given an input array on integers. Output an array of same length such that the value at ith position of output array is the product of all numbers in input array except that at ith position.
Eg: Input: 3, 5, 7 Output: 35, 21, 15
4) Sort a stack in ascending order using another stack.12 people were shortlisted for next round

Round: Design Round:
Experience: This was NOT an elimination round.
It was a problem solving team exercise to understand their way of working.
The interviewers were making notes though during the exercise, don’t know if it affected our selection.

Round: Technical Interview
Experience: General questions based on resume, was asked to explain my internship project.
He asked questions on my written round. Asked me to find the bug in my code for 1st problem. He was extremely happy with me when I gave the correct answer.
He asked me for the code for the last problem since I hadn’t solved it.
Asked to reverse linked list using recursion, since I said I did by iteration earlier.
He had written code of second problem, I had to find bugs in it.
Discussion on quality engineering and developer profiles.

Round: HR Interview
Experience: This was more of a general discussion. She told me about what quality engineers do, how their role is more powerful. Asked me how you would test the Google page.
She was extremely impressed by my resume and asked me questions about my electives. She told me in this round itself that I was selected, only need to wait for the official announcement.I hope this article helps students. One advice, make sure you make a good resume and also try to focus on proper code and explaining your logic well.Thank you!

College Name: NA

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)

SSE Interview Questions & Answers

user image Anonymous

posted on 25 May 2015

Interview Preparation Tips

Round: Technical Interview
Experience: Java basics:

1. int v=2

    v += v++

    what is output of V?

Round: Test
Experience: Algorithm 1: Write a code to max sub array by considering elements not next to each other Algorithm 2: design a dice face such that one normal dice is played with the designed dice then the ouput of any value should have same probability.
Some logical puzzle.

Round: Behavioural Interview
Experience: With Director of the ProductGeneral Behavioral questions

College Name: NA

SSE Interview Questions asked at other Companies

Q1. What is docker and what are the basic commands of docker
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)

I was interviewed before Jan 2021.

Round 1 - Coding Test 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This was a written round. Proper code with correct syntax to be written on paper.
There were 4 questions to be solved in 1 hour. Some questions needed test cases and time complexity to be answered as well.

  • Q1. 

    Add Two Numbers as Linked Lists

    You are given two singly linked lists, where each list represents a positive number without any leading zeros.

    Your task is to add these two numbers and return the sum as ...

  • Ans. 

    Add two numbers represented as linked lists and return the sum as a linked list.

    • Traverse both linked lists simultaneously while keeping track of carry from previous sum

    • Handle cases where one linked list is longer than the other by padding with zeros

    • Create a new linked list to store the sum of the two numbers

  • Answered by AI
  • Q2. 

    Minimum Number Of Operations To Reach X Problem Statement

    Given an array ARR of 'N' integers and an integer 'X', determine the minimum number of operations required to make the sum of removed elements fro...

  • Ans. 

    Given an array of integers and a target sum, find the minimum number of operations to make the sum of removed elements equal to the target.

    • Iterate from both ends of the array, removing elements until the sum matches the target

    • Use a two-pointer approach to efficiently find the minimum number of operations

    • If achieving the target sum is not possible, return -1

  • Answered by AI
  • Q3. 

    Product Of Array Except Self Problem Statement

    You are provided with an integer array ARR of size N. You need to return an array PRODUCT such that PRODUCT[i] equals the product of all the elements of ARR ...

  • Ans. 

    The problem requires returning an array where each element is the product of all elements in the input array except itself.

    • Iterate through the array twice to calculate the product of all elements to the left and right of each element.

    • Use two arrays to store the products to the left and right of each element.

    • Multiply the corresponding elements from the left and right arrays to get the final product array.

    • Handle integer ...

  • Answered by AI
  • Q4. 

    Sort a Stack Problem Statement

    You are provided with a stack consisting of 'N' integers. The goal is to sort this stack in descending order by utilizing recursion.

    Allowed Stack Operations:

    is_empty(S) ...
  • Ans. 

    Sort a stack in descending order using recursion without using loop constructs.

    • Implement a recursive function to sort the stack in descending order.

    • Use the provided stack operations to manipulate the stack.

    • Recursively pop elements from the stack, sort them, and push them back in descending order.

    • Handle base cases such as an empty stack or a single element stack.

    • Ensure the stack is sorted in descending order after the r...

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

General questions based on resume, was asked to explain my internship project.
He asked questions on my written round. Asked me to find the bug in my code for 1st problem. He was extremely happy with me when I gave the correct answer.
He asked me for the code for the last problem since I hadn’t solved it.
Asked to reverse linked list using recursion, since I said I did by iteration earlier.
He had written code of second problem, I had to find bugs in it.
Discussion on quality engineering and developer profiles.

  • Q1. 

    Reverse Linked List Problem Statement

    Given a singly linked list of integers, return the head of the reversed linked list.

    Example:

    Initial linked list: 1 -> 2 -> 3 -> 4 -> NULL
    Reversed link...
  • Ans. 

    Reverse a singly linked list of integers and return the head of the reversed linked list.

    • Iterate through the linked list and reverse the pointers to point to the previous node instead of the next node.

    • Use three pointers to keep track of the current, previous, and next nodes while reversing the linked list.

    • Update the head of the reversed linked list as the last node encountered during the reversal process.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAIntuit interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

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)

Get interview-ready with Top Intuit Interview Questions

I was interviewed before Jan 2021.

Round 1 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical round that lasted for around 60 minutes. The interviewer asked questions on data structures and OOPS concepts.

  • Q1. 

    Problem: Permutations of a String

    Given a string STR consisting of lowercase English letters, your task is to return all permutations of the given string in lexicographically increasing order.

    Explanatio...

  • Ans. 

    Return all permutations of a given string in lexicographically increasing order.

    • Generate all permutations of the given string using backtracking.

    • Sort the permutations in lexicographical order.

    • Print the sorted permutations separated by space.

  • Answered by AI
  • Q2. 

    Greatest Common Divisor Problem Statement

    You are tasked with finding the greatest common divisor (GCD) of two given numbers 'X' and 'Y'. The GCD is defined as the largest integer that divides both of the...

  • Ans. 

    Find the greatest common divisor (GCD) of two given numbers 'X' and 'Y'.

    • Implement a function to calculate GCD using Euclidean algorithm

    • Iteratively find the remainder of X divided by Y until Y becomes 0

    • The last non-zero remainder is the GCD of X and Y

  • Answered by AI
  • Q3. What are the differences between C, C++, and Java?
  • Ans. 

    C is a procedural language, C++ is an object-oriented language, and Java is a platform-independent language.

    • C is a procedural programming language, while C++ supports both procedural and object-oriented programming.

    • C++ is an extension of C with additional features like classes and inheritance.

    • Java is a platform-independent language that runs on a virtual machine and uses automatic memory management.

    • C is closer to the h...

  • Answered by AI
  • Q4. What is the purpose of the virtual keyword in C++?
  • Ans. 

    The virtual keyword in C++ is used to declare a member function in a base class that can be overridden in derived classes.

    • Virtual functions allow for dynamic polymorphism in C++ by enabling late binding.

    • Virtual functions are declared in the base class with the 'virtual' keyword and can be overridden in derived classes.

    • When a derived class overrides a virtual function, the function in the derived class is called instead...

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical round that lasted for around 60 minutes. The interviewer asked questions on data structures and question related to cloud computing(cloud computing was listed on my resume) .

  • Q1. 

    LRU Cache Design Question

    Design a data structure for a Least Recently Used (LRU) cache that supports the following operations:

    1. get(key) - Return the value of the key if it exists in the cache; otherw...

  • Ans. 

    Design a Least Recently Used (LRU) cache data structure that supports get and put operations with capacity constraint.

    • Implement a doubly linked list to keep track of the order of keys based on their recent usage.

    • Use a hashmap to store key-value pairs for quick access and update.

    • When capacity is reached, evict the least recently used item before inserting a new item.

    • Update the order of keys in the linked list whenever a...

  • Answered by AI
  • Q2. 

    Problem Statement: Delete Node In A Linked List

    Given a singly linked list of integers and a reference to a node, your task is to delete that specific node from the linked list. Each node in the linked li...

  • Ans. 

    Delete a specific node from a singly linked list given the reference to the node.

    • Traverse the linked list to find the node to be deleted.

    • Update the pointers to skip over the node to be deleted.

    • Print the modified linked list after deletion.

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical round that lasted for around 60 minutes. The interviewer asked questions on data structures and question related to networking.

  • Q1. 

    Insertion Sort in a Linked List

    Given a singly linked list with 'N' nodes containing integer values, your task is to sort the list using insertion sort and output the sorted list.

    Insertion Sort is an al...

  • Ans. 

    Implement insertion sort algorithm on a singly linked list.

    • Traverse the linked list and for each node, find its correct position in the sorted list.

    • Keep track of the current node and the previous node to perform the insertion.

    • Repeat this process until all nodes are sorted in the linked list.

    • Ensure to handle edge cases like empty list or list with only one node.

  • Answered by AI
  • Q2. 

    Find Duplicates in an Array

    Given an array ARR of size 'N', where each integer is in the range from 0 to N - 1, identify all elements that appear more than once.

    Return the duplicate elements in any orde...

  • Ans. 

    Find duplicates in an array of integers within a specified range.

    • Iterate through the array and keep track of the count of each element using a hashmap.

    • Return elements with count greater than 1 as duplicates.

    • Time complexity can be optimized to O(N) using a set to store duplicates.

  • Answered by AI
Round 4 - HR 

(1 Question)

Round duration - 40 minutes
Round difficulty - Easy

The Interviewer asked me questions to know more about me. He also asked a puzzle.

  • Q1. You have a racetrack with 25 horses. What is the fastest way to determine the top 3 fastest horses, given that you can only race 5 horses at a time?
  • Ans. 

    To determine the top 3 fastest horses out of 25, race horses in groups of 5 and keep track of the fastest horses in each race.

    • Divide the 25 horses into 5 groups of 5 horses each.

    • Race all 5 horses in each group, keeping track of the top 3 fastest horses in each race.

    • After 5 races, you will have the top 3 fastest horses from each group.

    • Race the top 3 horses from each group in a final race to determine the overall top 3 f

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAIntuit interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OS, DBMS , Aptitude, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

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 Questions & Answers

user image Anonymous

posted on 16 May 2015

Interview Preparation Tips

Round: HR Interview
Experience: Questions on Collections ,
         a. How AtomicInteger works
         b. Hierarchy of Collection
         c. Internal Functioning of Hashmap.
         d. Fail fast and Fail Safe Iterator.
         e. Write different ways in which you can traverse over a map.   
I don't remember other questions, but the interviewer grilled me completely in Java.

Round: HR Interview
Experience: Find the Median in two sorted arrays.
     2. OS questions
         – questions related to memory management and allocation.
         – Fragmentation.
     3. Design Question
         – Bus Seat booking System.Later i was informed that i was not selected, but i was really impressed with the nature of the interviewers, they were very friendly and cooperative, I was happy that i realised how hard i need to work.

College Name: NA

Interview Questions & Answers

user image Anonymous

posted on 16 May 2015

Interview Preparation Tips

Round: Test
Experience: It comprised of general aptitude questions and two coding questions. It was an offline test. The coding questions were:

1. Given an array A[] consisting of 0’s, 1’s and 2’s, give an algorithm for sorting A.

2. N-Queen Problem.After this round around 40 students were shortlisted from around 150 students.After this there were three more rounds and each round was an elimination one.

Round: Round 2: HR PROJECT DISCUSSION
Experience: 1. The interviewer started by having a look at my CV. He asked for a firm technical introduction.

2. He asked question about my projects. As I have had my intern from a very good place, he appeared impressed from the very start.

3. After having a technical discussion about my CV. He gave me two questions to code as following:

    a.) Given a linked list find whether loop exists or not. Find the starting point of loop.

    b.) Given a very big string, find whether the given substring exists or not in minimum time and space complexity.After this round around 15 students were shortlisted.

Round: Round 3: HR
Experience: 1. The interviewer was a young guy. He too had a look at my CV and appeared impressed.

2. He discussed in detail about the two major projects done during my internship.

3. He sat smiling at me with a friendly look and said that yes you have had actually done a lot of work. In the end for formality sake he gave me one question to code. The question was to find the in-order successor in a binary tree. He later told me that the tree is BST.

After this round around 5 students were shortlisted.

Round: Round 4: HR
Experience: This was supposed to be the HR round but out of surprise the interviewer started by giving me a question to code. The question was to print all the combinations of balanced parenthesis for a given value n. For example if n=2, we will have ()(), (()) as two balanced pairs possible.

After I approached this question with the right solution he just asked about my family. After that he said to wait.

After half an hour the results were announced. A total of three students were hired and I was amongst one of them.

College Name: NA

Interview Preparation Tips

Round: Test
Experience: 3 coding questions - had to write efficient and working code or algorithm for them along with test cases for them.

Round: Group Activity
Experience: A topic is given followed by brainstorming. After this we were divided into groups of four we had to come up with a group solution for the problem given and present it.

Round: Technical Interview
Experience: Two Rounds - consisting of algorithm , Data structures , puzzles , questions based on projects and bit of Operating Systems.

Round: HR Interview
Experience: This was just normal interaction and past experiences and stuff.

General Tips: 1. Cracking The Coding Interview : The best book for coding interview preparations.
2. AmbitionBox - A really big help! Do refer other companies in the same sector as well to prepare !
Know what you have written in your resume well and be prepare to answer any question related to those stuff.
Skills:
College Name: NIT Surathkal

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 Preparation Tips

Round: Test
Experience: I got pre placement offer from the company after doing a 10 week internship there. The placement procedure was the same as that done for internship. There were 4 stages. The first one was the written test followed by a group activity. The shortlisted candidates were divided into groups and had to come up with a solution for a given problem statement. This was a no elimination round

Round: Technical Interview
Experience: All candidates had to go through a technical interview. The type of questions asked depended on one's strengths and the interviewer.

General Tips: Dress appropriately but comfortably and look confident even if you are not. Do not hesitate while answering questions. Even if you are not sure if the answer is entirely correct, attempting is important. Be active in the group activity. Try acting as the team leader. This gets you noticed.
Intuit has given importance to out of the box thinking. Answer questions in your own way as long as you have a good explanation for why you are right. They prefer unexpected answers especially for the HR round.
The overall experience was really good especially because the recruiters were friendly and systematic.
Skills:
College Name: NIT Surathkal

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

SALARIES

BIZONGO

SALARIES

Arms

SALARIES

Intuit

INTERVIEWS

Intuit

No Interviews

SALARIES

Arms

SALARIES

Wynk

LIST OF COMPANIES

Discover companies

Find best workplace

INTERVIEWS

Hortonworks

No Interviews

LIST OF COMPANIES

Confluent

Overview

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

₹0 L/yr - ₹0 L/yr

Software Engineer2
146 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
126 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Devops Engineer
45 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Staff Software Engineer
43 salaries
unlock blur

₹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