Upload Button Icon Add office photos

Filter interviews by

Myantra Interview Questions and Answers

Updated 24 Dec 2021

Myantra Interview Experiences

Popular Designations

2 interviews found

3D Modeller Interview Questions & Answers

user image Anonymous

posted on 10 Jun 2021

I applied via Company Website and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What all are company member help me?

Interview Preparation Tips

Interview preparation tips for other job seekers - This interview was a technical one but was majorly a stress test it lasted for about 1 hour 10 minutes the interview wanted to test both my knowledge and communication skills most of the questions asked to me were related to my B.teacht curriculum i.e computer science related topics.

3D Modeller Interview Questions asked at other Companies

Q1. Do you know SolidWorks? How well you know SolidWorks? Can you automate machines on SolidWorks?
View answer (1)

Data Analyst | Data Engineer | Data Scientist interview

user image Educational Tunnel

posted on 1 Dec 2021

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Group Discussion 

First we sit in a room in which we are about 10 members. And we got a blank page where we have to write our points related to our GD topic then we have to represent our points in discussion.

Round 2 - One-on-one 

(5 Questions)

  • Q1. Give your brief introduction
  • Q2. Why are you want to work here
  • Q3. Before coming here where you are working
  • Q4. What are your hobbies
  • Q5. What is your expectations

Interview Preparation Tips

Interview preparation tips for other job seekers - There should be at least one skill set where you should be efficient.

Business Accountability Associate Interview Questions & Answers

Wells Fargo user image Anonymous

posted on 7 Jan 2025

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

Underwriting. Personal Information

What is your full name, Social Security Number, and date of birth?

Are you a U.S. citizen or permanent resident?


Why they ask: To verify your identity and eligibility for a mortgage.

2. Income and Employment

What is your annual income?

Are you employed, self-employed, or retired?

How long have you been at your current job?


Why they ask: To ensure you have a steady income to repay the loan.

3. Credit History

What is your credit score?

Do you have any outstanding loans, credit card debt, or missed payments?

Have you ever declared bankruptcy or had a foreclosure?


Why they ask: To assess your ability and reliability to repay the loan.

4. Assets and Savings

How much money do you have in savings, investments, or retirement accounts?

Do you own any other properties or assets?


Why they ask: To confirm you have enough funds for a down payment, closing costs, and emergency reserves.

5. Property Details

What is the purchase price of the home?

Are you buying a primary residence, second home, or investment property?

What is the home’s address and type (e.g., single-family, condo)?


Why they ask: To evaluate the value and purpose of the property as collateral for the loan.

6. Debts and Expenses

What are your monthly expenses, including rent, utilities, and other bills?

Do you owe child support or alimony?


Why they ask: To calculate your debt-to-income (DTI) ratio and ensure you can afford the mortgage payments.

7. Down Payment

How much are you planning to put down as a down payment?

Are the funds coming from your savings or a gift?


Why they ask: To verify you have a sufficient down payment and its source is legitimate.

8. Insurance and Taxes

Do you have homeowners insurance lined up?

Are you aware of the property taxes in the area?

Round 2 - HR 

(1 Question)

  • Q1. Previous Employment
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Implement search in binary tree
  • Q2. Previous work experience
Round 2 - One-on-one 

(2 Questions)

  • Q1. Why are switching
  • Q2. What is Netflix OSS
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Questions related to backend and AWS.
Round 2 - Technical 

(1 Question)

  • Q1. Question related to front end and database.

Interview Preparation Tips

Topics to prepare for JPMorgan Chase & Co. Fullstack Java Developer interview:
  • DSA
  • Bootstrap
  • Javascript
  • Redshift
  • Django
  • kubernate
  • Python
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(5 Questions)

  • Q1. Basic questions on python
  • Q2. Difference between list tuple
  • Q3. Area of room 6D
  • Q4. Most emberacing situation u faced in your life
  • Q5. Behavior questions like what will u do if this happens
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via LinkedIn and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Introduction, be prepared to have knowledge on your resume
  • Q2. Mathematical questions like percentage
  • Q3. Critical thinking. They asked a question with a given situation what you'll do .
  • Q4. The past 4 days been climate be stroming . And current was cut off due to rain and flood , you have a important assignment to finish, what you'll do

Interview Preparation Tips

