Upload Button Icon Add office photos

Filter interviews by

AXIS Capital Mechanical Engineer Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

I appeared for an interview before Jun 2016.

Interview Questionnaire 

2 Questions

  • Q1.  Given k and DFS traversal string for a k-ary tree, construct the tree. The String contains P (if a parent) and L (if a leaf). E.g. - k=3, str="PPLLLLL" 2. All the strings are arranged in the following ord...
  • Ans. 

    The question asks to construct a k-ary tree using the given k and DFS traversal string.

    • Iterate through the DFS traversal string

    • If the current character is 'P', create a parent node

    • If the current character is 'L', create a leaf node

    • Link the nodes according to the DFS traversal order

  • Answered by AI
  • Q2. "How would you tell whether a graph has a node with n degree?"
  • Ans. 

    To determine if a graph has a node with n degree, iterate through all nodes and count their edges.

    • Iterate through each node in the graph

    • Count the number of edges connected to each node

    • If any node has n edges, then the graph has a node with n degree

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Questions on C++(Virtual fns, inheritance). Two on probability, 12 on Algorithms
Duration: 45 minutes

Round: Technical + HR Interview
Experience: He asked some more puzzles and some probability (expectation) questions. Then, he modified one question asked in the written test and asked me write code for it on paper.
Tips: First of all, prepare all the questions asked in the test before going for the interviews.


Skills evaluated in this interview

Interview Preparation Tips

Round: Resume Shortlist
Experience: Candidates with CGPA greater than 7 were shortlisted.

Round: Interview
Experience: The interview was conducted in two rounds. Questions based on my resume and some finance questions were asked.

General Tips: In ascending order of importance, for getting shortlisted:

1) PoRs
2) Extra, co-curricular activities
3) Projects
4) Technical Skills example coding etc.
5) Academic Achievements
6) Internships
7) CGPA
College Name: IIT MADRAS

Interview Questionnaire 

5 Questions

  • Q1. What is beta, 0 beta, negative beta
  • Ans. 

    Beta is a measure of a stock's volatility in relation to the market. 0 beta means the stock's price is not affected by market movements. Negative beta means the stock moves opposite to the market.

    • Beta measures a stock's volatility in relation to the market

    • A beta of 1 means the stock moves in line with the market

    • A beta of 0 means the stock's price is not affected by market movements

    • A negative beta means the stock moves ...

  • Answered by AI
  • Q2. How will you value a private comapny
  • Ans. 

    Valuing a private company involves analyzing financial statements, market trends, and comparable transactions.

    • Analyze financial statements to determine revenue, expenses, and profitability

    • Consider market trends and industry outlook to assess growth potential

    • Research comparable transactions to determine valuation multiples

    • Apply discounted cash flow analysis to estimate future cash flows

    • Consider intangible assets such as...

  • Answered by AI
  • Q3. Case study to draw up financial statements from 3 transactions
  • Q4. About yourself
  • Q5. Your motivations, weakness
  • Ans. 

    My motivation is to constantly learn and improve. My weakness is that I can be too self-critical at times.

    • Motivated by a desire to learn and grow

    • Driven to constantly improve my skills and knowledge

    • Can be overly self-critical and need to work on self-compassion

    • Example: Motivated to take on new projects and challenges to expand my skillset

    • Example: Struggle with imposter syndrome and need to remind myself of my accomplish

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: They look for a CGPA of 7+

Round: Technical Interview
Experience: be confident with answers, be thorough with all the concepts
Tips: focus on valuation, practical application of the concepts

Round: HR Interview
Experience: Again be confident, communication skills

General Tips: Know about the valuation concepts in and out.
Skills: financial analysis, financial terms, ratios
College Name: IIT MADRAS

Interview Preparation Tips

Round: Resume Shortlist
Experience: Resume was asked for in the beginning of the selection procedure.

Round: Technical Interview
Experience: In the interview they asked me HR and core field related questions. They asked me about myself and my family. They also asked me questions from my CV.
The questions from the core field were mainly from accounts. Topics covered were:-
1. Accrued incomes.
2. Outstanding incomes.
3. Golden rules and principles.
4. Quasi rent (from economics).
5. Questions from accounts/economics course material of college.

College Name: LADY SHRI RAM COLLEGE

Interview Questionnaire 

1 Question

  • Q1. Basics in Finance (Accounting mostly)

Interview Preparation Tips

General Tips: Apply to Verity ONLY if you are interested in pursuing a career in finance, more precisely in Investment Banking!Work hours would be long, so be prepared.
Skill Tips: "CFA level-1 preparation would help; clearing of level-1 exam would be even better!"
Skills: Finance Knowledge
College Name: IIT Madras

