Upload Button Icon Add office photos

Filter interviews by

Barclays Interview Questions and Answers for Freshers

Updated 28 Jun 2025
Popular Designations

28 Interview questions

An Assistant Risk Manager was asked 7mo ago
Q. What is bond duration?
Ans. 

Bond duration measures a bond's sensitivity to interest rate changes, indicating the time it takes to receive cash flows.

  • Duration is expressed in years and reflects the weighted average time until cash flows are received.

  • A bond with a longer duration is more sensitive to interest rate changes than one with a shorter duration.

  • For example, a 10-year bond with a duration of 7 years will see its price drop more than a...

View all Assistant Risk Manager interview questions
An Assistant Risk Manager was asked 7mo ago
Q. What are option Greeks?
Ans. 

Option greeks measure the sensitivity of options prices to various factors, helping traders assess risk and make informed decisions.

  • Delta: Measures the sensitivity of an option's price to a $1 change in the underlying asset's price. For example, a delta of 0.5 means the option price will increase by $0.50 if the underlying asset rises by $1.

  • Gamma: Measures the rate of change of delta for a $1 change in the underly...

View all Assistant Risk Manager interview questions
An Assistant Risk Manager was asked 7mo ago
Q. What is bond convexity?
Ans. 

Bond convexity measures the sensitivity of a bond's duration to changes in interest rates, indicating price volatility.

  • Convexity is a measure of the curvature in the relationship between bond prices and interest rates.

  • Higher convexity means greater price increases when rates fall and smaller price decreases when rates rise.

  • For example, a bond with high convexity will gain more in price when interest rates drop tha...

View all Assistant Risk Manager interview questions
An Assistant Risk Manager was asked 7mo ago
Q. What is the Black-Scholes-Merton model, and can you explain it?
Ans. 

BSM stands for Business Service Management, focusing on aligning IT services with business needs.

  • BSM integrates IT services with business processes to enhance efficiency.

  • It helps in monitoring and managing service performance, ensuring alignment with business goals.

  • Example: A retail company using BSM to track inventory management systems to improve customer satisfaction.

  • BSM tools provide insights into service impa...

View all Assistant Risk Manager interview questions
A Software Engineer Intern was asked 8mo ago
Q. Explain the time complexity of different sorting algorithms.
Ans. 

Sorting algorithms have different time complexities based on their implementation and efficiency.

  • Bubble Sort: O(n^2) - compares adjacent elements and swaps them if they are in the wrong order.

  • Merge Sort: O(n log n) - divides the array into two halves, sorts them, and then merges them.

  • Quick Sort: O(n log n) - picks a pivot element and partitions the array around the pivot.

  • Heap Sort: O(n log n) - builds a max heap a...

View all Software Engineer Intern interview questions
A Software Engineer Intern was asked 8mo ago
Q. Explain the four pillars of OOP: Abstraction, Encapsulation, Inheritance, and Polymorphism.
Ans. 

OOPs pillars are Abstraction, Encapsulation, Inheritance, and Polymorphism.

  • Abstraction: Hides complex implementation details and only shows necessary features. Example: Car dashboard displaying speed without showing internal engine details.

  • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: Class in Java encapsulates data members and member functions.

  • Inheritance: Allows a...

View all Software Engineer Intern interview questions
A Software Engineer Intern was asked 8mo ago
Q. Explain different types of JOIN operations (e.g., INNER JOIN, LEFT JOIN).
Ans. 

JOINS are used in SQL to combine rows from two or more tables based on a related column between them.

  • Inner Join: Returns rows when there is at least one match in both tables.

  • LEFT Join: Returns all rows from the left table, and the matched rows from the right table.

  • RIGHT Join: Returns all rows from the right table, and the matched rows from the left table.

  • FULL Join: Returns rows when there is a match in one of the ...

View all Software Engineer Intern interview questions
Are these interview questions helpful?
A Software Intern was asked
Q. What do you know about SQL and its queries in detail?
Ans. 

