Upload Button Icon Add office photos

Filter interviews by

Mwyn Tech Interview Questions and Answers for Experienced

Updated 26 Dec 2022

Mwyn Tech Interview Experiences for Experienced

Popular Designations

2 interviews found

( Business Loan) Team leader Interview Questions & Answers

user image Anonymous

posted on 26 Dec 2022

I applied via Approached by Company and was interviewed in Nov 2022. There were 4 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 - One-on-one 

(1 Question)

  • Q1. Any questions answered me related work
Round 3 - One-on-one 

(1 Question)

  • Q1. Any questions answered by me related work
Round 4 - One-on-one 

(1 Question)

  • Q1. Any questions answered by me related work

Interview Preparation Tips

Interview preparation tips for other job seekers - Be loyal to your less because less takes us to heights less sees us

I was interviewed in Mar 2021.

Interview Questionnaire 

1 Question

  • Q1. Financial related, business finance

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't go with this company, I worked for 5 months, it's a sinking ship..

Business Finance Manager Interview Questions asked at other Companies

Q1. What is debt equity ratio and what does it signify ?
View answer (1)

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Jun 2023. There were 4 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 - Aptitude Test 

The aptitude test contained word problems, logical reasoning, math questions and grammar related questions. Basic to mid level

Round 3 - Technical 

(1 Question)

  • Q1. Technical round was more around, 'why you wanna join the company', accounting and investment banking and private equity related questions. 'What is PE/IB'?, 'Explain the flow of transactions in the books o...
Round 4 - Technical 

(1 Question)

  • Q1. This was the final round with one of the VPs where again questions related to GAAP, Investment banking and accounting were asked. Questions such as ''Prepare a basic Cash Flow and Income Statement", "Line...

Interview Preparation Tips

Interview preparation tips for other job seekers - Just revise the accounting and finance concepts till college level. Then focus on aptitude solving and more on the working of Investment Banking, PE/VC and basic GAAP knowledge. Be calm and confident and don't look like you're desperate for this job role.
All The Best!

I applied via Naukri.com and was interviewed in Mar 2022. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Hi I'm vishal kumar from agra

Interview Preparation Tips

Interview preparation tips for other job seekers - Hello sir I'm vishal kumar I'm present work for icici merchant services my total experience is selas marketing is 8 years

I applied via Referral and was interviewed in Apr 2021. There were 4 interview rounds.

Interview Questionnaire 

