Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by ivy Team. If you also belong to the team, you can get access from here

ivy Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

ivy Senior Software Engineer Interview Questions, Process, and Tips for Experienced

Updated 20 Mar 2025

Top ivy Senior Software Engineer Interview Questions and Answers for Experienced

ivy Senior Software Engineer Interview Experiences for Experienced

6 interviews found

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Solid principals
  • Q2. Difference between pure and impure pipes
  • Ans. 

    Pure pipes do not have any side effects and always return the same output for the same input, while impure pipes can have side effects and may not return the same output for the same input.

    • Pure pipes are stateless and deterministic.

    • Impure pipes can have side effects like modifying global variables or making network requests.

    • Examples of pure pipes include filters in Angular, while examples of impure pipes include async

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.

Round 1 - Coding Test 

2 questions in hackerrank test - 90 minutes.
1. Flipping switches: a two dimensional array and an int value given as inputs. initially all switches are tuned off(marked zero). in each array we get operation which will contain the indexes of the array on which on/off of switches operation is performed. it indicated that those indexes bulbs are tuned on if already turned off and vice versa. after all operations find the count of lights that were switched on.
2. Game of colors: input is a string contains w and b characters: wwwbbbbwww. two players play the game. w starts first. then next player b. one player can play only if its respected color w or b has same color previous and after. i.e., in the input given above, w can start play his tune as we have w at index 1 has its previous index and next index characters are w. then he can remove that color. ie.e at index 1 then player play and removes colour b similarly. a player can win if other player cannot remove any color(no consecutive same color). return the name of the player who wins from the game

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare and practice array and string manipulation questions before the coding test. read the problem statements thoroughly and should be able to quickly solve the problems as it takes a lot of time to read and understand the problems in hacker rank. do the time check and submit your code

Senior Software Engineer Interview Questions Asked at Other Companies for Experienced

Q1. Duplicate Integer in Array Given an array ARR of size N, containi ... read more
asked in Visa
Q2. Given a grid containing 0s and 1s and source row and column, in h ... read more
asked in Capgemini
Q3. Kth Largest Number Problem Statement You are given a continuous s ... read more
asked in Mphasis
Q4. Trapping Rain Water Problem Statement Given a long type array/lis ... read more
Q5. Anagram Pairs Verification In this task, you need to verify if tw ... read more
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in May 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Purely scenario based questions
  • Q2. Answer based on your experience
Round 3 - Technical 

(1 Question)

  • Q1. 1. Depth about JVM internals 2. SQL Query questions

Interview Preparation Tips

Interview preparation tips for other job seekers - give your answers with confident
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Prime number programs

Round 3 - Technical 

(1 Question)

  • Q1. What is ooops, what is polymorphism , abstract class
  • Ans. 

    OOPs is Object-Oriented Programming, polymorphism allows objects to be treated as instances of their parent class, abstract class cannot be instantiated.

    • OOPs is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • Polymorphism allows objects to be treated as instances of their parent class, enabling different classes to be treated as ins...

  • Answered by AI

ivy interview questions for designations

 Senior Software Engineer 2

 (1)

 Software Engineer

 (34)

 Senior Software Developer

 (2)

 Software Engineer Trainee

 (3)

 Software Testing Engineer

 (1)

 Software Quality Assurance Engineer

 (1)

 Senior Test Engineer

 (2)

 Senior Software Engineer and Lead

 (1)

I applied via LinkedIn and was interviewed in Jan 2022. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Oops concepts, mysql query
  • Q2. Find 2highest salary mysql query, abstract and interfaces
  • Ans. 

    MySQL query to find 2 highest salaries and explanation of abstract and interfaces

    • Use ORDER BY and LIMIT to get the top 2 salaries

    • Abstract classes cannot be instantiated and can have both abstract and non-abstract methods

    • Interfaces define a set of methods that a class must implement

    • Example: SELECT salary FROM employees ORDER BY salary DESC LIMIT 2

    • Example: abstract class Animal { abstract void makeSound(); }

    • Example: inte

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

(1 Question)

  • Q1. Mysql questions, sdlc method
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion and discussion about job roles

Interview Preparation Tips

Topics to prepare for ivy Senior Software Engineer interview:
  • OOPS
  • MySQL
  • Javascript
  • Laravel
Interview preparation tips for other job seekers - Clear oops concepts, mysql concepts, and know how to find highest salary

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 Mar 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Optimisation techniques
  • Ans. 

    Optimisation techniques for software engineering

    • Use efficient algorithms and data structures

    • Minimize I/O operations and network calls

    • Optimize database queries

    • Use caching and memoization

    • Parallelize computations

    • Profile and analyze code for bottlenecks

    • Eliminate unnecessary code and dependencies

  • Answered by AI
  • Q2. Questions related Oops concept