Interview preparation tips for other job seekers - I went to citi for the interview of operation specialist other day. I been waitied for around 4 hours just to get my first round of interview. The interviewer seems exhausted due to overwhelming candidate. And one thing is shown upon the scheduling of the interview is lack of people management and schedules. The interviewer seems nice even though i didn't selected
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

During the coding test, I was asked to write a program to check the frequency of characters in a string.

Round 2 - Technical 

(5 Questions)

  • Q1. What is Java , what are the four pillars of java
  • Ans. 

    Java is a popular programming language known for its platform independence and object-oriented approach.

    • Java is platform-independent, meaning it can run on any device with a Java Virtual Machine (JVM)

    • Object-oriented programming is a key feature of Java, allowing for code reusability and modularity

    • The four pillars of Java are: Inheritance, Encapsulation, Abstraction, and Polymorphism

    • Inheritance allows a class to inherit...

  • Answered by AI
  • Q2. Related to collection framework
  • Q3. What is recursion, write a code for it
  • Ans. 

    Recursion is a programming technique where a function calls itself to solve a problem.

    • Recursion involves breaking down a problem into smaller subproblems and solving them recursively.

    • A base case is needed to stop the recursion and prevent infinite loops.

    • Example: Factorial calculation using recursion - function factorial(n) { return n === 0 ? 1 : n * factorial(n-1); }

  • Answered by AI
  • Q4. Why we don't use pointers in java
  • Ans. 

    Java doesn't use pointers for security and simplicity reasons.

    • Java uses references instead of pointers to avoid direct memory manipulation.

    • Pointers can lead to memory leaks and security vulnerabilities.

    • Java's garbage collection manages memory automatically, reducing the need for pointers.

  • Answered by AI
  • Q5. What are the difference between array and arraylist
  • Ans. 

    Array is a fixed-size data structure while ArrayList is a dynamic-size data structure in Java.

    • Array is a fixed-size collection of elements of the same data type, while ArrayList is a dynamic-size collection that can grow or shrink.

    • Arrays can store primitive data types and objects, while ArrayList can only store objects.

    • Arrays require a specified size at the time of declaration, while ArrayList can dynamically resize it...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - well prepare for all the questions like Java and oops
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

The test will comprise a total of 60 questions, divided as follows: 70% of the questions will focus on finance and accounting, while the remaining questions will cover aptitude and English.

Round 2 - Technical 

(1 Question)

  • Q1. Zero coupon bonds, long-term liabilities, return on equity, debt-equity ratio, captial budgeting and techniques, bonds and its types, debt instruments meaning, collateral, mortgage, spin off, demerger, mer...

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview panel consists of two members: the team leader and the manager. They specifically asked me detailed questions regarding finance, which included my percentage in my MBA, inquiries related to my projects, and how I learned about the company. While responding to the questions, it is essential to remain confident, and if a question is unfamiliar, we can articulate our response in our own words. We should answer them slowly instead of hurrying. Overall I have a great experience while answering the questions and panel members were polite persons.

Tell us how to improve this page.

People are getting interviews through

based on 1 Myantra interview
Company Website
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.9
 • 552 Interviews
Bajaj Finserv Interview Questions
4.0
 • 490 Interviews
HSBC Group Interview Questions
4.0
 • 485 Interviews
Xyz Company Interview Questions
3.8
 • 440 Interviews
American Express Interview Questions
4.2
 • 354 Interviews
UBS Interview Questions
4.0
 • 333 Interviews
BNY Interview Questions
4.0
 • 326 Interviews
Morgan Stanley Interview Questions
3.7
 • 298 Interviews
Citicorp Interview Questions
3.7
 • 277 Interviews
View all

Myantra Reviews and Ratings

based on 3 reviews

3.0/5

Rating in categories

2.5

Skill development

3.1

Work-Life balance

2.1

Salary & Benefits

3.1

Job Security

2.6

Company culture

1.6

Promotions/Appraisal

3.1

Work Satisfaction

Explore 3 Reviews and Ratings
Auditor
4 salaries
unlock blur

₹2.6 L/yr - ₹2.6 L/yr

Explore more salaries
Compare Myantra with

Bajaj Finserv

4.0
Compare

Wells Fargo

3.9
Compare

JPMorgan Chase & Co.

4.1
Compare

HSBC Group

4.0
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview