Upload Button Icon Add office photos
Engaged Employer

i

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

UBS Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

UBS Interview Questions and Answers

Updated 5 Jul 2025
Popular Designations

267 Interview questions

An authorised Officer was asked 3w ago
Q. What is MapReduce programming?
Ans. 

MapReduce is a programming model for processing large data sets with a distributed algorithm on a cluster.

  • Map phase: Processes input data and produces key-value pairs. Example: Counting words in a document.

  • Reduce phase: Aggregates the key-value pairs produced by the map phase. Example: Summing the counts of each word.

  • Scalability: Efficiently processes large data sets across multiple machines.

  • Fault tolerance: Autom...

View all authorised Officer interview questions
A Software Developer was asked 1mo ago
Q. How is OOP used in Java?
Ans. 

OOP in Java enables code reusability, modularity, and abstraction through classes and objects.

  • Encapsulation: Bundling data and methods. Example: A class 'Car' with attributes like 'color' and methods like 'drive()'.

  • Inheritance: Deriving new classes from existing ones. Example: 'ElectricCar' inherits from 'Car'.

  • Polymorphism: Methods can take many forms. Example: A method 'draw()' can be used for both 'Circle' and '...

View all Software Developer interview questions
A Software Developer was asked 2mo ago
Q. What is the time complexity of merge sort?
Ans. 

Merge sort is a divide-and-conquer algorithm with a time complexity of O(n log n) for sorting arrays efficiently.

  • Divide and Conquer: Merge sort divides the array into halves, sorts each half, and then merges them back together.

  • Time Complexity: The time complexity is O(n log n) in the average and worst cases, making it efficient for large datasets.

  • Space Complexity: Merge sort requires O(n) additional space for the ...

View all Software Developer interview questions
A Software Developer was asked 2mo ago
Q. What is the time complexity of quick sort?
Ans. 

Quick sort is an efficient sorting algorithm with average time complexity of O(n log n) and worst-case of O(n²).

  • Average Case: Quick sort typically performs at O(n log n) time complexity, making it efficient for large datasets.

  • Worst Case: In the worst-case scenario, such as when the smallest or largest element is always chosen as the pivot, the time complexity can degrade to O(n²).

  • Best Case: The best-case time comp...

View all Software Developer interview questions
A Product Control Analyst was asked 2mo ago
Q. How do we use stock market instruments in practice?
Ans. 

Stock market instruments are used for investment, risk management, and capital raising, impacting financial markets and economies.

  • Equities: Investors buy shares of companies to gain ownership and potential dividends, e.g., purchasing Apple stock for capital appreciation.

  • Bonds: Issued by governments or corporations, bonds are used to raise capital, providing fixed interest returns, e.g., U.S. Treasury bonds.

  • Derivat...

View all Product Control Analyst interview questions
A Product Control Analyst was asked 2mo ago
Q. What are the different instruments used in the share market?
Ans. 

The share market utilizes various financial instruments for trading, including stocks, bonds, ETFs, and derivatives.

  • Stocks: Represent ownership in a company; for example, buying shares of Apple Inc. gives you a stake in the company.

  • Bonds: Debt instruments issued by corporations or governments; for instance, U.S. Treasury bonds are considered low-risk investments.

  • Exchange-Traded Funds (ETFs): Investment funds that ...

View all Product Control Analyst interview questions
A Security Supervisor was asked 2mo ago
Q. What is Governance, Risk, and Compliance (GRC)?
Ans. 

GRC integrates governance, risk management, and compliance to ensure organizations meet objectives while managing risks effectively.

  • Governance: Establishes policies and procedures to guide an organization’s direction and decision-making.

  • Risk Management: Identifies, assesses, and mitigates risks that could hinder the achievement of objectives. Example: Conducting regular risk assessments.

  • Compliance: Ensures adheren...

View all Security Supervisor interview questions
Are these interview questions helpful?
An Authorized Officer was asked 3mo ago
Q. What is the entitlement rule that applies to cash dividend payments?
Ans. 

The entitlement rule for cash dividends determines who receives dividends based on ownership on the record date.

  • The entitlement rule states that only shareholders on the record date are eligible for cash dividends.

  • For example, if a company declares a dividend on March 1 and the record date is March 15, only shareholders on March 15 receive the dividend.

  • The ex-dividend date, typically set one business day before th...

