Upload Button Icon Add office photos

Intuit

Compare button icon Compare button icon Compare

Filter interviews by

Intuit Senior Software Engineer Interview Questions, Process, and Tips

Updated 1 Nov 2024

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. Inp ...read more
  • Q2. How to measure and ensure to not breach SLA
  • Q3. How to figure errors before customers report it
View all 6 questions

Intuit Senior Software Engineer Interview Experiences

11 interviews found

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

I was interviewed before Sep 2023.

Round 1 - Coding Test 

Problem solving questions

Round 2 - Coding Test 

Check whether linked list is palindrome or not

Round 3 - Technical 

(2 Questions)

  • Q1. Implement rate limiter
  • Q2. Implementation of LRU cache
  • Ans. 

    LRU cache is a data structure that stores the most recently used items, discarding the least recently used items when full.

    • Use a doubly linked list to keep track of the order of items based on their usage.

    • Use a hash map to quickly access items in the cache.

    • When a new item is accessed, move it to the front of the linked list. If the cache is full, remove the item at the end of the list.

  • Answered by AI
Round 4 - HM 

(2 Questions)

  • Q1. How to build low latency systems
  • Ans. 

    To build low latency systems, focus on optimizing code, reducing network latency, using efficient data structures, and leveraging caching.

    • Optimize code by reducing unnecessary computations and improving algorithms

    • Reduce network latency by minimizing round trips and using efficient protocols like UDP

    • Use efficient data structures like arrays and hash maps for quick access to data

    • Leverage caching to store frequently acces

  • Answered by AI
  • Q2. How to measure and ensure to not breach SLA
  • Ans. 

    To measure and ensure not breaching SLA, track performance metrics, set alerts, prioritize tasks, and regularly review and adjust processes.

    • Track performance metrics such as response time, uptime, and error rates

    • Set up alerts for when performance metrics approach SLA thresholds

    • Prioritize tasks based on their impact on SLA compliance

    • Regularly review and adjust processes to optimize performance and prevent breaches

  • Answered by AI

Skills evaluated in this interview

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.

Senior Software Engineer Interview Questions Asked at Other Companies

Q1. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in DBS Bank
Q2. Tell me about yourself. What technology are you using? What is a ... read more
asked in GlobalLogic
Q3. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
asked in UST
Q4. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q5. Pascal's Triangle Construction You are provided with an integer ' ... read more
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

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Easy to medium lc question

Round 2 - Assignment 

Full stack application

Round 3 - Technical 

(2 Questions)

  • Q1. Java based questions
  • Q2. Java question on enums

Intuit interview questions for designations

 Senior Software Engineer 2

 (2)

 Senior Staff Software Engineer

 (1)

 Software Engineer

 (6)

 Software Engineer Trainee

 (1)

 Software Development Engineer

 (1)

 Principal Software Engineer

 (1)

 Software Developer

 (18)

 Software Engineer2

 (5)

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Sorting question - priority queue

Get interview-ready with Top Intuit Interview Questions

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Map based basically have to apply the sorting for map values
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Questions on string and some java concepts were asked

Round 2 - Technical 

(1 Question)

  • Q1. Craft round is regarding the project given to you , derailed design discussion over the project done by you

Senior Software Engineer Interview Questions & Answers

user image Shrenika Nataraj

posted on 13 Feb 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Intial screening round about advanced JS concept
Round 2 - Coding Test 

Basically you have to create a craft project for the logic they give within 3 days and the round will be based on this, cleared this round too

Round 3 - Coding Test 

The interviewer kept on confusing me and even he was little unsure on what he was doing, got rejected

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

I applied via Recruitment Consulltant and was interviewed before Jul 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. I was not asked any coding question
  • Q2. I was asked to explain the design aspects considered in the current project
Round 2 - Assignment 

HLD and LLD skills were analysed in this

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

I applied via Referral and was interviewed before Mar 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Coding platform with problem solving skill

Round 2 - One-on-one 

(2 Questions)

  • Q1. Technical design round
  • Q2. Design event driven schedular
  • Ans. 

    Design an event driven scheduler for managing tasks and events.

    • Use a message queue system to handle incoming events and tasks.

    • Implement event listeners to trigger actions based on specific events.

    • Utilize a scheduling algorithm to prioritize and manage tasks.

    • Include error handling mechanisms to handle failures gracefully.

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Hiring Manager round
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion

I was interviewed before Jan 2021.

Round 1 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

Technical interview round that lasted for around 60 minutes. The interviewer asked me programming questions, puzzles, Java basics and some output based questions.

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

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 interviewRejected

Skills evaluated in this interview

Intuit Interview FAQs

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

Some of the top questions asked at the Intuit Senior Software Engineer interview -

  1. How to measure and ensure to not breach ...read more
  2. How to figure errors before customers report...read more
  3. How to build low latency syst...read more

Tell us how to improve this page.

Intuit Senior Software Engineer Interview Process

based on 10 interviews

3 Interview rounds

  • Coding Test Round - 1
  • Coding Test Round - 2
  • Technical Round
View more
Intuit Senior Software Engineer Salary
based on 219 salaries
₹20.9 L/yr - ₹76.4 L/yr
207% more than the average Senior Software Engineer Salary in India
View more details

Intuit Senior Software Engineer Reviews and Ratings

based on 19 reviews

3.1/5

Rating in categories

2.6

Skill development

2.8

Work-life balance

4.3

Salary

2.6

Job security

2.9

Company culture

2.6

Promotions

2.6

Work satisfaction

Explore 19 Reviews and Ratings
Senior Software Engineer
219 salaries
unlock blur

₹20.9 L/yr - ₹76.4 L/yr

Software Engineer2
146 salaries
unlock blur

₹20 L/yr - ₹60 L/yr

Software Engineer
126 salaries
unlock blur

₹14 L/yr - ₹43.8 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.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