Upload Button Icon Add office photos

Barclays

Compare button icon Compare button icon Compare

Filter interviews by

Barclays Senior Software Engineer Interview Questions and Answers

Updated 8 Sep 2024

5 Interview questions

A Senior Software Engineer was asked 10mo ago
Q. Explain the internal workings of a hashmap.
Ans. 

HashMap is a data structure that stores key-value pairs and uses hashing to efficiently retrieve values.

  • HashMap internally uses an array of linked lists to store key-value pairs.

  • When a key-value pair is added, the key is hashed to determine the index in the array where it will be stored.

  • If multiple keys hash to the same index, a linked list is used to handle collisions.

  • HashMap uses the hashCode() method of keys to...

A Senior Software Engineer was asked
Q. Walk me through a trading process.
Ans. 

A trading process involves buying and selling financial instruments in the market.

  • Research and analysis of market trends and opportunities

  • Placing buy or sell orders through a trading platform

  • Monitoring and managing open positions

  • Executing trades based on predetermined strategies

  • Recording and analyzing trade data for performance evaluation

Senior Software Engineer Interview Questions Asked at Other Companies

asked in UST
Q1. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in DBS Bank
Q2. Tell me about yourself. What technology are you using? What is a ... read more
Q3. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in GlobalLogic
Q4. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
Q5. If you have to prioritize between coding standards and project de ... read more
A Senior Software Engineer was asked
Q. What is GC and what types are there?
Ans. 

GC stands for Garbage Collection, a process in programming languages where unused memory is automatically reclaimed.

  • Types of GC include: Mark and Sweep, Reference Counting, Generational, and Incremental.

  • Mark and Sweep: Identifies and removes unreachable objects.

  • Reference Counting: Keeps track of the number of references to an object and deletes it when the count reaches zero.

  • Generational: Divides objects into diff...

A Senior Software Engineer was asked
Q. What is a JIT compiler?
Ans. 

JIT compiler stands for Just-In-Time compiler, which compiles code during runtime instead of ahead of time.

  • JIT compiler improves performance by compiling code on the fly as it is needed

  • It converts bytecode into native machine code for execution

  • Examples include Java HotSpot JIT compiler and .NET JIT compiler

A Senior Software Engineer was asked
Q. What are futures?
Ans. 

Futures are financial contracts that obligate the buyer to purchase an asset or the seller to sell an asset at a predetermined future date and price.

  • Futures are standardized contracts traded on exchanges, where the buyer agrees to purchase an asset at a future date for a price agreed upon today.

  • They are commonly used in commodities, currencies, and financial instruments trading.

  • Futures allow investors to hedge aga...

Barclays Senior Software Engineer Interview Experiences

3 interviews found

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(5 Questions)

  • Q1. Lots of technical questions but the interview was not technical..
  • Q2. What is JIT compiler
  • Ans. 

    JIT compiler stands for Just-In-Time compiler, which compiles code during runtime instead of ahead of time.

    • JIT compiler improves performance by compiling code on the fly as it is needed

    • It converts bytecode into native machine code for execution

    • Examples include Java HotSpot JIT compiler and .NET JIT compiler

  • Answered by AI
  • Q3. What are futures
  • Q4. What is GC and what types we have
  • Q5. Walk me through a trading process
  • Ans. 

    A trading process involves buying and selling financial instruments in the market.

    • Research and analysis of market trends and opportunities

    • Placing buy or sell orders through a trading platform

    • Monitoring and managing open positions

    • Executing trades based on predetermined strategies

    • Recording and analyzing trade data for performance evaluation

  • Answered by AI

Barclays HR Interview Questions

84 questions and answers

Q. What does inclusion mean in your company?
Q. Can you tell me about yourself and what you consider to be your strengths?
Q. How do you manage working under pressure?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Sep 2023. There were 4 interview rounds.

Round 1 - Coding Test 

3 coding questions on hacekrank platform

Round 2 - Technical 

(2 Questions)

  • Q1. Internal working of hashmap
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to efficiently retrieve values.

    • HashMap internally uses an array of linked lists to store key-value pairs.

    • When a key-value pair is added, the key is hashed to determine the index in the array where it will be stored.

    • If multiple keys hash to the same index, a linked list is used to handle collisions.

    • HashMap uses the hashCode() method of keys to calc...

  • Answered by AI
  • Q2. Springbbot, Microservices questions
Round 3 - Technical 

(2 Questions)

  • Q1. Project related
  • Q2. System design questions
Round 4 - HR 

(2 Questions)

  • Q1. General HR Discussion
  • Q2. Why you want join the company

Skills evaluated in this interview

Are these interview questions helpful?
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 - Technical 

(1 Question)

  • Q1. Python basics ,sql and unix shell
Round 3 - Behavioral 

(1 Question)

  • Q1. Why Barclays and best work you did till now?

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear yor basics clear for any interview