11 Questions

  • Q1. Basic Java concepts like abstraction, JDK 1.8 architecture brief overview.
  • Q2. What is weak reference? garbage collection in case of such references?
  • Ans. 

    Weak reference is a reference that does not prevent the object from being garbage collected.

    • Weak references are used to refer to objects that can be garbage collected if there are no strong references to them.

    • They are typically used in scenarios where you want to hold a reference to an object, but don't want to prevent it from being collected.

    • Weak references are implemented using weak reference queues, which allow you ...

  • Answered by AI
  • Q3. Implementation of singleton pattern and ways of breaking it? singleton pattern implementation in a multithreaded environment?
  • Ans. 

    Singleton pattern ensures a class has only one instance, while allowing global access to it.

    • Implement a private constructor to prevent direct instantiation.

    • Create a static method to provide a single point of access to the instance.

    • Use lazy initialization to create the instance only when needed.

    • Ensure thread safety in a multithreaded environment using synchronization or double-checked locking.

    • Breaking the singleton patt...

  • Answered by AI
  • Q4. Annotations : @Component vs @service, @Controller vs @RESTController, @Configuration, @Transactional
  • Ans. 

    Annotations used in Spring Framework for defining components and services.

    • Annotations like @Component, @Service, and @Controller are used for defining components in Spring Framework.

    • @RestController is used for defining RESTful web services.

    • @Configuration is used for defining configuration classes.

    • @Transactional is used for defining transactional methods.

    • All these annotations help in defining and managing dependencies i

  • Answered by AI
  • Q5. Internal implementation of HashSet? Which scenario will generate same hashcode for a HashMap?
  • Ans. 

    HashSet is implemented using a HashMap internally. Same hashcode is generated when two objects have the same value for hashCode() and equals() methods.

    • HashSet internally uses a HashMap to store its elements.

    • The hashcode of an object is generated using the hashCode() method.

    • If two objects have the same value for hashCode() and equals() methods, they will generate the same hashcode.

    • For example, if two String objects have...

  • Answered by AI
  • Q6. What is SQL Cursor? Index? Aggregate Functions examples?
  • Ans. 

    SQL Cursor is a database object used to manipulate data row by row.

    • Cursor is used to fetch and process data row by row

    • Index is a database object used to speed up data retrieval

    • Aggregate functions are used to perform calculations on a set of values

    • Examples of aggregate functions are SUM, AVG, COUNT, MAX, MIN

  • Answered by AI
  • Q7. Basic Java programming question:- Generate palindrome string inputs for the program are length of the string and number of distinct characters. If n=5 & k=2 output = ababa/zzdzz/rerer. If n=7 & k=3 output=...
  • Ans. 

    Generate palindrome string with given length and distinct characters.

    • Create a char array of length n and fill it with distinct characters.

    • Loop through the array and add the characters in reverse order to create a palindrome.

    • Repeat the process until the required number of palindromes are generated.

    • If k is less than the length of the palindrome, use the first k distinct characters.

  • Answered by AI
  • Q8. Given an array with length n , find highest value which occurs same number of times within the array. [3,8,3,2,1,3,2] 3 occurs 3 times output=3. [4,6,7,6,7,5,4,2,4,9,4,1,9] 4 occurs 3 times output=4
  • Ans. 

    Find the highest value that occurs the same number of times within an array.

    • Iterate through the array and count the occurrences of each value.

    • Store the counts in a dictionary or hash map.

    • Find the maximum count and check which value(s) have that count.

    • Return the highest value among those with the maximum count.

  • Answered by AI
  • Q9. Find number of occurrences of a character in string. Provide multiple approaches for the solution and choose the best why? For "string aabcadd output=a3b1c1d2
  • Ans. 

    Count occurrences of a character in a string and output in a specific format.

    • Use a hash table to store the count of each character.

    • Loop through the string and update the count in the hash table.

    • Create the output string using the hash table.

  • Answered by AI
  • Q10. Convert String from Camel case to Snake case
  • Ans. 

    Converts a string from Camel case to Snake case.

    • Loop through the string and check for uppercase letters

    • Insert an underscore before each uppercase letter

    • Convert the string to lowercase

  • Answered by AI
  • Q11. Given a class @Data class Account{String name; String acctBalance;}. Write logic to get Map using Stream API which shows the balance of each person i,e, key will be the name of the account holder and valu...
  • Ans. 

    Logic to get Map using Stream API to show balance of each person

    • Use Stream API to group accounts by name

    • Use map() to get the sum of balances for each group

    • Collect the results into a Map

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Marvelous interview experience. Although it was 7 rounds of process, each interviewer was best at his/her way.
Initial 2 rounds of interview will bring blood out of your veins , later rounds will bring a little pumping.

Skills evaluated in this interview

I applied via Company Website and was interviewed in Jun 2021. There were 6 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. About different financial Markets
  • Q2. Difference between Financial Instruments, asset classes etc
  • Ans. 

    Financial instruments are tradable assets that represent a legal agreement between two parties to buy or sell an asset at a predetermined price and time.

    • Financial instruments include stocks, bonds, options, futures, and derivatives.

    • Asset classes are groups of financial instruments that share similar characteristics and behave similarly in the market.

    • Examples of asset classes include equities, fixed income, commodities,...

  • Answered by AI
  • Q3. About previous experience and project you did. They expect detailed explanation.

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure you have the in depth knowledge about Financial services, About competitors, products. Be confident while answering the questions.

Interview Questionnaire 

13 Questions

  • Q1. 1. Go through your cv
  • Q2. 2. Share articleship exposure & have you got exposure specially banking audit assignments
  • Q3. 3. What's your favourite subject in CA Final
  • Q4. 4. What you know about company
  • Q5. 5. Why are you interested in audit
  • Q6. 6. Tell about your family
  • Q7. 7. Why are you not going for practice
  • Q8. 8. What's your future plans
  • Q9. 9. What's your last job roles and responsibilities
  • Q10. 10. Why you joined MBA
  • Q11. 11. How many attempts you take to became CA in CPT, Inter and Final
  • Q12. 12. What's your level of excel knowledge
  • Q13. 14. Have you any questions?

I applied via Naukri.com and was interviewed in Sep 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Regarding my job nature, process,experience and salary expectations

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was nice, I am able understand what the recruiter is looking for and accordingly I shared my process knowledge.

I applied via Naukri.com

Interview Questionnaire 

