Upload Button Icon Add office photos
Engaged Employer

i

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

Ivy Mobility Solutions Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Ivy Mobility Solutions Senior Engineer 3 Interview Questions and Answers

Updated 28 Jan 2025

Ivy Mobility Solutions Senior Engineer 3 Interview Experiences

1 interview found

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

I was interviewed in Jul 2024.

Round 1 - Technical 

(3 Questions)

  • Q1. What is Asp.net , Different different dot net and dot net core What is MVC , what is entity fremwork, how you use MVC in your project, explain your project, What is Web API, Web API filter, what is oops , ...
  • Ans. 

    ASP.NET is a web development framework, MVC is a design pattern, Entity Framework is an ORM tool, Web API is for building APIs, OOP concepts are fundamental to C#.

    • ASP.NET is a web development framework for building web applications using C#.

    • MVC is a design pattern that separates an application into three main components: Model, View, and Controller.

    • Entity Framework is an ORM tool that simplifies data access in .NET app...

  • Answered by AI
  • Q2. One coding questions asp.net
  • Q3. C# coding questions
Round 2 - Technical 

(1 Question)

  • Q1. Full SQL database question What is union and union all in SQL server What is use of new keyword How to remove duplicate value in a table,what is having clasue on SQL server Diff local variables and glo...
Round 3 - HR 

(1 Question)

  • Q1. Normal discussion regarding last company details or family background . Job regarding information roles and responsibilities disscus

Interview questions from similar companies

I was interviewed before Dec 2020.

Interview Questionnaire 

1 Question

  • Q1. Java core related collections, First round would be array based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - get good knowledge on core java and collections
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain even loop
  • Ans. 

    An event loop is a programming construct that waits for and dispatches events or messages in a program.

    • The event loop continuously checks for events and executes associated callbacks.

    • It allows non-blocking I/O operations, enabling efficient handling of multiple tasks.

    • In JavaScript, the event loop is crucial for asynchronous programming, managing tasks like API calls.

    • Example: In a web browser, the event loop handles use

  • Answered by AI
  • Q2. Explain how redux works
  • Ans. 

    Redux is a predictable state container for JavaScript apps, enabling centralized state management and unidirectional data flow.

    • Centralized Store: Redux maintains a single store that holds the entire state of the application.

    • Actions: Actions are plain JavaScript objects that describe changes to the state. Example: { type: 'ADD_TODO', payload: 'Learn Redux' }

    • Reducers: Reducers are pure functions that take the current sta...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Cognos related questions
  • Q2. Cloud related questions

I applied via Referral and was interviewed before Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Coding Questions of javascript could be easily found on googling
  • Q2. Angular Questions based on component nesting , debugging , angular project configurations, pipes , directives etc
  • Q3. Basic Javascript Questions like currying , prototype, what was the project you were working etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident during the interview , the team interviewing will try to make you comfortable as well, practice your coding skill, prepare questions like "tell me about yourself","where do you see yourself in 10 years" etc
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Java Basics like jdk, jre, core java questions
  • Q2. Merge sort
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. Asked About Xamarin Binding
  • Q2. Layout optimisation in Xamarin forms
  • Ans. 

    Layout optimisation in Xamarin forms involves improving performance and user experience by efficiently arranging UI elements.

    • Use ListView instead of StackLayout for long lists to improve performance.

    • Avoid nesting multiple layouts within each other to reduce complexity.

    • Utilize Grid layout for more complex UI designs.

    • Use RelativeLayout for positioning elements relative to each other.

    • Implement caching mechanisms for frequ

  • Answered by AI
  • Q3. Unit tesing Difference between Test and TestCase attribute
  • Ans. 

    Test attribute is used to define a test method, while TestCase attribute is used to define a test case class.

    • Test attribute is used to mark a method as a test method in a test class.

    • TestCase attribute is used to mark a class as a test case class containing multiple test methods.

    • Test attribute is used in frameworks like NUnit, JUnit, etc.

    • TestCase attribute is used in frameworks like NUnit, JUnit, etc.

  • Answered by AI
  • Q4. About Polymorphism

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Program to find the largest and smallest integer in a program
  • Ans. 

    Program to find the largest and smallest integer in a program

    • Iterate through the array of integers to find the largest and smallest values

    • Initialize variables to store the largest and smallest values, update them as needed

    • Handle edge cases like empty array or array with only one element

    • Return the largest and smallest values found

  • Answered by AI
  • Q2. Explain internal working of HashMap, what is abstract class
  • Ans. 

    HashMap is a data structure that stores key-value pairs using hashing. An abstract class is a class that cannot be instantiated.

    • HashMap uses hashing to store key-value pairs for efficient retrieval.

    • Abstract classes cannot be instantiated and can have abstract methods that must be implemented by subclasses.

    • Example: HashMap map = new HashMap<>();

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Which list you will prefer using if you want to create an application that needs constant modification, ArrayList or LinkedList
  • Ans. 

    LinkedList is preferred for constant modification due to faster insertion and deletion times.

    • LinkedList is preferred for constant modification because it has faster insertion and deletion times compared to ArrayList.

    • LinkedList allows for easy insertion and deletion of elements without the need to shift other elements, making it more efficient for constant modifications.

    • ArrayList is better for random access and iteratin...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain about distributed system design
  • Ans. 

    Distributed system design involves breaking down a system into smaller components that communicate and coordinate with each other over a network.

    • Decompose the system into smaller services that can run independently

    • Use messaging protocols like MQTT or AMQP for communication

    • Implement fault tolerance and scalability measures

    • Consider data consistency and synchronization across nodes

    • Examples: microservices architecture, Apa

  • Answered by AI
  • Q2. Make an class with other objects as immutable
  • Ans. 

    Create a class with other objects as immutable

    • Use final keyword to make class immutable

    • Make all fields private and final

    • Do not provide setter methods, only getter methods

    • If class contains mutable objects, make sure to return a copy of them in getter methods

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focused on System design, asa

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 Oct 2022. There were 7 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 Resume tips
Round 2 - Coding Test 