Interview Preparation Tips

Round: Resume Shortlist
Experience: Two rounds of personal interviewAlso includes a test but supposedly got cancelled last year.CGPA Criteria: 7.0 and above

Round: Interview
Experience: 1st round consisted of finance questions like accounting etc. and questions on stuff mentioned in resume e.g., projectsBe sure to be quizzed on financial skills mentioned in your resume
Tips: Investopedia can be very useful here.Accounting fundaes are needed and courses like Infrastructure finance will help.NCFM and CFA will surely help.

Round: Interview
Experience: 2nd round will be totally HR with questions related to your strengths, weaknesses and likings.
Tips: NCFM and CFA will surely help.

College Name: IIT Madras

Interview Preparation Tips

Round: Resume Shortlist
Experience: They considered those with CGPA over 7 and looked for students who cleared CFA-I.

Round: Interview
Experience: They asked finance related questions (mostly Accounting questions, and any other expertise in finance you might have mentioned). Also, questions based on the resume too (projects, etc).
Tips: Preparing accounting fundae is beneficial, other courses like Infrastructure Finance (core course in my case) would help. Prepare for NCFM and CFA-I. These will surely help.

Round: Interview
Experience: Typical HR questions like your interests, strengths, weakness, etc were asked.
Tips: Don’t prepare for typical HR questions, that’s a blunder. My advice would be to start thinking and writing answers for HR questions, and just mug up those.

