Upload Button Icon Add office photos

Barclays

Compare button icon Compare button icon Compare

Filter interviews by

Barclays Senior Java Developer Interview Questions and Answers for Experienced

Updated 30 Jul 2024

Barclays Senior Java Developer Interview Experiences for Experienced

1 interview found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Java memory Managment
  • Q2. Garbage Collection
Round 2 - Coding Test 

Print Dice combination based on the rolled output

Interview questions from similar companies

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

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

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Campus Placement

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Aptitude Test 

Basic Aptitude and Technical Question

Round 3 - Coding Test 

2 coding Questions asked from array and strings

Round 4 - One-on-one 

(2 Questions)

  • Q1. Projects were asked
  • Q2. Resume should be prepared well
Round 5 - HR 

(1 Question)

  • Q1. Basic HR questions were asked
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Related to the DSA and concepts of OS and CN

Round 2 - Technical 

(1 Question)

  • Q1. Palindrome question
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain Encapsulation
  • Ans. 

    Encapsulation is the concept of bundling data and methods that operate on the data into a single unit.

    • Encapsulation helps in hiding the internal state of an object and only exposing necessary functionalities.

    • It allows for better control over the data by preventing direct access from outside the class.

    • Encapsulation also helps in achieving data abstraction and information hiding.

    • Example: In a class representing a car, th...

  • Answered by AI
  • Q2. How to call rest API
  • Ans. 

    To call a REST API, you can use tools like Postman or code in languages like JavaScript or Python.

    • Use tools like Postman to make HTTP requests to the API endpoints

    • In programming languages like JavaScript, use libraries like Axios or Fetch to make API calls

    • Include necessary headers, parameters, and authentication tokens in the request

    • Handle the response data accordingly, whether it's JSON, XML, or other formats

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Sprig MVC, Spring boot and API

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Jul 2023. There were 2 interview rounds.

Round 1 - Coding Test 

You have to debug and correct the code given.

Round 2 - One-on-one 

(1 Question)

  • Q1. Fibonacci Series

Barclays Interview FAQs

How many rounds are there in Barclays Senior Java Developer interview for experienced candidates?
Barclays interview process for experienced candidates usually has 2 rounds. The most common rounds in the Barclays interview process for experienced candidates are Technical and Coding Test.
What are the top questions asked in Barclays Senior Java Developer interview for experienced candidates?

Some of the top questions asked at the Barclays Senior Java Developer interview for experienced candidates -

  1. Java memory Managm...read more
  2. Garbage Collect...read more

Tell us how to improve this page.

Barclays Senior Java Developer Interview Process for Experienced

based on 1 interview

Interview experience

3
  
Average
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
3.9
 • 642 Interviews
IndusInd Bank Interview Questions
3.5
 • 604 Interviews
Bandhan Bank Interview Questions
3.7
 • 539 Interviews
HSBC Group Interview Questions
3.9
 • 485 Interviews
View all
Barclays Senior Java Developer Salary
based on 66 salaries
₹11.6 L/yr - ₹32 L/yr
69% more than the average Senior Java Developer Salary in India
View more details

Barclays Senior Java Developer Reviews and Ratings

based on 6 reviews

4.5/5

Rating in categories

3.8

Skill development

4.7

Work-life balance

3.3

Salary

4.5

Job security

4.3

Company culture

3.5

Promotions

3.8

Work satisfaction

Explore 6 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
932 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Analyst
826 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