Had a aptitude + coding on round 1.

Round 3 - Technical 

(1 Question)

  • Q1. Had a coding + Techincal interview ok Java springboot
Round 4 - Technical 

(1 Question)

  • Q1. There was coding question puzzle and technical discussion
Round 5 - Technical 

(1 Question)

  • Q1. Ot was techno managineial round. Java concepts and puzzles and managerial questions were asked
Round 6 - Technical 

(1 Question)

  • Q1. This was director round.It was short for 20mnts. A design question and few managerial questions were asked
Round 7 - One-on-one 

(1 Question)

  • Q1. It was an hR discussion where salary and benefits were discussed
Contribute & help others!
anonymous
You can choose to be anonymous

Ivy Mobility Solutions Interview FAQs

How many rounds are there in Ivy Mobility Solutions Senior Engineer 3 interview?
Ivy Mobility Solutions interview process usually has 3 rounds. The most common rounds in the Ivy Mobility Solutions interview process are Technical and HR.
What are the top questions asked in Ivy Mobility Solutions Senior Engineer 3 interview?

Some of the top questions asked at the Ivy Mobility Solutions Senior Engineer 3 interview -

  1. What is Asp.net , Different different dot net and dot net core What is MVC , wh...read more
  2. One coding questions asp....read more
  3. C# coding questi...read more

Recently Viewed

JOBS

Browse jobs

Discover jobs you love

INTERVIEWS

Ivy Mobility Solutions

No Interviews

JOBS

Agile Soft Systems

No Jobs

SALARIES

SOFTPATH TECHNOLOGIES

SALARIES

Signzy Technologies

INTERVIEWS

Signzy Technologies

No Interviews

JOBS

Kotak Mahindara Life Insurance

No Jobs

SALARIES

Innoviti Technologies Private Limited

SALARIES

Prime Focus Technologies

REVIEWS

Signzy Technologies

No Reviews

Tell us how to improve this page.

Ivy Mobility Solutions Senior Engineer 3 Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

SAP Interview Questions
4.2
 • 283 Interviews
Ramco Systems Interview Questions
3.9
 • 66 Interviews
Blue Yonder Interview Questions
3.9
 • 62 Interviews
Darwinbox Interview Questions
3.9
 • 44 Interviews
Grey Orange Interview Questions
3.2
 • 38 Interviews
Mobileum Interview Questions
3.3
 • 37 Interviews
CodeClouds Interview Questions
4.5
 • 35 Interviews
View all
Software Engineer
192 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
138 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Analyst
57 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Softwaretest Engineer
55 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
52 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Ivy Mobility Solutions with

Manhattan Associates

3.7
Compare

Blue Yonder

3.9
Compare

Netsuite

3.6
Compare

SAP

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