Upload Button Icon Add office photos

Filter interviews by

Indeed Software Engineer Interview Questions and Answers

Updated 15 Jul 2024

Indeed Software Engineer Interview Experiences

1 interview found

Software Engineer Interview Questions & Answers

user image Melissa Spiegel

posted on 14 Jul 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

Interviewed with team members and discussed coding standards and linters

Round 2 - Assignment 

Given a take-home assignment and built a card game

Interview questions from similar companies

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

I applied via campus placement at BRACT's Vishwakarma Institute of Information Technology, Pune and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Coding test has multiple choice questions based on basics of programming and 2 coding questions.

Round 2 - Technical 

(3 Questions)

  • Q1. What are the details of Object-Oriented Programming (OOP) concepts?
  • Ans. 

    OOP is a programming paradigm based on the concept of objects, which can contain data and code to manipulate that data.

    • OOP focuses on creating objects that interact with each other to solve problems.

    • Key concepts include classes, objects, inheritance, polymorphism, and encapsulation.

    • Classes are blueprints for creating objects, defining their properties and behaviors.

    • Inheritance allows new classes to be based on existing...

  • Answered by AI
  • Q2. DSA question to solve using any programming language ?
  • Q3. Some concepts of web development and binary tree related questions
Round 3 - HR 

(2 Questions)

  • Q1. What do you know about Digit insurance?
  • Ans. 

    Digit Insurance is a technology-driven insurance company offering a range of general insurance products.

    • Digit Insurance was founded in 2016 by Kamesh Goyal.

    • It is known for its innovative and customer-centric approach to insurance.

    • Digit offers various insurance products such as health insurance, motor insurance, travel insurance, and more.

    • The company leverages technology to simplify the insurance process and provide a s

  • Answered by AI
  • Q2. Where do you see yourself after 5 years ?
  • Ans. 

    In 5 years, I see myself as a senior software engineer leading a team of developers on innovative projects.

    • Leading a team of developers on projects

    • Continuing to learn and grow in my technical skills

    • Contributing to the success and growth of the company

    • Possibly pursuing further education or certifications

    • Exploring opportunities for mentorship and leadership roles

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics concept of programming. Brush up coding skills and have good communication skills.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Rotate array leetcode question
  • Q2. Longest palindormic substring
  • Ans. 

    A palindrome is a word, phrase, number, or other sequence of characters that reads the same forward and backward.

    • Use dynamic programming to solve this problem efficiently.

    • Iterate through the string and expand around each character to find the longest palindrome.

    • Consider both odd and even length palindromes.

    • Example: Input 'babad', Output 'aba' or 'bab'.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Print all the subsequences of a string
  • Ans. 

    Generate all possible subsequences of a given string.

    • Use recursion to generate all possible combinations of characters in the string.

    • At each step, include or exclude the current character to form subsequences.

    • Store each subsequence in an array of strings.

  • Answered by AI
  • Q2. Print longest substring with k unique values
  • Ans. 

    Find and print the longest substring with k unique characters in an array of strings.

    • Iterate through the array of strings and keep track of the longest substring with k unique characters.

    • Use a sliding window approach to efficiently find the longest substring.

    • Keep a hashmap to store the frequency of characters in the current window.

    • Update the window boundaries based on the number of unique characters.

    • Return the longest

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Behaviour quesions

Skills evaluated in this interview

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

I applied via campus placement at Maulana Azad National Institute of Technology (NIT), Bhopal and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

3 questions easy-medium level leetcode problem I solved 2 completely and 3rd question partially (9/15 test cases passed) to move on to 2nd round

Round 2 - Coding Test 

(1 Question)

  • Q1. Implement an app similar to splitwise
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Find the leaves of the tree.
  • Ans. 

    Leaves of a tree are the nodes with no children in a tree data structure.

    • Traverse the tree and identify nodes with no children.

    • Use depth-first search or breadth-first search algorithms to find leaves.

    • Examples: In a binary tree, leaves are nodes with no left or right child.

    • In a general tree, leaves are nodes with no children in their child list.

  • Answered by AI
  • Q2. Find the LCA of tree.
  • Ans. 

    The Lowest Common Ancestor (LCA) of a tree is the shared ancestor of two nodes farthest from the root.

    • Start from the root and traverse the tree to find the paths from the root to the two nodes.

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

    • If one of the nodes is an ancestor of the other, then the ancestor node is the LCA.

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. What projects you worked upon?
  • Ans. 

    I have worked on projects involving web development, mobile app development, and data analysis.

    • Developed a web application using React and Node.js for a client in the e-commerce industry

    • Created a mobile app using Flutter for a startup in the healthcare sector

    • Performed data analysis on customer behavior using Python and SQL for a marketing company

  • Answered by AI
  • Q2. What internships you did?
  • Ans. 

    I completed internships at ABC Company and XYZ Company during my undergraduate studies.

    • Interned at ABC Company working on web development projects

    • Interned at XYZ Company assisting with software testing and quality assurance

    • Gained hands-on experience in coding, debugging, and problem-solving

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare tree and graph well.

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Coding Test 

1. PEAK ELEMENT QUESTION.
2. COIN DENOMINATION

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Create pagination component using an api show the data for the pages
  • Ans. 

    Create a pagination component using an API to display data for different pages.

    • Use API to fetch data for each page

    • Implement pagination logic to display data for each page

    • Allow users to navigate between pages

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. He asked to invert a binary tree
  • Q2. Deep dive in projects
  • Q3. Asked me indept js questions

Interview Preparation Tips

Topics to prepare for PharmEasy Software Engineer interview:
  • Binary search
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Js question with code snippets
Round 2 - Coding Test 

Given some ant ui design to reacreate from scretch

Round 3 - One-on-one 

(1 Question)

  • Q1. Asked system design for online movie booking plateform
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
4-6 weeks
Result
-

I applied via Company Website and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Coding Test 

Implement your own state management in React and integrate it into a React application.

Indeed Interview FAQs

How many rounds are there in Indeed Software Engineer interview?
Indeed interview process usually has 2 rounds. The most common rounds in the Indeed interview process are Assignment and Group Discussion.

Tell us how to improve this page.

Indeed Software Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
Indeed Software Engineer Salary
based on 16 salaries
₹11.5 L/yr - ₹44 L/yr
210% more than the average Software Engineer Salary in India
View more details

Indeed Software Engineer Reviews and Ratings

based on 5 reviews

4.8/5

Rating in categories

4.0

Skill development

4.7

Work-life balance

4.5

Salary

3.7

Job security

3.9

Company culture

4.1

Promotions

4.0

Work satisfaction

Explore 5 Reviews and Ratings
Product Manager
18 salaries
unlock blur

₹20.2 L/yr - ₹58 L/yr

Senior Accounts Executive
17 salaries
unlock blur

₹8.1 L/yr - ₹25 L/yr

Software Engineer
16 salaries
unlock blur

₹11.5 L/yr - ₹44 L/yr

Accounts Manager
16 salaries
unlock blur

₹5.2 L/yr - ₹8.5 L/yr

Senior Software Engineer
12 salaries
unlock blur

₹35 L/yr - ₹97 L/yr

Explore more salaries
Compare Indeed with

Naukri

4.0
Compare

Foundit

3.5
Compare

Timesjobs.com

1.6
Compare

Freshersworld.com

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