Upload Button Icon Add office photos

Filter interviews by

Barclays Software Developer Interview Questions, Process, and Tips

Updated 18 Oct 2024

Top Barclays Software Developer Interview Questions and Answers

  • Q1. Shopping Spree Problem Statement Preeti plans to shop for her father's birthday at a store with unlimited quantities of N different items. She has a budget that allows h ...read more
  • Q2. Words Magic with Prefix Replacement Problem Ninja is provided with a dictionary of words, WORDS , and a sentence, SENTENCE , which consists of words separated by spaces. ...read more
  • Q3. A shot fired from a gun pointing towards a tree full of birds. All birds left except one. Why ?
View all 11 questions

Barclays Software Developer Interview Experiences

15 interviews found

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

Mcq+coding which are medium level questions

Round 2 - Technical 

(3 Questions)

  • Q1. Multiple inheritance allowed in java?
  • Ans. 

    No, multiple inheritance is not allowed in Java.

    • Java does not support multiple inheritance for classes to avoid the diamond problem.

    • However, multiple inheritance is allowed for interfaces in Java.

    • Example: class A extends B, C is not allowed, but interface X extends Y, Z is allowed.

  • Answered by AI
  • Q2. Diff btw static and final
  • Ans. 

    Static is used to define class-level variables and methods, while final is used to define constants and prevent inheritance or modification.

    • Static variables and methods belong to the class itself, while final variables cannot be changed once initialized.

    • Static members can be accessed without creating an instance of the class, while final members must be accessed through an instance.

    • Static variables are shared among all...

  • Answered by AI
  • Q3. What is data encapsulation?
  • Ans. 

    Data encapsulation is the concept of bundling data and methods that operate on the data into a single unit, known as a class.

    • Encapsulation hides the internal state of an object and only exposes the necessary functionalities through methods.

    • It helps in achieving data abstraction and information hiding.

    • Example: A class 'Car' encapsulates data like speed, color, and methods like accelerate() and brake().

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java, Python, and web development technologies

    • Strong problem-solving skills

    • Team player with excellent communication skills

  • Answered by AI
  • Q2. What are company core values
  • Ans. 

    Company core values are the fundamental beliefs that guide the behavior and decisions of employees.

    • Integrity - acting with honesty and transparency in all dealings

    • Innovation - constantly seeking new and better ways to solve problems

    • Customer focus - prioritizing the needs and satisfaction of customers

    • Teamwork - collaborating effectively with colleagues to achieve common goals

  • Answered by AI

Skills evaluated in this interview

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

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Nagarro
Q4. Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Great round easy coding test fun

Round 2 - Technical 

(1 Question)

  • Q1. Why do you want to join
  • Ans. 

    I am passionate about creating innovative software solutions and believe this company offers a great platform for growth and learning.

    • Passionate about creating innovative software solutions

    • Believe company offers great platform for growth and learning

  • Answered by AI

Software Developer Interview Questions & Answers

user image Adesh Mandhare

posted on 27 Sep 2024

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

Aptitude test coducted online on hacker rank

Round 2 - Technical 

(1 Question)

  • Q1. Expalin the project
  • Ans. 

    Developed a web-based project management tool for tracking tasks and deadlines.

    • Used HTML, CSS, and JavaScript for front-end development

    • Implemented backend functionality using Node.js and MongoDB

    • Incorporated user authentication and authorization features

    • Utilized RESTful APIs for communication between front-end and back-end

  • Answered by AI

Barclays interview questions for designations

 Software Developer Intern

 (1)

 Developer

 (2)

 Software Engineer

 (9)

 Software Tester

 (1)

 Software Intern

 (1)

 Java Developer

 (4)

 Backend Developer

 (1)

 Application Developer

 (1)

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Asked about OOps concepts?
  • Q2. Asked about OOPS concept?

Get interview-ready with Top Barclays Interview Questions

Software Developer Interview Questions & Answers

user image Akash Khairnar

posted on 22 Apr 2024

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

Medium level questions

Round 2 - Technical 

(1 Question)

  • Q1. Java, spring boot
Round 3 - Behavioral 

(1 Question)

  • Q1. All HR questions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 

Do oops and data structures and sql

