Upload Button Icon Add office photos

Barclays

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Barclays Java Developer Interview Questions and Answers

Updated 12 Jul 2024

Barclays Java Developer Interview Experiences

4 interviews found

Java Developer Interview Questions & Answers

user image Ani Gayake

posted on 28 Jun 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Java and sql questions

Round 2 - Technical 

(1 Question)

  • Q1. Basics of java ans core java
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Why string is immutable
  • Ans. 

    String is immutable in Java to ensure thread safety, security, and optimization.

    • Immutable strings are thread-safe as they cannot be modified concurrently by multiple threads.

    • String pooling is possible due to immutability, saving memory and improving performance.

    • Security is enhanced as sensitive information stored in strings cannot be altered.

    • Examples: String str = "Hello"; str.concat(" World"); // str remains "Hello"

  • Answered by AI
  • Q2. What is spring aop
  • Ans. 

    Spring AOP (Aspect-Oriented Programming) is a framework that provides cross-cutting concerns in a modular way.

    • Spring AOP allows separating cross-cutting concerns from the main application logic.

    • It enables developers to define aspects (cross-cutting concerns) separately and apply them to multiple classes.

    • Examples of cross-cutting concerns include logging, security, and transaction management.

  • Answered by AI

Skills evaluated in this interview

Java Developer Interview Questions Asked at Other Companies

asked in Deloitte
Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size ... read more
Q2. Parent class has run() and walk() . Parent run() - calls walk() C ... read more
asked in Infosys
Q3. Which should be preferred between String and StringBuffer when th ... read more
asked in Deloitte
Q4. Convert BST to Greater Sum Tree Given a Binary Search Tree (BST) ... read more
Q5. 2. What will happen if hashcode only returns a constant? How will ... read more
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I was interviewed before Jan 2022.

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 Resume tips
Round 2 - Assignment 

MCQ assignment based on the Java skills

Round 3 - Technical 

(1 Question)

  • Q1. It was a 1 hr 15 min of Technical round
Round 4 - Behavioral 

(1 Question)

  • Q1. Scenerio based questions - duration 1 hr

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well with basics and be confident while answering.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Coding Test 

General questions on collections

Round 2 - Technical 

(1 Question)

  • Q1. Design of REST API
  • Ans. 

    Designing a REST API involves defining endpoints, methods, request/response formats, authentication, and versioning.

    • Define clear and consistent endpoint URLs for resources (e.g. /users, /products)

    • Use HTTP methods (GET, POST, PUT, DELETE) to perform CRUD operations on resources

    • Choose appropriate response formats like JSON or XML

    • Implement authentication and authorization mechanisms (e.g. OAuth, JWT)

    • Consider versioning to...

  • Answered by AI

Skills evaluated in this interview

Barclays interview questions for designations

 Senior Java Developer

 (1)

 Fullstack Java Developer

 (1)

 Developer

 (2)

 Software Developer

 (15)

 Abinitio Developer

 (1)

 Backend Developer

 (1)

 Application Developer

 (1)

 Senior Developer

 (1)

Interview questions from similar companies

I applied via Company Website and was interviewed before Oct 2021. There were 2 interview rounds.

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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Design patterns that you have followed in your past projects.
  • Ans. 

    I have followed the MVC, Singleton, and Factory design patterns in my past projects.

    • MVC pattern for separating concerns and improving maintainability

    • Singleton pattern for ensuring only one instance of a class is created

    • Factory pattern for creating objects without exposing the instantiation logic

  • Answered by AI
  • Q2. How to secure the applications?
  • Ans. 

    Applications can be secured by implementing various security measures such as authentication, authorization, encryption, and regular updates.

    • Implement strong authentication mechanisms such as multi-factor authentication

    • Use authorization to restrict access to sensitive data and functionalities

    • Encrypt sensitive data both in transit and at rest

    • Regularly update the application and its dependencies to patch security vulnera...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure you are aware of the basics of OOP and the programming language of your preference.
You should be aware of the security threats. The computer science subjects should also be thoroughly understood.
And, the last, excellent communication skills with quick explanation to complete most of your questions in defined interview period.

Skills evaluated in this interview

I applied via Company Website and was interviewed in Oct 2019. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Questions asked around 30 from asp.net, MVC, web api , c#, SQL etc
  • Q2. Some non tech questions also.

Interview Preparation Tips

Interview preparation tips for other job seekers - After selecting in state bank of india, I want to share my interview experience:

There were 5 persons in interview panel and they all asked questions both technical as well as non technical.
First they started from non technical questions. Like Why Madhubani painting is famous ? What is going on delhi university at that time contract teachers were on strike. Etc.
They asked about 30 questions from technical from asp.net, aap.net MVC, c#, SQL injection, XSS, CSRF, View vs Table, Function Vs SP, web services vs web api services, banking domain etc.
Overall it was a great experience. I answered almost 80 percentage questions. When interview result declared after 20 days, My name was there and I finally selected one of the big public sector bank. That is SBI. I would like to say Thank You Naukari.com.

I was interviewed 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

