Upload Button Icon Add office photos

Filter interviews by

Axis Mutual Fund Senior Engineer Interview Questions and Answers

Updated 6 Nov 2024

Axis Mutual Fund Senior Engineer Interview Experiences

1 interview found

Senior Engineer Interview Questions & Answers

user image Shruti Mahavarthayajula

posted on 6 Nov 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Referral

Round 1 - One-on-one 

(2 Questions)

  • Q1. General market direction
  • Q2. Mutual fund industry size
  • Ans. 

    The mutual fund industry size refers to the total value of assets under management by mutual funds.

    • The size of the mutual fund industry can be measured by the total assets under management (AUM) of all mutual funds.

    • It includes both equity and debt mutual funds, as well as other types like money market funds.

    • The industry size can vary greatly depending on market conditions and investor sentiment.

    • As of 2021, the global m...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Salary negotiation
  • Q2. Location negotiations

Interview questions from similar companies

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

Round 1 - Technical 

(2 Questions)

  • Q1. Get all permutations of [1,2,3]
  • Ans. 

    Generate all permutations of [1,2,3] as array of strings

    • Use recursion to generate all possible permutations

    • Swap elements to create different permutations

    • Base case: when only one element is left, add to result array

  • Answered by AI
  • Q2. What is the purpose of the slice function in Redux Toolkit?
  • Ans. 

    The slice function in Redux Toolkit is used to create a copy of a portion of an array state.

    • Allows for immutably updating arrays in Redux state by creating a new array with a subset of elements.

    • Can be used to remove elements from an array without mutating the original state.

    • Example: const newState = state.slice(0, 2) will create a new array with the first 2 elements of the original state.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. How would you find object is Array without using Array.isArray() function?
  • Ans. 

    Check if an object is an array without using Array.isArray() function

    • Check if the object has a length property

    • Check if the object has a slice method

    • Check if the object has an index of 0

  • Answered by AI
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 Jun 2023. There were 5 interview rounds.

Round 1 - Aptitude Test 

Some basic aptitube and reasoning problems were asked. Easily solvable.

Round 2 - Coding Test 

They asked multiple choice questions on oracle sql and pl/sql emphasizing more on reading a code block ask output questions. These were of medium hardness.

Round 3 - Technical 

(1 Question)

  • Q1. They asked what you do on daily basis in your work. What is most complex thing you have implemented and some complex questions on multilevel plsql collection module. It lasted for 1.5 hrs
Round 4 - One-on-one 

(4 Questions)

  • Q1. Questions regarding Oracle architecture and its component
  • Q2. Question on live implementation of multilevel collection, bulk collect and record limiting and bulk exception handleing.
  • Q3. Dml error logging functionality
  • Ans. 

    DML error logging functionality allows for capturing errors during data manipulation language operations.

    • DML error logging can be enabled at the table level using the LOG ERRORS clause in DML statements.

    • It helps in identifying and resolving data issues without causing the entire transaction to fail.

    • Errors are logged in a separate error table, allowing the main operation to continue processing.

    • Example: INSERT INTO table...

  • Answered by AI
  • Q4. Query and join optimization
Round 5 - HR 

(1 Question)

  • Q1. Related to salary and what benefits they provide.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is dependency injection
  • Ans. 

    Dependency injection is a design pattern in which components are given their dependencies rather than creating them internally.

    • Dependency injection helps in achieving loose coupling between classes.

    • It allows for easier testing by providing mock dependencies.

    • There are three types of dependency injection: constructor injection, setter injection, and interface injection.

  • Answered by AI
  • Q2. What is state in react
  • Ans. 

    State in React is a JavaScript object that stores data and determines how a component renders and behaves.

    • State is mutable and can be updated using the setState() method

    • State should be used for data that will change over time and affect the component's rendering

    • State should not be modified directly, use setState() instead

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - HR 

(2 Questions)

  • Q1. Basic questions
  • Q2. Salary related questions
Round 2 - Technical 