Round 3 - Technical 

(1 Question)

  • Q1. About Project questions asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Do spl and oops for OA
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Nested graph question, matrix question on hackerrank

Round 2 - Technical 

(3 Questions)

  • Q1. Related to SQL mostly i.e., joins
  • Q2. Give two tables perform different type of joins
  • Ans. 

    Two tables performing different types of joins

    • Inner join: Returns rows when there is a 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 outer join: Returns all rows when there is a match in either table

  • Answered by AI
  • Q3. Puzzle related to candles
Round 3 - HR 

(2 Questions)

  • Q1. So many questions were there to check ability to response without hesitation
  • Q2. Contribution to the company along with their values

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Can you develop a product company mindset while working in services
  • Q2. Can you catchup with new stack
  • Ans. 

    Yes, I can catch up with new stack.

    • I have a strong foundation in software development and can quickly learn new technologies.

    • I have experience in adapting to new programming languages and frameworks.

    • I am proactive in keeping up with industry trends and continuously learning new skills.

    • I have successfully transitioned to new stacks in previous projects.

    • I can provide examples of projects where I quickly learned and utili

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - This was unstructured

Skills evaluated in this interview

I was interviewed in Feb 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

It was an online test round of 90 minutes orgainsed in Hackerearth platform. It consists of 15 mcq questions and 2 coding questions. The level was moderate. Timing of test was in morning and platform was quite good.

  • Q1. 

    Shopping Spree Problem Statement

    Preeti plans to shop for her father's birthday at a store with unlimited quantities of N different items. She has a budget that allows her to buy a maximum of K items. Hel...

  • Ans. 

    Firstly, I solved using array but all my test cases were not passed then I solved with dp approach by which all test cases passed successfully.

  • Answered Anonymously
Round 2 - HR 

Round duration - 50 minutes
Round difficulty - Medium

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Banasthali University. Eligibility criteriaAbove 7 CGPABarclays interview preparation:Topics to prepare for the interview - Data Structures(Array, String, Tree, Graphs, Dynamic Programming) , OOPS, Basics of Operating System, DBMSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Try to understand basic concepts of all data structures and do coding questions from online sites like Hackerrank, Leetcode etc. 
Tip 2 : Prepare basics of DBMS and Operating System. OOPs concept is must .
Tip 3 : Go through all the basics sql queries or must know about any 1 database perfectly.

Application resume tips for other job seekers

Tip 1 : Resume should be short and catchy. It should not be more than 1 page. 
Tip 2 : Mention atleast 2 projects. Don't put skills you don't know because mostly interviewers will ask questions on resume basis.

Final outcome of the interviewSelected

Skills evaluated in this interview

Barclays Interview FAQs

How many rounds are there in Barclays Software Developer interview?
Barclays interview process usually has 2-3 rounds. The most common rounds in the Barclays interview process are Technical, Coding Test and HR.
What are the top questions asked in Barclays Software Developer interview?

Some of the top questions asked at the Barclays Software Developer interview -

  1. A shot fired from a gun pointing towards a tree full of birds. All birds left e...read more
  2. Cut cake into 8 pieces .You can use knife 3 times o...read more
  3. Explain the background process that takes place during an atm transact...read more

Tell us how to improve this page.

Barclays Software Developer Interview Process

based on 10 interviews

3 Interview rounds

  • Coding Test Round
  • Technical Round
  • HR Round
View more
Barclays Software Developer Salary
based on 384 salaries
₹6.8 L/yr - ₹23.8 L/yr
104% more than the average Software Developer Salary in India
View more details

Barclays Software Developer Reviews and Ratings

based on 36 reviews

3.6/5

Rating in categories

3.3

Skill development

3.6

Work-life balance

3.6

Salary

3.7

Job security

3.4

Company culture

2.8

Promotions

3.2

Work satisfaction

Explore 36 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.3 L/yr

Assistant Manager
987 salaries
unlock blur

₹6.7 L/yr - ₹25 L/yr

Process Advisor
919 salaries
unlock blur

₹1 L/yr - ₹8.3 L/yr

Analyst
787 salaries
unlock blur

₹11.6 L/yr - ₹20.6 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