View all Authorized Officer interview questions
An Authorized Officer was asked 3mo ago
Q. What is the difference between bonds and equities?
Ans. 

Bonds are debt instruments, while equities represent ownership in a company.

  • Bonds are loans made to corporations or governments, while equities are shares of ownership in a company.

  • Bonds typically pay fixed interest over time, whereas equities may pay dividends based on company profits.

  • Bonds are generally considered lower risk compared to equities, which can be more volatile.

  • Example of a bond: U.S. Treasury bond; ...

View all Authorized Officer interview questions
An Authorized Officer was asked 3mo ago
Q. What is Swift, and what are its types?
Ans. 

SWIFT is a global messaging network for financial transactions, facilitating secure and standardized communication between banks.

  • SWIFT stands for Society for Worldwide Interbank Financial Telecommunication.

  • It enables secure and standardized communication for financial transactions.

  • Types of SWIFT messages include MT (Message Type) and MX (ISO 20022 messages).

  • MT messages are traditional and widely used, e.g., MT103 ...

View all Authorized Officer interview questions

UBS Interview Experiences

352 interviews found

ENO Interview Questions & Answers

user image Anonymous

posted on 4 Jul 2015

Interview Questionnaire 

12 Questions

  • Q1. 1) What is Polymorphism in Java?
  • Ans. 

    Polymorphism in Java refers to the ability of an object to take on many forms.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables methods to be overridden in a subclass with the same name but different implementation.

    • Polymorphism is achieved through method overriding and method overloading.

    • Example: A superclass Animal with a method 'makeSound()', and subclasses Do...

  • Answered by AI
  • Q2. 2) What is multithreading?
  • Ans. 

    Multithreading is the ability of a CPU to execute multiple threads concurrently, improving performance and responsiveness.

    • Multithreading allows multiple threads to run concurrently within a single process.

    • Each thread has its own program counter, stack, and set of registers.

    • Threads share the same memory space, allowing them to communicate and share data.

    • Multithreading can improve performance by utilizing idle CPU time a...

  • Answered by AI
  • Q3. 3) What is operator overloading?( Explain with a pseudo code.)
  • Ans. 

    Operator overloading is a feature in programming languages that allows operators to have different behaviors depending on the types of operands.

    • Operator overloading enables the use of operators with custom types.

    • It allows the same operator to perform different operations based on the types of operands.

    • In languages like C++, you can define how operators like +, -, *, etc. work with user-defined types.

    • Pseudo code example...

  • Answered by AI
  • Q4. If I have 1 to 10 numbers in an array and if one of the numbers is missing then how will you find out which one is the missing number?
  • Ans. 

    To find the missing number in an array of 1 to 10 numbers, calculate the sum of all numbers and subtract the sum of the given array.

    • Calculate the sum of numbers from 1 to 10 using the formula n * (n + 1) / 2

    • Calculate the sum of the given array

    • Subtract the sum of the given array from the sum of numbers from 1 to 10

    • The result will be the missing number

  • Answered by AI
  • Q5. What are your strengths and weaknesses?
  • Q6. 2) How are you trying to overcome your weaknesses?
  • Q7. 3) Questions about family
  • Q8. What is the one thing in you that makes you different and distinguishable from your classmates?
  • Q9. 5) Are your parents okay if we post you in Pune?
  • Ans. 

    My parents are supportive of my posting in Pune, understanding the opportunities it brings for my career and personal growth.

    • They appreciate the professional growth opportunities in Pune's vibrant environment.

    • My parents visited Pune and loved the culture and lifestyle, which eased their concerns.

    • They trust my ability to adapt and thrive in new environments, having seen me handle challenges before.

  • Answered by AI
  • Q10. What are your hobbies? 2) What would you do if your colleague behaves in a way which is against your principles? What are your hobbies?
  • Q11. 2) What would you do if your colleague behaves in a way which is against your principles?
  • Q12. 3) Which is the happiest day of your life?
  • Ans. 

    The day I got married and started a new chapter of my life.

    • The day I got married was filled with joy and excitement.

    • It was a beautiful ceremony surrounded by our loved ones.

    • I felt a deep sense of happiness and fulfillment as I embarked on this new journey.

    • We celebrated with a memorable reception and created lifelong memories.

    • It marked the beginning of a partnership and a lifetime of love and companionship.

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: The first round was the tech round in which firstly I was asked about things on my resume (e.g. I had done a course in Embedded Systems, so the interviewer asked me in which language I was made to code etc.)  If I have 1 to 10 numbers in an array and if one of the numbers is missing then how will you find out which one is the missing number? ( The answer is that you have to add all the numbers in an array and then compare the sum with the expected one. The difference between the two is the missing number) Puzzle: If 3 ants are travelling along the sides of a triangle only in one specific direction then what’s the probability that the ants don’t collide.?( Don’t remember exactly, so refer to the same book mentioned above for the question as well as the solution  Design a lift with minimum amount of inconvenience on the part of user. ( The answer is—You should divide the total no. of floors in even floors and odd floors and then design )
Tips: Special tip: Please go through as many puzzles as you can from How to ace... book. Also there is an app called water logic which might be useful

College Name: IIT MADRAS

Skills evaluated in this interview

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

I appeared for an interview in Feb 2025.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What are your reasons for wanting to join this company?
  • Ans. 

    I am drawn to this company for its innovative approach, commitment to excellence, and alignment with my professional values and goals.

    • The company's reputation for innovation aligns with my passion for driving change in the industry.

    • I admire your commitment to sustainability and corporate social responsibility, which resonates with my personal values.

    • The opportunity to work with a talented team excites me, as collaborat...

  • Answered by AI
  • Q2. What knowledge do you possess regarding risk and banking?
  • Ans. 

    I possess extensive knowledge of risk management in banking, including credit, market, operational, and liquidity risks.

    • Credit Risk: Assessing the likelihood of a borrower defaulting on a loan, e.g., using credit scoring models.

    • Market Risk: Understanding the impact of market fluctuations on asset values, e.g., managing a portfolio's exposure to interest rate changes.

    • Operational Risk: Identifying risks arising from inte...

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. What is your scope of work and your determination to succeed in it?
  • Ans. 

    As an Associate Director, my scope encompasses strategic leadership, team development, and project management to drive organizational success.

    • Strategic Leadership: I develop and implement long-term strategies that align with organizational goals, ensuring sustainable growth.

    • Team Development: I prioritize mentoring and empowering team members, fostering a culture of collaboration and innovation.

    • Project Management: I ove...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Concentrate on developing fundamental skills and knowledge.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. What are derivatives in finance?
  • Ans. 

    Derivatives in finance are financial instruments whose value is derived from the value of an underlying asset.

    • Derivatives can be used for hedging against risk, speculating on price movements, or gaining exposure to assets without owning them.

    • Common types of derivatives include options, futures, forwards, and swaps.

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

  • Answered by AI
  • Q2. What are the different types of derivatives?
  • Ans. 

    Derivatives are financial instruments whose value is derived from an underlying asset or group of assets.

    • Types of derivatives include options, futures, forwards, and swaps.

    • Options give the holder the right, but not the obligation, to buy or sell an asset at a specified price before or on a specified date.

    • Futures are contracts to buy or sell an asset at a future date for a price agreed upon today.

    • Forwards are similar to...

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. What are the details of the stock market and its various products?
  • Ans. 

    The stock market is a platform where investors can buy and sell shares of publicly traded companies.

    • Stocks represent ownership in a company and can be bought and sold on stock exchanges like NYSE and NASDAQ.

    • Bonds are debt securities issued by companies or governments to raise capital.

    • Mutual funds pool money from multiple investors to invest in a diversified portfolio of stocks, bonds, or other securities.

    • Options give i...

  • Answered by AI
  • Q2. Balance sheet,profit &loss account
  • Q3. Journal entries
  • Q4. Option in detail, economic crisis,

Interview Preparation Tips

Interview preparation tips for other job seekers - Well-prepared with comprehensive knowledge of the stock market, derivatives and their types, balance sheets, and profit and loss accounts.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Question on financial derivatives
Round 2 - Technical 

(1 Question)

  • Q1. Question on Greeks and Derivatives
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Design a system where images and documents would be transferred to client.
  • Ans. 

    Design a system for transferring images and documents to clients.

    • Use a secure file transfer protocol like SFTP or HTTPS

    • Implement a user-friendly interface for clients to upload and download files

    • Utilize cloud storage for scalability and accessibility

    • Include encryption for data security

    • Implement version control for tracking changes

  • Answered by AI
  • Q2. Redis caching details
  • Ans. 

    Redis is an open-source, in-memory data structure store used as a cache or database.

    • Redis is used for caching frequently accessed data to improve performance.

    • It stores data in key-value pairs and can be used for session management, real-time analytics, and more.

    • Redis supports various data structures like strings, lists, sets, sorted sets, hashes, and more.

    • It has features like replication, persistence, clustering, and L...

  • Answered by AI
  • Q3. How to call rest api in Angular
  • Ans. 

    To call a REST API in Angular, use the HttpClient module to make HTTP requests.

    • Import HttpClientModule in app.module.ts

    • Inject HttpClient in the component/service where API call needs to be made

    • Use HttpClient methods like get(), post(), put(), delete() to make API calls

    • Subscribe to the Observable returned by HttpClient methods to get the response data

    • Handle errors using catchError() method

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview is average, just go with little preparation

Summer Associate Interview Questions & Answers

user image Jeren Tolegova

posted on 6 Nov 2024

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. How do you keep up with multiple deadlines
  • Ans. 

    I prioritize tasks, use a calendar, break down tasks into smaller steps, and communicate with team members.

    • Prioritize tasks based on deadlines and importance

    • Use a calendar or task management tool to track deadlines

    • Break down tasks into smaller steps to manage time effectively

    • Communicate with team members to coordinate deadlines and workload

  • Answered by AI
  • Q2. Tell me about yourself
  • Ans. 

    I am a motivated and detail-oriented individual with a strong background in finance and a passion for problem-solving.

    • Graduated with a degree in Finance from XYZ University

    • Completed internships at ABC Investment Bank and DEF Consulting firm

    • Proficient in financial modeling and analysis

    • Strong communication and teamwork skills

    • Passionate about finding innovative solutions to complex problems

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. What is happening in the markets
  • Ans. 

    The markets are currently experiencing volatility due to global economic uncertainty and geopolitical tensions.

    • Global economic uncertainty, such as trade tensions between US and China, Brexit negotiations, and slowing growth in major economies

    • Geopolitical tensions, including conflicts in the Middle East and North Korea's nuclear program

    • Market reactions to central bank policies and interest rate changes

    • Impact of COVID-1...

  • Answered by AI
  • Q2. What do you know about our team
  • Ans. 

    Our team is known for its diverse expertise in various practice areas and strong collaborative culture.

    • Diverse expertise in various practice areas

    • Strong collaborative culture

    • Known for delivering high-quality work efficiently

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Quantity ,verbal number system , percentage

Round 2 - Coding Test 

Revse string ,1 ton100 prime number

Round 3 - One-on-one 

(1 Question)

  • Q1. Java questions oops , Inheritance, polymorphism, multi therd

KYC Analyst Interview Questions & Answers

user image Anonymous

posted on 24 Dec 2024

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is KYC and AML
  • Ans. 

    KYC stands for Know Your Customer and AML stands for Anti-Money Laundering. They are regulatory processes to prevent financial crimes.

    • KYC is the process of verifying the identity of customers to prevent fraud and financial crimes.

    • AML is the set of procedures, laws, and regulations designed to prevent the practice of generating income through illegal actions.

    • KYC involves verifying customer identity, assessing risks, and...

  • Answered by AI
  • Q2. Why UBS?
  • Ans. 

    UBS is a global financial services company known for its strong reputation, innovative solutions, and commitment to excellence.

    • UBS has a strong reputation in the financial services industry

    • UBS is known for its innovative solutions and cutting-edge technology

    • UBS has a global presence, offering opportunities for growth and development

    • UBS values excellence and professionalism in its employees

    • UBS has a strong commitment to...

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Why you wnat join UBS
  • Ans. 

    I want to join UBS because of its reputation for excellence in the financial industry and the opportunities for professional growth and development.

    • UBS is a globally recognized financial institution known for its high standards of quality and integrity

    • I am impressed by UBS's commitment to innovation and technology in the financial sector

    • I believe that working at UBS will provide me with the chance to enhance my skills ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for UBS KYC Analyst interview:
  • Anti Money Laundering
Interview preparation tips for other job seekers - Have tge basic Financial and compliance knowledge
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via Company Website and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Project Architecture
Round 2 - Technical 

(1 Question)

  • Q1. Informatica tech questions
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

1 coding question based on DP for 25 minutes and 30 MCQs on Java , OOPS and code snippet questions also some basic questions based on trees like number of leaf nodes in a complete binary tree with n nodes.

Round 2 - Technical 

(3 Questions)

  • Q1. Write code for finding palindrome of a string
  • Q2. What is dynamic memory allocation in Java
  • Q3. You are designing an e commerce website which database will you choose and what will you use for authentication given that you can't use JWT or even third party like Google authentication
  • Ans. 

    I would choose a relational database like MySQL and implement a custom authentication system using session management.

    • Choose a relational database like MySQL for storing user data, product information, and orders.

    • Implement a custom authentication system using session management to securely authenticate users without JWT or third-party services.

    • Use encryption techniques to store and validate user passwords securely.

    • Util...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via UBS portal and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Assignment 

Hacker rank test was sent which consisted of react, js, HTML, css, j query and Java questions. You’ve to complete the test in 60 mins

Round 2 - Technical 

(2 Questions)

  • Q1. Promise, closure, diff btw let and const
  • Q2. Define virtual dom, viewport, redux, use effect hook
  • Ans. 

    Virtual DOM is a lightweight copy of the actual DOM, viewport is the visible area of a web page, Redux is a state management tool, useEffect hook is used for side effects in React components.

    • Virtual DOM is a lightweight copy of the actual DOM, used for efficient updates.

    • Viewport is the visible area of a web page on a device's screen.

    • Redux is a state management tool for managing application state in a predictable way.

    • us...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - work on your basics

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
6d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about UBS?
Ask anonymously on communities.

UBS Interview FAQs

How many rounds are there in UBS interview?
UBS interview process usually has 2-3 rounds. The most common rounds in the UBS interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for UBS interview?
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 UBS. The most common topics and skills that interviewers at UBS expect are Wealth Management, Python, SQL, Investment Banking and Analytical Chemistry.
What are the top questions asked in UBS interview?

Some of the top questions asked at the UBS interview -

  1. There is a closed room with 3 bulbs and there are three switches outside. You c...read more
  2. If there were 5 people sitting in a room and each thinks of some number, how co...read more
  3. You have taken a loan and are supposed to repay after 1 year..1st case wherein ...read more
What are the most common questions asked in UBS HR round?

The most common HR questions asked in UBS interview are -

  1. What are your strengths and weakness...read more
  2. Why are you looking for a chan...read more
  3. What are your salary expectatio...read more
How long is the UBS interview process?

The duration of UBS interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.2/5

based on 225 interview experiences

Difficulty level

Easy 14%
Moderate 74%
Hard 12%

Duration

Less than 2 weeks 45%
2-4 weeks 32%
4-6 weeks 12%
6-8 weeks 8%
More than 8 weeks 4%
View more

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.8
 • 618 Interviews
Citicorp Interview Questions
3.7
 • 588 Interviews
HSBC Group Interview Questions
3.9
 • 511 Interviews
American Express Interview Questions
4.1
 • 387 Interviews
BNY Interview Questions
3.8
 • 366 Interviews
Morgan Stanley Interview Questions
3.6
 • 308 Interviews
FactSet Interview Questions
3.9
 • 216 Interviews
View all

UBS Reviews and Ratings

based on 3.1k reviews

3.9/5

Rating in categories

3.6

Skill development

4.1

Work-life balance

3.7

Salary

3.6

Job security

3.9

Company culture

3.1

Promotions

3.6

Work satisfaction

Explore 3.1k Reviews and Ratings
CA Intern

Pune

0-1 Yrs

Not Disclosed

KYC Analyst

Mumbai

1-10 Yrs

Not Disclosed

Explore more jobs
Associate Director
3.8k salaries
unlock blur

₹27.2 L/yr - ₹48 L/yr

Assistant Vice President
2.3k salaries
unlock blur

₹24.8 L/yr - ₹44.2 L/yr

Authorized Officer
2k salaries
unlock blur

₹14.6 L/yr - ₹26 L/yr

Exempt NON Officer
1.5k salaries
unlock blur

₹12.9 L/yr - ₹23.2 L/yr

ENO
1.3k salaries
unlock blur

₹11.1 L/yr - ₹20 L/yr

Explore more salaries
Compare UBS with

Wells Fargo

3.8
Compare

JPMorgan Chase & Co.

3.9
Compare

HSBC Group

3.9
Compare

Cholamandalam Investment & Finance

3.9
Compare
write
Share an Interview