Upload Button Icon Add office photos

Filter interviews by

Barclays Interview Questions, Process, and Tips for Freshers

Updated 3 Dec 2024

Top Barclays Interview Questions and Answers for Freshers

View all 22 questions

Barclays Interview Experiences for Freshers

Popular Designations

46 interviews found

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

I applied via campus placement at K J Somaiya College of Engineering, Mumbai 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

Software Engineer Intern Interview Questions asked at other Companies

Q1. Check if two trees are MirrorYou are given two arbitrary binary trees consisting of N and M number of nodes respectively, your task is to check whether the two trees are mirror of each other or not. Two trees are said to be mirror of each o... read more
View answer (2)
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

Customer Service Advisor Interview Questions asked at other Companies

Q1. How can you handle a Aggressive Customer?
View answer (1)
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
  • 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.

Personal Banker Interview Questions asked at other Companies

Q1. Could you open an account of chai wala and how
View answer (40)
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Pune Institute of Computer Technology, Pune 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

Top Barclays Software Developer Interview Questions and Answers

Q1. Shopping SpreePreeti has decided to go to the Grand Mall to buy some stuff for her father’s birthday. On reaching the place, she found a fascinating shop that has an unlimited quantity of each item they sell. The shop has N different types ... read more
View answer (5)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Barclays interview questions for popular designations

 Software Developer

 (15)

 Process Advisor

 (11)

 Analyst

 (10)

 Associate Vice President

 (9)

 Business Analyst

 (9)

 Software Engineer

 (9)

 Senior Analyst

 (8)

 Assistant Vice President

 (7)

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

Senior Executive Operations Interview Questions asked at other Companies

Q1. In 1 day how many veh can be loaded and unloaded with dock man power count of 14.
View answer (5)

Get interview-ready with Top Barclays Interview Questions

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

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.

Process Advisor Interview Questions asked at other Companies

Q1. Which types of bank accounts do you know?
View answer (1)
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
  • Q2. What is bond convexity
Round 2 - Technical 

(2 Questions)

  • Q1. What is option greeks
  • Q2. What is BSM and explain

Assistant Risk Manager Interview Questions asked at other Companies

Q1. Audit frameworks and standards you have worked with?
View answer (1)

Business Analyst interview

user image Placement Interview

posted on 28 Oct 2021

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

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

OOP,DBMS,SQL were focused.

Round 2 - One-on-one 

(1 Question)

  • Q1. What so you know about SQL an dits queries in detail.

Software Intern Interview Questions asked at other Companies

Q1. 2nd TR:- 1. How can we reduce page loading time in a website.
View answer (1)

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, Technical and HR.
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
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.

Barclays Interview Process for Freshers

based on 22 interviews

Interview experience

3.9
  
Good
View more

Interview Questions from Similar Companies

ICICI Bank Interview Questions
4.0
 • 2.4k Interviews
HDFC Bank Interview Questions
3.9
 • 2.1k Interviews
Axis Bank Interview Questions
3.8
 • 1.5k Interviews
IDFC FIRST Bank Interview Questions
4.0
 • 625 Interviews
IndusInd Bank Interview Questions
3.5
 • 591 Interviews
HSBC Group Interview Questions
4.0
 • 490 Interviews
Yes Bank Interview Questions
3.7
 • 414 Interviews
View all

Barclays Reviews and Ratings

based on 2.3k reviews

3.8/5

Rating in categories

3.5

Skill development

3.8

Work-life balance

3.8

Salary

3.8

Job security

3.7

Company culture

3.2

Promotions

3.5

Work satisfaction

Explore 2.3k Reviews and Ratings
Assistant Vice President
2.3k salaries
unlock blur

₹17 L/yr - ₹45 L/yr

Senior Analyst
1.1k salaries
unlock blur

₹3 L/yr - ₹11.2 L/yr

Assistant Manager
980 salaries
unlock blur

₹7.6 L/yr - ₹25 L/yr

Process Advisor
933 salaries
unlock blur

₹1 L/yr - ₹8.3 L/yr

Analyst
791 salaries
unlock blur

₹11.6 L/yr - ₹20 L/yr

Explore more salaries
Compare Barclays with

Deutsche Bank

3.9
Compare

Accenture

3.9
Compare

Amazon

4.1
Compare

Deloitte

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