I was interviewed in Nov 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Easy

  • Q1. 

    Occurrence of Each Word: Problem Statement

    You are given a string S consisting of several words. Your task is to count the number of times each word appears in string S. A word is defined as a sequence of...

  • Ans. 

    Count the occurrence of each word in a given string.

    • Split the string into words using spaces as delimiters.

    • Use a hashmap to store the count of each word.

    • Iterate through the words and update the count in the hashmap.

    • Output each unique word with its occurrence count.

  • Answered by AI
Round 2 - Group Discussion 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

  • Q1. 

    Anagram Pairs Verification Problem

    Your task is to determine if two given strings are anagrams of each other. Two strings are considered anagrams if you can rearrange the letters of one string to form the...

  • Ans. 

    Check if two strings are anagrams of each other by comparing their sorted characters.

    • Sort the characters of both strings and compare them.

    • Use a dictionary to count the frequency of characters in each string and compare the dictionaries.

    • Ensure both strings have the same length before proceeding with comparison.

    • Handle edge cases like empty strings or strings with different lengths.

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

  • Q1. 

    Palindromic Substrings Problem Statement

    Find the total number of palindromic substrings in a given string STR.

    Example:

    Input:
    "abbc"
    Output:
    5
    Explanation:

    The palindromic substrings are: ["a", "...

  • Ans. 

    Count the total number of palindromic substrings in a given string.

    • Iterate through each character in the string and expand around it to find palindromic substrings.

    • Use dynamic programming to store previously calculated palindromic substrings.

    • Consider both odd and even length palindromes while counting.

    • Example: For input 'abbc', palindromic substrings are ['a', 'b', 'b', 'c', 'bb']. Total count is 5.

  • Answered by AI
  • Q2. How can you find the 4th highest salary from a table in a database?
  • Ans. 

    To find the 4th highest salary from a table in a database, you can use a SQL query with the ORDER BY and LIMIT clauses.

    • Write a SQL query to select distinct salaries from the table in descending order.

    • Use the LIMIT clause to retrieve the 4th row from the sorted list.

    • The query would look like: SELECT DISTINCT salary FROM table_name ORDER BY salary DESC LIMIT 3, 1

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from TIET - Thapar Institute of Engineering And Technology. I applied for the job as SDE - 1 in ChennaiEligibility criteriaAbove 7 CGPAStandard Chartered Bank interview preparation:Topics to prepare for the interview - Data structures, Algorithms, Operating system, computer networks, DBMS, OOPSTime required to prepare for the interview - 1 yearInterview preparation tips for other job seekers

Tip 1 : Be confident 
Tip 2 : Focus on data structures and algorithms(if you have less than 6 months)
Tip 3 : Focus on competitive programming(if you have more than 6 months)
Tip 4 : Practice at least 200 questions of various topics on leetcode and also start doing contest on various platforms.

Application resume tips for other job seekers

Tip 1 : You shouldn't lie on your resume.
Tip 2 : Write only those projects about which you are confident.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in May 2021. There were 6 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What challenges did u faced in your role
  • Q2. What is ur purpose of leaving ur ofz
  • Ans. 

    I am looking for new challenges and growth opportunities.

    • Seeking a more challenging role

    • Looking for opportunities to learn and grow

    • Want to work with new technologies

    • Desire to work in a different industry

    • Seeking better work-life balance

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident stay strong
Interview experience
5
Excellent
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 Resume tips
Round 2 - Coding Test 

Data structures and computer fundamentals

Round 3 - Technical 

(2 Questions)

  • Q1. Data structures
  • Q2. Medium leetcode

Interview Preparation Tips

Interview preparation tips for other job seekers - Data structures and projects
Contribute & help others!
anonymous
You can choose to be anonymous

Barclays Interview FAQs

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

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

  1. Why string is immuta...read more
  2. What is spring ...read more
  3. design of REST ...read more

Recently Viewed

COMPANY BENEFITS

Bharat Aluminium Company (BALCO)

No Benefits

SALARIES

MakeMyTrip

SALARIES

Patel Engineering

SALARIES

L&T Construction

SALARIES

Pennar Industries

SALARIES

L&T Construction

SALARIES

L&T Construction

SALARIES

L&T Construction

JOBS

Deutsche Bank

No Jobs

REVIEWS

L&T Construction

No Reviews

Tell us how to improve this page.

Barclays Java Developer Interview Process

based on 4 interviews

Interview experience

4.3
  
Good
View more
Barclays Java Developer Salary
based on 166 salaries
₹6.8 L/yr - ₹27.2 L/yr
172% more than the average Java Developer Salary in India
View more details

Barclays Java Developer Reviews and Ratings

based on 20 reviews

4.0/5

Rating in categories

3.7

Skill development

4.2

Work-life balance

3.7

Salary

3.9

Job security

4.2

Company culture

2.7

Promotions

3.6

Work satisfaction

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

₹0 L/yr - ₹0 L/yr

Senior Analyst
1.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Process Advisor
937 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Analyst
832 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Barclays with

Deutsche Bank

3.9
Compare

Accenture

3.8
Compare

Amazon

4.1
Compare

Deloitte

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