9 Questions

  • Q1. Intro yourself
  • Q2. What is the primary market
  • Ans. 

    The primary market is where new securities are issued and sold for the first time.

    • It is the market where companies raise capital by issuing new stocks or bonds.

    • Investors can purchase these securities directly from the issuing company.

    • Examples include initial public offerings (IPOs) and corporate bond offerings.

  • Answered by AI
  • Q3. What is the secondary market
  • Ans. 

    The secondary market refers to the financial market where previously issued securities are bought and sold.

    • It is a market where investors can trade securities that have already been issued.

    • It provides liquidity to investors by allowing them to buy and sell securities after their initial issuance.

    • The secondary market includes stock exchanges, bond markets, and other platforms where securities are traded.

    • Investors can bu...

  • Answered by AI
  • Q4. What is the future and option
  • Ans. 

    Futures and options are financial derivatives that allow investors to speculate on the future price movements of an underlying asset.

    • Futures contracts are agreements to buy or sell an asset at a predetermined price on a specified future date.

    • Options contracts give the holder the right, but not the obligation, to buy or sell an asset at a predetermined price within a specified period.

    • Both futures and options are commonl...

  • Answered by AI
  • Q5. What is the derivative
  • Ans. 

    The derivative is a mathematical concept that represents the rate of change of a function at a particular point.

    • The derivative measures how a function changes as its input changes

    • It is defined as the slope of the tangent line to the graph of the function at a given point

    • The derivative can be used to find the maximum and minimum values of a function

    • It is commonly used in calculus to solve problems involving rates of cha...

  • Answered by AI
  • Q6. How many type of trade
  • Ans. 

    There are several types of trade, including international trade, domestic trade, wholesale trade, and retail trade.

    • International trade involves the exchange of goods and services between countries.

    • Domestic trade refers to the buying and selling of goods and services within a country.

    • Wholesale trade involves the sale of goods in large quantities to retailers or other businesses.

    • Retail trade involves the sale of goods to...

  • Answered by AI
  • Q7. What is the capital and money market
  • Ans. 

    Capital market deals with long-term securities while money market deals with short-term securities.

    • Capital market is a market for long-term securities such as stocks, bonds, and debentures.

    • Money market is a market for short-term securities such as treasury bills, commercial papers, and certificates of deposit.

    • Capital market is used for raising long-term funds for investment in fixed assets.

    • Money market is used for shor...

  • Answered by AI
  • Q8. Which changes levied in share purchasing and selling
  • Ans. 

    Changes in share purchasing and selling

    • Introduction of online trading platforms

    • Implementation of circuit breakers to prevent extreme price fluctuations

    • Introduction of transaction taxes in some countries

    • Increased use of algorithmic trading

    • Regulatory changes to increase transparency and prevent insider trading

  • Answered by AI
  • Q9. Calculation of brokerage
  • Ans. 

    Calculation of brokerage is based on the percentage of the transaction value.

    • Brokerage is calculated as a percentage of the transaction value

    • The percentage may vary depending on the type of security being traded

    • For example, the brokerage for equity shares may be different from that of mutual funds

    • Brokerage may also be subject to a minimum and maximum limit

    • The brokerage amount is deducted from the investor's account

    • The ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Full knowledge compulsory about share market AND about IPO ABOUT NCD FULL KNOWLEDGE OF TRADE

I applied via Referral and was interviewed in Apr 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. From basic to advance we have to prepare. Basic of javascript and javascript version. And deep dive in angular concept wise nad architecture we have to know.

Interview Preparation Tips

Interview preparation tips for other job seekers - In Technical as usual we have to perfect but in management round mostly they asked logical question like puzzle. And we have to give correct answer. If everything is given correct answer but in logical not then selection will not ve happened.

Mwyn Tech Interview FAQs

How many rounds are there in Mwyn Tech interview for experienced candidates?
Mwyn Tech interview process for experienced candidates usually has 4 rounds. The most common rounds in the Mwyn Tech interview process for experienced candidates are One-on-one Round and Resume Shortlist.
How to prepare for Mwyn Tech interview for experienced candidates?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Mwyn Tech. The most common topics and skills that interviewers at Mwyn Tech expect are Calendaring, EA and Travel Arrangements.
What are the top questions asked in Mwyn Tech interview for experienced candidates?

Some of the top questions asked at the Mwyn Tech interview for experienced candidates -

  1. Any questions answered me related w...read more
  2. Financial related, business fina...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 784 Interviews
HSBC Group Interview Questions
4.0
 • 485 Interviews
View all

Mwyn Tech Reviews and Ratings

based on 9 reviews

4.1/5

Rating in categories

4.1

Skill development

4.2

Work-Life balance

4.1

Salary & Benefits

3.8

Job Security

4.0

Company culture

4.0

Promotions/Appraisal

3.9

Work Satisfaction

Explore 9 Reviews and Ratings
Associate
4 salaries
unlock blur

₹6.5 L/yr - ₹8 L/yr

Field Executive
4 salaries
unlock blur

₹2 L/yr - ₹2.8 L/yr

Business Finance Manager
4 salaries
unlock blur

₹23 L/yr - ₹30 L/yr

Operations Associate
3 salaries
unlock blur

₹5.5 L/yr - ₹5.5 L/yr

Financial Associate
3 salaries
unlock blur

₹4 L/yr - ₹4 L/yr

Explore more salaries
Compare Mwyn Tech with

Infosys

3.7
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
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