Round 3 - Technical 

(2 Questions)

  • Q1. Question related Unity basics.
  • Q2. Explain Design patterns in c#
  • Ans. 

    Design patterns are reusable solutions to common software problems.

    • Design patterns provide a common language for developers to communicate solutions.

    • They help improve code quality, maintainability, and scalability.

    • Examples include Singleton, Factory, Observer, and Decorator patterns.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for ivy Senior Software Engineer interview:
  • Oops concept
  • Design Patterns
  • Unity 2D
  • 3D
  • unity Physics
  • C#
Interview preparation tips for other job seekers - Give interview with confidence. Must prepare Oops concept and design pattern before going for interview.

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Apr 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude test will a hackerrank test where it might have technical MCQ and/or coding test.

Round 2 - Technical 

(1 Question)

  • Q1. Interviewer will test your logic building capability with puzzel/coding and technical questions and experience discussion.
Round 3 - One-on-one 

(1 Question)

  • Q1. Its a normal discussion with HR about CTC and all.

Interview Preparation Tips

Interview preparation tips for other job seekers - In TR interviewer are really good. They will help you and give hints. They mostly check if you have problem solving approch.

I applied via Recruitment Consultant and was interviewed before Jun 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. A c++ written round. It contains good questions on c++ related to exception handling, virtual table concepts, smart_ptrs , etc ...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared with your project.
Have decent but not great knowledge knowledge in DS/Algos
Know basics of system design.
Be good in your programming language.

I applied via Approached by Company and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - System test 

(1 Question)

  • Q1. Advantage and disadvantage of framework.
  • Ans. 

    Frameworks provide structure and pre-built components for software development, but can also limit flexibility and require learning curve.

    • Advantage: Provides structure and pre-built components for faster development

    • Advantage: Can improve code quality and maintainability

    • Disadvantage: Can limit flexibility and customization

    • Disadvantage: Requires learning curve and potential dependency issues

    • Example: ReactJS provides a fr...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. What is Oops? Advantage and disadvantage
  • Ans. 

    Oops stands for Object-Oriented Programming. It is a programming paradigm that uses objects to represent real-world entities.

    • Advantages: code reusability, modularity, encapsulation, inheritance, polymorphism

    • Disadvantages: complexity, steep learning curve, performance overhead

    • Example: creating a class 'Car' with properties like 'make', 'model', and 'year', and methods like 'start_engine' and 'stop_engine'

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics in server side and client side coding

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Dec 2020. There were 6 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tech: Core Java concepts, difference between ArrayList and LinkedList, types of functional testing, CI/CD.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be clear and crisp with your answers. Have a complete clarity with your aspirations and role based responsibilities.

ivy Interview FAQs

How many rounds are there in ivy Senior Software Engineer interview for experienced candidates?
ivy interview process for experienced candidates usually has 2-3 rounds. The most common rounds in the ivy interview process for experienced candidates are Technical, Resume Shortlist and Coding Test.
What are the top questions asked in ivy Senior Software Engineer interview for experienced candidates?

Some of the top questions asked at the ivy Senior Software Engineer interview for experienced candidates -

  1. Find 2highest salary mysql query, abstract and interfa...read more
  2. What is ooops, what is polymorphism , abstract cl...read more
  3. Optimisation techniq...read more
How long is the ivy Senior Software Engineer interview process?

The duration of ivy Senior Software Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

ivy Senior Software Engineer Interview Process for Experienced

based on 5 interviews

2 Interview rounds

  • Resume Shortlist Round
  • Technical Round
View more
ivy Senior Software Engineer Salary
based on 605 salaries
₹7.5 L/yr - ₹24 L/yr
At par with the average Senior Software Engineer Salary in India
View more details

ivy Senior Software Engineer Reviews and Ratings

based on 55 reviews

3.9/5

Rating in categories

3.2

Skill development

3.9

Work-life balance

3.7

Salary

3.2

Job security

3.9

Company culture

3.0

Promotions

3.6

Work satisfaction

Explore 55 Reviews and Ratings
Software Engineer
871 salaries
unlock blur

₹5 L/yr - ₹16 L/yr

Senior Software Engineer
605 salaries
unlock blur

₹7.5 L/yr - ₹24 L/yr

Senior Test Engineer
340 salaries
unlock blur

₹7 L/yr - ₹15.8 L/yr

System Analyst
338 salaries
unlock blur

₹14 L/yr - ₹27.5 L/yr

Test Engineer
334 salaries
unlock blur

₹4 L/yr - ₹10.5 L/yr

Explore more salaries
Compare ivy with

Thomson Reuters

4.1
Compare

Chetu

3.2
Compare

EbixCash Limited

4.0
Compare

eClinicalWorks

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