Upload Button Icon Add office photos

Filter interviews by

Barclays Software Engineer Intern Interview Questions and Answers

Updated 5 Oct 2024

Barclays Software Engineer Intern Interview Experiences

1 interview 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

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.

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

Software Engineer Intern Interview Questions Asked at Other Companies

Q1. Check if Two Trees are Mirror Given two arbitrary binary trees, y ... read more
Q2. Partition Array Minimizing Subset Sum Difference Given an array c ... read more
Q3. Zero Matrix Problem Statement You are given a matrix MATRIX of di ... read more
Q4. Connecting Ropes with Minimum Cost You are given 'N' ropes, each ... read more
Q5. Search In Rotated Sorted Array Problem Statement Given a rotated ... read more
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Coding round java
  • Q2. Spring boot and devops activities

Interview Preparation Tips

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

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. DSA questions and questions based on your skills
  • Q2. What questions were asked regarding your resume during the interview?
  • Ans. 

    The interviewer asked about my projects, skills, and experiences listed on my resume to gauge my fit for the role.

    • Discussed my previous role at XYZ Corp, focusing on a project where I improved system performance by 30%.

    • Inquired about my proficiency in Java and how I applied it in developing a web application.

    • Asked about my experience with Agile methodologies and how I contributed to sprint planning.

    • Explored my involvem...

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. How to find out prime number

Interview Preparation Tips

Interview preparation tips for other job seekers - want to answer
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. System design , HLD, LLD , coding question
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. LRU cache design
  • Ans. 

    LRU cache design involves maintaining a cache with limited capacity and removing the least recently used item when the cache is full.

    • Use a doubly linked list to maintain the order of items based on their usage.

    • Implement a hash map for fast access to items in the cache.

    • When a new item is accessed, move it to the front of the linked list to mark it as the most recently used.

    • When the cache is full, remove the item at the ...

  • Answered by AI
  • Q2. Current project

Skills evaluated in this interview

Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Coding Test 

1)Buy and sell stock
2)2 sum
3) system design
4) Elastic search
5) deployment

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
  • Ans. 

    A notification system to alert users of important events or updates.

    • Define types of notifications (e.g. email, SMS, push notifications)

    • Implement a user preference setting for notification frequency

    • Include a notification history for users to review past alerts

  • Answered by AI

Skills evaluated in this interview

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 Software Engineer Intern interview?
Barclays interview process usually has 2 rounds. The most common rounds in the Barclays interview process are Coding Test and One-on-one Round.
What are the top questions asked in Barclays Software Engineer Intern interview?

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

  1. Explain the time complexity of different sorting algorith...read more
  2. Explain 4 pillars of OOPs (Abstraction, Encapsulation, Inheritance and polymorp...read more
  3. Explain JOINS(Inner join, LEFT Join e...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

2-4 weeks 100%
View more

Interview Questions from Similar Companies

ICICI Bank Interview Questions
4.0
 • 2.6k Interviews
HDFC Bank Interview Questions
3.9
 • 2.5k Interviews
Axis Bank Interview Questions
3.7
 • 1.6k Interviews
IDFC FIRST Bank Interview Questions
3.9
 • 757 Interviews
IndusInd Bank Interview Questions
3.5
 • 676 Interviews
Bandhan Bank Interview Questions
3.7
 • 627 Interviews
Yes Bank Interview Questions
3.7
 • 478 Interviews
View all
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