Upload Button Icon Add office photos

Filter interviews by

Foundit Senior Software Engineer Interview Questions and Answers

Updated 21 Sep 2024

Foundit Senior Software Engineer Interview Experiences

2 interviews found

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

1st round was DSA, Algo round with 2 questions

Round 2 - Behavioral 

(1 Question)

  • Q1. Left view of binary tree
  • Ans. 

    Left view of a binary tree is the set of nodes visible when the tree is viewed from the left side.

    • Traverse the tree level by level from left to right

    • Keep track of the first node encountered at each level

    • Use a queue data structure for level order traversal

  • 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 Naukri.com and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Dynamic programming
  • Q2. Multi-threading
Round 2 - Technical 

(1 Question)

  • Q1. Water holding capacity in btw building
  • Ans. 

    Water holding capacity in between building refers to the ability of a building to retain water without leaking or flooding.

    • Water holding capacity can be influenced by the type of materials used in construction.

    • Proper waterproofing techniques can improve a building's water holding capacity.

    • Drainage systems play a crucial role in managing excess water around a building.

    • Examples: using waterproof membranes on roofs, insta

  • Answered by AI

Senior Software Engineer Interview Questions Asked at Other Companies

asked in UST
Q1. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q2. Pascal's Triangle Construction You are provided with an integer ' ... read more
Q3. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in Info Edge
Q4. Buy and Sell Stock Problem Statement Imagine you are Harshad Meht ... read more
asked in DBS Bank
Q5. Tell me about yourself. What technology are you using? What is a ... read more

Interview questions from similar companies

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

(1 Question)

  • Q1. Java questions and basics of testing
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
4-6 weeks
Result
No response

I applied via Approached by Company

Round 1 - One-on-one 

(1 Question)

  • Q1. Basics of c#,oops Init keyword Dependency injection for multiple classes with same interface
Round 2 - Technical 

(1 Question)

  • Q1. Sql related questions likr cursor,views. .net wcf vs web api Rest vs restful
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed before Nov 2023.

Round 1 - One-on-one 

(1 Question)

  • Q1. String Interpolation and string related methods
Round 2 - One-on-one 

(2 Questions)

  • Q1. Find the duplicate in the string
  • Ans. 

    Use a hash set to find duplicates in a string array

    • Iterate through the array and add each element to a hash set

    • If the element is already in the hash set, it is a duplicate

  • Answered by AI
  • Q2. Reverse the string
  • Ans. 

    Reverse a given string

    • Create an empty string to store the reversed string

    • Iterate through the original string from end to start and append each character to the new string

    • Return the reversed string

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

(1 Question)

  • Q1. Basic definitions and project related queries

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a very good understanding of the basic concepts, say the words/terminologies which you would know so that if they ask the next question on that you should be able to answer the question. You can practice leetcode easy and little bit of mediums, I know a person who have been asked a leetcode medium.

Skills evaluated in this interview

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 before Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

It was a test to create a login page and connect to database

Round 2 - Technical 

(2 Questions)

  • Q1. What is difference between interface and abstract class
  • Ans. 

    Interface is a contract with no implementation, while abstract class can have some implementation.

    • Interface cannot have any implementation, only method signatures

    • Abstract class can have both abstract methods and concrete methods

    • A class can implement multiple interfaces but can only inherit from one abstract class

    • Interfaces are used to achieve multiple inheritance in Java

  • Answered by AI
  • Q2. What are main concepts of oops
  • Ans. 

    Main concepts of OOP include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

    • Inheritance: Ability of a class to inherit properties and behavior from another class.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation details and showing only the nec

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare with basic concetps
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Jul 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Overall spring boot related questions
  • Q2. Java 8 stream api

Interview Preparation Tips

Topics to prepare for Concentrix Corporation Senior Software Engineer interview:
  • Spring Boot
  • Java stream
Round 1 - Aptitude Test 

The level of test was mixture of easy and tough questions

Round 2 - Technical 

(1 Question)

  • Q1. Some analytics questions related to problem solving
Round 3 - HR 

(1 Question)

  • Q1. To describe about any recently watched movie
  • Ans. 

    I recently watched the movie 'Inception'.

    • Directed by Christopher Nolan

    • Genre: Science fiction, Action, Thriller

    • Starring Leonardo DiCaprio, Joseph Gordon-Levitt, Ellen Page

    • The movie explores the concept of shared dreaming and subconscious manipulation

    • It has mind-bending visuals and a complex plot

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself , have confidence in you. The technical round will be related to the JD.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Java code based on java 8 stream api

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

I applied via Recruitment Consulltant and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. How to select event rows from the table using sql query?
  • Ans. 

    To select event rows from a table using SQL query, use the SELECT statement with appropriate conditions.

    • Use the SELECT statement to specify the columns you want to retrieve from the table.

    • Use the FROM clause to specify the table from which you want to retrieve the rows.

    • Use the WHERE clause to specify the conditions that the rows must meet to be selected.

    • Example: SELECT * FROM events WHERE event_type = 'concert';

  • Answered by AI
  • Q2. What is the SOLID and explain in detail with examples?
  • Ans. 

    SOLID is a set of principles for designing software that is easy to maintain, understand, and extend.

    • S - Single Responsibility Principle: A class should have only one reason to change.

    • O - Open-Closed Principle: Software entities should be open for extension but closed for modification.

    • L - Liskov Substitution Principle: Subtypes must be substitutable for their base types.

    • I - Interface Segregation Principle: Clients shou...

  • Answered by AI

Skills evaluated in this interview

Foundit Interview FAQs

How many rounds are there in Foundit Senior Software Engineer interview?
Foundit interview process usually has 2 rounds. The most common rounds in the Foundit interview process are Technical, Coding Test and Behavioral.
What are the top questions asked in Foundit Senior Software Engineer interview?

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

  1. Water holding capacity in btw build...read more
  2. left view of binary t...read more
  3. Dynamic programm...read more

Tell us how to improve this page.

Foundit Senior Software Engineer Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more
Foundit Senior Software Engineer Salary
based on 50 salaries
₹7.5 L/yr - ₹28 L/yr
16% more than the average Senior Software Engineer Salary in India
View more details

Foundit Senior Software Engineer Reviews and Ratings

based on 7 reviews

1.9/5

Rating in categories

1.9

Skill development

2.0

Work-life balance

1.9

Salary

1.7

Job security

1.9

Company culture

1.8

Promotions

1.8

Work satisfaction

Explore 7 Reviews and Ratings
Key Account Manager
144 salaries
unlock blur

₹3.9 L/yr - ₹9.3 L/yr

Assistant Manager
61 salaries
unlock blur

₹4 L/yr - ₹12.5 L/yr

Senior Key Account Manager
60 salaries
unlock blur

₹5 L/yr - ₹12 L/yr

Software Engineer
57 salaries
unlock blur

₹4.8 L/yr - ₹19 L/yr

Strategic Account Manager
52 salaries
unlock blur

₹5.9 L/yr - ₹17.3 L/yr

Explore more salaries
Compare Foundit with

Flipkart

4.0
Compare

Snapdeal

3.8
Compare

Paytm

3.3
Compare

Shopclues

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