SQL is a standard language for managing and manipulating relational databases using various queries.

  • SQL stands for Structured Query Language, used for querying and managing data in relational databases.

  • Common SQL commands include SELECT, INSERT, UPDATE, DELETE, and CREATE.

  • SELECT statement retrieves data from a database. Example: SELECT * FROM users;

  • INSERT statement adds new records. Example: INSERT INTO users (nam...

View all Software Intern interview questions
An Internal Auditor was asked
Q. What do you know about internal audit?
Ans. 

Internal audit is an independent, objective assurance and consulting activity designed to add value and improve an organization's operations.

  • Internal audit evaluates the effectiveness of an organization's risk management, control, and governance processes.

  • It provides recommendations for improvement and helps organizations achieve their objectives.

  • Internal auditors are responsible for assessing the accuracy of fina...

View all Internal Auditor interview questions
A BA3 Developer was asked
Q. Explain some Object-Oriented Programming Concepts.
Ans. 

Object Oriented Programming (OOP) concepts include encapsulation, inheritance, polymorphism, and abstraction.

  • Encapsulation: Bundling data and methods together in a class to hide implementation details.

  • Inheritance: Creating new classes from existing ones, inheriting their properties and behaviors.

  • Polymorphism: The ability of objects of different classes to respond to the same method in different ways.

  • Abstraction: S...

View all BA3 Developer interview questions

Barclays Interview Experiences for Freshers

44 interviews found

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

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

Round 1 - Coding Test 

They had given 10 MCQs questions based on OOPs(Java), 2 MCQs on SQL, 1 SQL Query to run and 1 DSA question to code based on Strings, so overall 14 question. Difficulty level was easy to Medium.

Round 2 - One-on-one 

(7 Questions)

  • Q1. Explain the time complexity of different sorting algorithms.
  • Ans. 

    Sorting algorithms have different time complexities based on their implementation and efficiency.

    • Bubble Sort: O(n^2) - compares adjacent elements and swaps them if they are in the wrong order.

    • Merge Sort: O(n log n) - divides the array into two halves, sorts them, and then merges them.

    • Quick Sort: O(n log n) - picks a pivot element and partitions the array around the pivot.

    • Heap Sort: O(n log n) - builds a max heap and re...

  • Answered by AI
  • Q2. Usage of Hashmaps and Dictionaries
  • Ans. 

    Hashmaps and dictionaries are data structures used to store key-value pairs for efficient retrieval and storage.

    • Hashmaps and dictionaries are commonly used in programming to store and retrieve data based on a unique key.

    • They offer fast lookup times, typically O(1) on average, making them ideal for scenarios where quick access to data is required.

    • Examples of using hashmaps include storing user information with a unique ...

  • Answered by AI
  • Q3. Explain 4 pillars of OOPs (Abstraction, Encapsulation, Inheritance and polymorphism)
  • Ans. 

    OOPs pillars are Abstraction, Encapsulation, Inheritance, and Polymorphism.

    • Abstraction: Hides complex implementation details and only shows necessary features. Example: Car dashboard displaying speed without showing internal engine details.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: Class in Java encapsulates data members and member functions.

    • Inheritance: Allows a new ...

  • Answered by AI
  • Q4. Explain JOINS(Inner join, LEFT Join etc)
  • Ans. 

    JOINS are used in SQL to combine rows from two or more tables based on a related column between them.

    • Inner Join: Returns rows when there is at least one match in both tables.

    • LEFT Join: Returns all rows from the left table, and the matched rows from the right table.

    • RIGHT Join: Returns all rows from the right table, and the matched rows from the left table.

    • FULL Join: Returns rows when there is a match in one of the table...

  • Answered by AI
  • Q5. Why Barclays? What do you think we do?
  • Ans. 

    Barclays is a global financial services company with a focus on innovation and technology.

    • Barclays is a leading global bank with a strong presence in the financial services industry.

    • Barclays is known for its commitment to innovation and technology in the financial sector.

    • Barclays offers a wide range of services including banking, investment management, and wealth management.

    • Barclays has a strong reputation for providin...

  • Answered by AI
  • Q6. How do you manage stress and prepare yourself to work under tight deadlines? Can you describe a situation from the past where you faced a similar challenge and how you handled it?
  • Ans. 

    I manage stress by prioritizing tasks, breaking them down into smaller steps, and seeking help when needed.

    • Prioritize tasks based on deadlines and importance

    • Break down tasks into smaller, manageable steps

    • Seek help from team members or mentors when feeling overwhelmed

    • Practice time management and set realistic goals

  • Answered by AI
  • Q7. Asked a few questions on the projects I mentioned in my resume.

Interview Preparation Tips

Topics to prepare for Barclays Software Engineer Intern interview:
  • OOPS
  • Java
  • SQL
  • Database Management
  • DSA
  • Arrays
  • Strings
  • Stacks
  • Sorting algorithms

Skills evaluated in this interview

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

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. Questions on SQL Queries
  • Q2. Questions on Data Structures

Interview Preparation Tips

Interview preparation tips for other job seekers - Do Company Background checks before joining any company.. to get more idea of the work and work culture
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Jan 2025.

Round 1 - Coding Test 

A typical HackerRank technical test.

Interview Preparation Tips

Interview preparation tips for other job seekers - For individuals seeking to enter the fintech industry, this organization presents an excellent opportunity; however, if your focus is solely on technology, you may consider exploring other organisations.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Aptitude Test 

Online logical abd arithmetic test

Round 2 - One-on-one 

(1 Question)

  • Q1. Learn Barclays values RISES
Round 3 - HR 

(1 Question)

  • Q1. Salary expectations
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Group Discussion 

Group discussion with 18 to 15 folks.. With two moderators

Round 2 - Language assessment 

(1 Question)

  • Q1. Multiple questions were asked one on one. Generic questions about your best holiday... Fondest memory.
Round 3 - One-on-one 

(4 Questions)

  • Q1. Questions about your previous work experience
  • Q2. Reason for leaving the previous job
  • Ans. 

    I left my previous job to seek new challenges and opportunities for growth in a dynamic banking environment.

    • I was looking for a role that offered more opportunities for professional development.

    • My previous position had limited scope for advancement, and I wanted to expand my skills.

    • I was eager to work in a more customer-focused environment, which aligns with my passion for helping clients achieve their financial goals.

    • ...

  • Answered by AI
  • Q3. Reasons for joining barclays
  • Ans. 

    I am drawn to Barclays for its strong reputation, commitment to innovation, and opportunities for career growth.

    • Strong reputation in the banking industry

    • Commitment to innovation in financial services

    • Opportunities for career growth and development

  • Answered by AI
  • Q4. Mock calls with the interviewers

Interview Preparation Tips

Interview preparation tips for other job seekers - The process is time consuming as it is a walk in hiring process. Be patient and carry refreshments. Be well prepared with the background of the company and their mindset. Relate your work experience and your professional goals with their mindset.
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was easy they were asked cognitive,verble,reasoning questios and 2 coding question,and 1 sql query it was online

Round 2 - One-on-one 

(2 Questions)

  • Q1. Discussion on projects then asked some question on oop,sql query
  • Q2. Asked question on dsa it was easy like reverse linked list and how to detect loop in linked list and how to delete it
Round 3 - HR 

(2 Questions)

  • Q1. Discussion on projects,and give situational question
  • Q2. Then ask about family background
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Assignment 

It was good experience

Round 2 - Aptitude Test 

Logical test, number series test

Round 3 - One-on-one 

(2 Questions)

  • Q1. Self introduction
  • Q2. Previous experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Well prepared
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Previous exp qstns along with JD qstns

Round 2 - One-on-one 

(2 Questions)

  • Q1. JD qstns and previous work experience
  • Q2. Skillset and why should u choose this company and why should i hire u
Round 3 - HR 

(2 Questions)

  • Q1. Previous Salaries and why u leave the company
  • Q2. Expected salary
  • Ans. 

    I expect a salary that reflects my skills, experience, and the industry standards for the Process Advisor role.

    • Research industry standards: For example, similar roles in my region typically offer between $70,000 and $90,000.

    • Consider my experience: With over 5 years in process improvement, I believe a salary on the higher end is justified.

    • Value added to the company: My previous projects resulted in a 20% increase in eff...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep learning and yes remember and revise what is the process of doing your wrk. And yes as per JD go through it also.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is bond duration
  • Ans. 

    Bond duration measures a bond's sensitivity to interest rate changes, indicating the time it takes to receive cash flows.

    • Duration is expressed in years and reflects the weighted average time until cash flows are received.

    • A bond with a longer duration is more sensitive to interest rate changes than one with a shorter duration.

    • For example, a 10-year bond with a duration of 7 years will see its price drop more than a 5-ye...

  • Answered by AI
  • Q2. What is bond convexity
  • Ans. 

    Bond convexity measures the sensitivity of a bond's duration to changes in interest rates, indicating price volatility.

    • Convexity is a measure of the curvature in the relationship between bond prices and interest rates.

    • Higher convexity means greater price increases when rates fall and smaller price decreases when rates rise.

    • For example, a bond with high convexity will gain more in price when interest rates drop than it ...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is option greeks
  • Ans. 

    Option greeks measure the sensitivity of options prices to various factors, helping traders assess risk and make informed decisions.

    • Delta: Measures the sensitivity of an option's price to a $1 change in the underlying asset's price. For example, a delta of 0.5 means the option price will increase by $0.50 if the underlying asset rises by $1.

    • Gamma: Measures the rate of change of delta for a $1 change in the underlying a...

  • Answered by AI
  • Q2. What is BSM and explain
  • Ans. 

    BSM stands for Business Service Management, focusing on aligning IT services with business needs.

    • BSM integrates IT services with business processes to enhance efficiency.

    • It helps in monitoring and managing service performance, ensuring alignment with business goals.

    • Example: A retail company using BSM to track inventory management systems to improve customer satisfaction.

    • BSM tools provide insights into service impact on...

  • Answered by AI

Intern Interview Questions & Answers

user image Anonymous

posted on 9 Feb 2024

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

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

Round 1 - Coding Test 

Few Aptitude Questions around OOPS and then SQL queries on hackerearth

Round 2 - One-on-one 

(3 Questions)

  • Q1. One on One round by Barclays VP. The person seemed less interested in taking interview and questions were based on Resume and HR
  • Q2. Where do u see ur self in next 5 years
  • Q3. Barclays RISES.. how do u align urself

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Barclays?
Ask anonymously on communities.

Barclays Interview FAQs

How many rounds are there in Barclays interview for freshers?
Barclays interview process for freshers usually has 2-3 rounds. The most common rounds in the Barclays interview process for freshers are One-on-one Round, Coding Test and Technical.
How to prepare for Barclays interview for freshers?
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 Barclays. The most common topics and skills that interviewers at Barclays expect are Risk Analytics, Risk Management, Statistics, Analytics and IT Project Management.
What are the top questions asked in Barclays interview for freshers?

Some of the top questions asked at the Barclays interview for freshers -

  1. How you will find the smallest of 4 numbers without using >.< and min function ...read more
  2. How many barbers are required for a hypothetical town with 10000 peop...read more
  3. How do you explain classes and objects to a 1st standard k...read more
What are the most common questions asked in Barclays HR round for freshers?

The most common HR questions asked in Barclays interview are for freshers -

  1. Where do you see yourself in 5 yea...read more
  2. Why are you looking for a chan...read more
  3. Tell me about yourse...read more
How long is the Barclays interview process?

The duration of Barclays 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

3.9/5

based on 27 interview experiences

Difficulty level

Easy 17%
Moderate 78%
Hard 4%

Duration

Less than 2 weeks 73%
2-4 weeks 18%
4-6 weeks 9%
View more

Interview Questions from Similar Companies

ICICI Bank Interview Questions
4.0
 • 2.6k Interviews
HDFC Bank Interview Questions
3.9
 • 2.4k Interviews
Axis Bank Interview Questions
3.7
 • 1.6k Interviews
IDFC FIRST Bank Interview Questions
3.9
 • 749 Interviews
IndusInd Bank Interview Questions
3.5
 • 672 Interviews
Bandhan Bank Interview Questions
3.7
 • 620 Interviews
Yes Bank Interview Questions
3.7
 • 474 Interviews
View all

Barclays Reviews and Ratings

based on 2.8k reviews

3.8/5

Rating in categories

3.4

Skill development

3.7

Work-life balance

3.8

Salary

3.8

Job security

3.6

Company culture

3.0

Promotions

3.4

Work satisfaction

Explore 2.8k Reviews and Ratings
Assistant Vice President
2.6k salaries
unlock blur

₹25 L/yr - ₹43 L/yr

Senior Analyst
1.2k salaries
unlock blur

₹3 L/yr - ₹11.2 L/yr

Assistant Manager
1.1k salaries
unlock blur

₹6 L/yr - ₹25 L/yr

Process Advisor
972 salaries
unlock blur

₹1 L/yr - ₹7.6 L/yr

Analyst
819 salaries
unlock blur

₹5 L/yr - ₹21.6 L/yr

Explore more salaries
Compare Barclays with

Deutsche Bank

3.9
Compare

Accenture

3.8
Compare

Amazon

4.0
Compare

Deloitte

3.7
Compare
write
Share an Interview