Top trending discussions

View All
Interview Hub
6d
a client servicing executive
FeedCard Image
Got a question about Barclays?
Ask anonymously on communities.

Interview questions from similar companies

I appeared for an interview before Mar 2016.

Interview Questionnaire 

2 Questions

  • Q1. Some technical questions were asked
  • Q2. They spring hibernate MVC flow and core java and Oracle connectivity questions

Interview Preparation Tips

Round: Technical + HR Interview
Experience: There was a Team manager and his junior for the interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Simple algorithm question about sorting

Round 2 - Technical 

(2 Questions)

  • Q1. Algorith question about quick sort
  • Q2. Nlonn run time of the sort
  • Ans. 

    The time complexity of the quicksort algorithm is O(n log n).

    • Quicksort has an average time complexity of O(n log n).

    • The best case time complexity of quicksort is O(n log n) when the pivot element divides the array into two equal halves.

    • The worst case time complexity of quicksort is O(n^2) when the pivot element is the smallest or largest element in the array.

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

HackerEarth / Hacker rank Test

Round 2 - Technical 

(1 Question)

  • Q1. Find the lowest cost when given days you want to use metro if you have cost of a day 1 ,7 and 30 day pass. DP Problem
  • Ans. 

    Using dynamic programming to find the lowest cost for metro passes based on given days.

    • Create an array to store the minimum cost for each day.

    • Iterate through each day and calculate the minimum cost based on 1, 7, or 30 day pass.

    • Update the minimum cost for each day using dynamic programming.

    • Return the minimum cost for the total number of days needed.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Normal HR Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DP and Graph Problems and know how banks work

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed in Nov 2021. There were 3 interview rounds.

Round 1 - Coding Test 

Basic data structure related coding questions like creating a linked list and adding items to it median.
Max heap implementation.
Concurrency related questions.

Round 2 - Technical 

(1 Question)

  • Q1. Senior developer was taking the round, covering all design and architecture related questions. I was able to give a satisfactory solution.
Round 3 - Behavioral 

(1 Question)

  • Q1. Just some behavioural question along with a lil bit technical questions. Asked me about my current projects and problems faced, how i gave a proper solution and how i help my team to grow.

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic DSA along with strong programming language knowledge is required to crack the interview.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

DSA , LLD on bar raiser

Round 2 - Coding Test 

DSA, SQL and discussions around projects

Round 3 - System Design 

(1 Question)

  • Q1. Design a notification system

Skills evaluated in this interview

Round 1 - Group Discussion 

Topic wt is ms office

Round 2 - Assignment 

Eassys dscover the basic structure of all essaysand see what a goo d essay introduction and conclusion look like

Round 3 - Technical 

(1 Question)

  • Q1. Ppt presentations and techical skillsare the abilities and knowledge needed to performtastks

Interview Preparation Tips

Interview preparation tips for other job seekers - Straight from the job seekers themselves were sharing the best job search advice people have ever received
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Joins, Jobs, stored procedures,cursors.

Round 2 - HR 

(1 Question)

  • Q1. What is my package

Barclays Interview FAQs

How many rounds are there in Barclays Senior Software Engineer interview?
Barclays interview process usually has 2-3 rounds. The most common rounds in the Barclays interview process are Technical, Behavioral and One-on-one Round.
What are the top questions asked in Barclays Senior Software Engineer interview?

Some of the top questions asked at the Barclays Senior Software Engineer interview -

  1. What is GC and what types we h...read more
  2. Walk me through a trading proc...read more
  3. What is JIT compi...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 2 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
Barclays Senior Software Engineer Salary
based on 366 salaries
₹18.7 L/yr - ₹30.5 L/yr
51% more than the average Senior Software Engineer Salary in India
View more details

Barclays Senior Software Engineer Reviews and Ratings

based on 23 reviews

4.1/5

Rating in categories

3.7

Skill development

4.2

Work-life balance

4.4

Salary

4.0

Job security

3.9

Company culture

3.2

Promotions

3.4

Work satisfaction

Explore 23 Reviews and Ratings
Assistant Vice President
2.7k salaries
unlock blur

₹25 L/yr - ₹43 L/yr

Senior Analyst
1.3k salaries
unlock blur

₹5 L/yr - ₹11.3 L/yr

Assistant Manager
1.2k salaries
unlock blur

₹11 L/yr - ₹19 L/yr

Process Advisor
1k salaries
unlock blur

₹3.3 L/yr - ₹7.2 L/yr

Vice President
806 salaries
unlock blur

₹42.6 L/yr - ₹72.4 L/yr

Explore more salaries
Compare Barclays with

Deutsche Bank

3.9
Compare

Accenture

3.7
Compare

Amazon

4.0
Compare

Deloitte

3.7
Compare
write
Share an Interview