(2 Questions)

  • Q1. Power supply colour code
  • Q2. RAM frequency and labour work
Round 3 - One-on-one 

(2 Questions)

  • Q1. Stupid question not related to IT
  • Q2. Labour work related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Better you drive a rickshaw than work for them
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 were 2 interview rounds.

Round 1 - Coding Test 

Coding was pretty much basics.

Round 2 - Group Discussion 

They asked what i could contribute to the team

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

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

Round 1 - Assignment 

A small project was given to complete in 3 days

Round 2 - Technical 

(2 Questions)

  • Q1. Android components, lifecycle, app architecture related questions were asked
  • Q2. Kotlin, coroutines
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion
Round 4 - Behavioral 

(1 Question)

  • Q1. Basics knowledge of programming

Interview Questionnaire 

1 Question

  • Q1. Basic Questions of Oops and MVC
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 Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Get all permutations of [1,2,3]
  • Ans. 

    Generate all permutations of [1,2,3] as array of strings

    • Use recursion to generate all possible permutations

    • Swap elements to create different permutations

    • Base case: when only one element is left, add to result array

  • Answered by AI
  • Q2. What is the purpose of the slice function in Redux Toolkit?
  • Ans. 

    The slice function in Redux Toolkit is used to create a copy of a portion of an array state.

    • Allows for immutably updating arrays in Redux state by creating a new array with a subset of elements.

    • Can be used to remove elements from an array without mutating the original state.

    • Example: const newState = state.slice(0, 2) will create a new array with the first 2 elements of the original state.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. How would you find object is Array without using Array.isArray() function?
  • Ans. 

    Check if an object is an array without using Array.isArray() function

    • Check if the object has a length property

    • Check if the object has a slice method

    • Check if the object has an index of 0

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Basic array and vectors DSA questions

Round 2 - Technical 

(3 Questions)

  • Q1. Asked me about my past project and my contribution in it
  • Q2. Linux commands and c++ language control
  • Q3. Asked me to write last function i wrote and explain what it does
Round 3 - Behavioral 

(2 Questions)

  • Q1. Asked me about my past projects and my contribution
  • Q2. Checked my work ethics
Round 4 - HR 

(2 Questions)

  • Q1. Basic hr questions
  • Q2. Salary negotiation

Axis Mutual Fund Interview FAQs

How many rounds are there in Axis Mutual Fund Senior Engineer interview?
Axis Mutual Fund interview process usually has 2 rounds. The most common rounds in the Axis Mutual Fund interview process are One-on-one Round and HR.
What are the top questions asked in Axis Mutual Fund Senior Engineer interview?

Some of the top questions asked at the Axis Mutual Fund Senior Engineer interview -

  1. Mutual fund industry s...read more
  2. General market direct...read more
  3. Location negotiati...read more

Tell us how to improve this page.

Axis Mutual Fund Senior Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

L&T Finance Interview Questions
3.9
 • 148 Interviews
Sharekhan Interview Questions
3.9
 • 77 Interviews
Edelweiss Interview Questions
3.9
 • 58 Interviews
MSCI Interview Questions
3.9
 • 49 Interviews
JM Financial Interview Questions
3.8
 • 46 Interviews
View all
Deputy Manager
70 salaries
unlock blur

₹4.4 L/yr - ₹13 L/yr

Relationship Manager
70 salaries
unlock blur

₹3 L/yr - ₹9 L/yr

Assistant Manager
55 salaries
unlock blur

₹2.6 L/yr - ₹7.9 L/yr

Manager
40 salaries
unlock blur

₹6 L/yr - ₹21.5 L/yr

Senior Manager
16 salaries
unlock blur

₹11.8 L/yr - ₹30 L/yr

Explore more salaries
Compare Axis Mutual Fund with

ICICI Prudential Mutual Fund

3.8
Compare

SBI Mutual Fund

4.0
Compare

Birla Sun Life Mutual Fund

4.2
Compare

Kotak Mahindra Bank

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