General Tips: Good CGPA always helps. Find out your interests very early, and put extra effort into those. Practice math like CAT questions, etc (even if you are not preparing for MBA), many companies have those tests.
Skill Tips: Started my preparations in August. Starting earlier might have helped, especially in HR round. (Don't prepare for typical HR questions, that’s a blunder).
College Name: IIT MADRAS

I appeared for an interview in Jun 2022.

Round 1 - Coding Test 

(2 Questions)

Round duration - 70 Minutes
Round difficulty - Hard

The test link was active for a week, and you can give anytime you like. The IDE was very good and self explanatory. There were 2 coding questions and 15 aptitude questions.

  • Q1. 

    Unweighted Graph Shortest Path Problem

    You are tasked with finding the shortest path between two houses in the city of Ninjaland, represented as an unweighted graph. The city has N houses numbered from 1 ...

  • Ans. 

    Find the shortest path between two houses in a city represented as an unweighted graph.

    • Use breadth-first search (BFS) algorithm to find the shortest path in an unweighted graph.

    • Start BFS from the source house and keep track of the path taken to reach each house.

    • Once the destination house is reached, backtrack from destination to source to find the shortest path.

    • Consider using a queue data structure to implement BFS eff...

  • Answered by AI
  • Q2. 

    Check If Two Nodes Are Cousins

    You are given an arbitrary binary tree consisting of N nodes, where each node is associated with a certain value, and two node values, a and b. Your task is to determine if ...

  • Ans. 

    Check if two nodes in a binary tree are cousins by comparing their levels and parents.

    • Traverse the tree to find the levels and parents of the given nodes.

    • Compare the levels and parents of the two nodes to determine if they are cousins.

    • If the levels are the same and the parents are different, the nodes are cousins.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

It contained two programming questions.

  • Q1. 

    Counting Nodes in a Complete Binary Tree - Problem Statement

    Given the root of a complete binary tree, calculate the total number of nodes in this tree.

    A complete binary tree is defined as a binary tree...

  • Ans. 

    Count the total number of nodes in a complete binary tree given its root.

    • Traverse the tree in level order and count the nodes

    • Use a queue to keep track of nodes at each level

    • Check for null nodes represented by -1 in the input

    • The total number of nodes in the example tree is 7

  • Answered by AI
  • Q2. 

    Rearrange Array Numbers for Largest Possible Number

    Given an array ARR consisting of non-negative integers, rearrange the numbers to form the largest possible numerical value. You are not permitted to alt...

  • Ans. 

    Rearrange array numbers to form the largest possible numerical value by combining digits of each number in the array.

    • Convert integers in the array to strings for easier manipulation.

    • Sort the array of strings in non-increasing order based on custom comparison function.

    • Join the sorted strings to form the largest possible number.

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

This was more of a interaction round with some technical skills.

  • Q1. Can you explain the ACID properties and the rollback mechanism in DBMS?
  • Ans. 

    ACID properties ensure database transactions are processed reliably. Rollback mechanism undoes changes if transaction fails.

    • ACID properties: Atomicity, Consistency, Isolation, Durability

    • Atomicity ensures all operations in a transaction are completed successfully or none at all

    • Consistency ensures database remains in a valid state before and after transaction

    • Isolation ensures transactions are independent and do not inter...

  • Answered by AI

Interview Preparation Tips

Eligibility criteria8 CGPATower Research Capital interview preparation:Topics to prepare for the interview - DSA and Algorithms, OOPS, Database, OS, NetworksTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Focus on different varieties of problems, quality of problems matter greater than the quantity.
Tip 2 : Focus on design thinking, that will help in rounds other than problem solving.

Application resume tips for other job seekers

Tip 1 : Focus on demonstrating your academic excellence and course projects
Tip 2 : Mention internship details with clarity

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024.

Round 1 - Coding Test 

Leetcode simple problems. But with coding

Round 2 - Coding Test 

C++ basics and operating systems basic

Round 3 - Technical 

(2 Questions)

  • Q1. C++ templates and advanced c++
  • Q2. Low level design

I appeared for an interview in May 2022.

Round 1 - Video Call 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Easy

The interviewer was friendly. Explained the question well. Allowed to use any preferred platform to write code.

  • Q1. 

    Best Time to Buy and Sell Stock Problem Statement

    Given an array prices representing the prices of a stock where each element indicates the price at a given minute, determine the maximum profit you can ac...

  • Ans. 

    Find the maximum profit by buying and selling a stock once based on given prices.

    • Iterate through the prices array and keep track of the minimum price seen so far and the maximum profit achievable.

    • Calculate the profit by subtracting the current price from the minimum price and update the maximum profit if needed.

    • Return the maximum profit, ensuring it is not negative.

    • Example: prices = [2, 100, 150, 120], Buy at 2, sell a

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. 

    Dance Team Pairing Challenge

    Imagine you are helping Ninja, a dance coach, who needs to form dance pairs from the available boys and girls in a studio. Given the number of boys N, the number of girls M, a...

  • Ans. 

    The challenge involves forming dance pairs from available boys and girls based on potential pairings to maximize the number of pairs.

    • Parse the input to get the number of test cases, boys, girls, and potential pairings.

    • Iterate through the potential pairings and form pairs based on the given indexes.

    • Output '1' if a set of maximum possible pairs is returned, else output '0'.

    • There can be multiple valid configurations of pa...

  • Answered by AI
  • Q2. What is the difference between multiprocessing and multithreading?
  • Ans. 

    Multiprocessing involves multiple processes running concurrently, while multithreading involves multiple threads within a single process.

    • Multiprocessing utilizes multiple processes to execute tasks simultaneously.

    • Multithreading involves multiple threads within a single process sharing the same memory space.

    • Multiprocessing is typically used for CPU-bound tasks, while multithreading is more suitable for I/O-bound tasks.

    • E...

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Hard

  • Q1. Can you describe the classes and functions involved in the design of a system like Splitwise?
  • Ans. 

    Splitwise is a system for managing shared expenses among groups of people.

    • Classes: User, Expense, Group

    • Functions: addExpense(), settleUp(), calculateBalance()

  • Answered by AI
Round 4 - Video Call 

Round duration - 60 Minutes
Round difficulty - Hard

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in GurgaonEligibility criteriaNo criteriaTower Research Capital interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Low level design, High Level Design, Relational Database Management Systems, Operating SystemsTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Practice at least 5 questions of each topic of various difficulty levels
Tip 2 : Read out theory articles about your preferred language showing your proficiency in the same.
Tip 3 : Hard work is overrated, consistency is the key.

Application resume tips for other job seekers

Tip 1 : Own everything you have there, do not add random skills that you are not proficient in.
Tip 2 : Keep it clean and try to give out minimal but most of the relevant information for the role.

Final outcome of the interviewSelected

Skills evaluated in this interview

Tell us how to improve this page.

Vice President
16 salaries
unlock blur

₹30 L/yr - ₹87 L/yr

Assistant Vice President
13 salaries
unlock blur

₹13 L/yr - ₹50 L/yr

Senior Manager
11 salaries
unlock blur

₹10.8 L/yr - ₹40 L/yr

Manager
10 salaries
unlock blur

₹14 L/yr - ₹24 L/yr

Senior Executive
9 salaries
unlock blur

₹6.5 L/yr - ₹16.8 L/yr

Explore more salaries
Compare AXIS Capital with

Muthoot Homefin India

3.9
Compare

Swastika Investmart

4.1
Compare

Belstar Investment and Finance

4.2
Compare

VERITY GLOBAL SOLUTIONS

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