Upload Button Icon Add office photos

Filter interviews by

Barclays Technical Associate Interview Questions and Answers

Updated 3 Dec 2021

Barclays Technical Associate Interview Experiences

1 interview found

I was interviewed before Dec 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

MySql query questions
2 coding questions 
oops questions 
Networking questions

  • Q1. 

    Sum of Two Elements Equals the Third

    Determine if a given array contains a valid triplet of integers where two elements sum up to the third. Specifically, find indices i, j, and k such that i != j, j != k...

  • Ans. Brute Force
    • The most trivial approach would be to find any triplet in the array such that two of it’s elements sums up to the third element.
    • We can find the answer using three nested loops for three different indexes and check if the values at those indexes can yield the required triplet.
    • If for distinct indices we find the required triplet, return the answer list containing the three elements in it.
    • If after iterating all...
  • Answered Anonymously
  • Q2. 

    First Missing Positive Problem Statement

    You are provided with an integer array ARR of length 'N'. Your objective is to determine the first missing positive integer using linear time and constant space. T...

  • Ans. Searching
    1. Since we are given an integer ‘N’, there could be a maximum of ‘N’ positive integers in the array.
    2. The minimum positive number is 1, hence we can search from 1 to N in the array.
    3. Run a loop from 1 to N, and search for each element in the array.
    4. If the element is present in the array then search for the next element.
    5. If it is not present then, the element is the answer.
    6. Otherwise, if all the elements between 1 to N ...
  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

Starting with tell me about yourself
Struggling with many SQL queries
And OOPS questions
And project based questions

  • Q1. 

    Reverse String Word Wise

    You are tasked with reversing the given string word-wise. This means that the last word in the input string should appear first, the second-last word second, and so on. Importantl...

  • Ans. Two Pointers approach
    • We first split the input string on the basis of spaces and store it in another array of words.
    • We then initialize two pointers i and j with initial values 0 and length of words - 1.
    • Now we proceed like palindrome reversal.
      • We iterate while i < j
      • swap words[i] and words[j].
      • increment i and decrement j.
    • Finally, we concatenate this array of words using spaces again and return the output.
    Space Complexity...
  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Banasthali University. Eligibility criteriaCGPA:7 ABOVEBarclays interview preparation:Topics to prepare for the interview - Data Structures,OOPS, CODING, Algorithms, Operating System, NetworkingTime required to prepare for the interview - 2.5 monthsInterview preparation tips for other job seekers

Tip 1 : Practice consistently and daily
Tip 2 : Mention only those things in resume which you think you can answer. Mention good projects and be very honest with your resume
Tip 3 : Never loose your confidence during internview as well as never loose hope while giving exams

Application resume tips for other job seekers

Tip 1 : Be very honest with your resume
Tip 2 : Mention good projects in your resume

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Describe your self
  • Ans. 

    I am a dedicated and experienced technical manager with a strong background in leading teams and implementing innovative solutions.

    • Experienced in leading technical teams to successful project completion

    • Skilled in implementing innovative solutions to improve efficiency

    • Strong background in technical knowledge and problem-solving

    • Excellent communication and leadership skills

    • Passionate about continuous learning and professi

  • Answered by AI
  • Q2. Why do you want to join BOFA
  • Ans. 

    I want to join BOFA because of its reputation for innovation and commitment to excellence in the technical field.

    • BOFA has a strong reputation for innovation and cutting-edge technology

    • I am impressed by BOFA's commitment to excellence in the technical field

    • I believe that joining BOFA will provide me with opportunities for professional growth and development

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Scenario based questions
  • Q2. Scenario based questions based on experience
Round 3 - LOB 

(2 Questions)

  • Q1. Behavioral questions
  • Q2. Behavioral questions based on real time experiences
Round 1 - One-on-one 

(5 Questions)

  • Q1. Questions all related your profile
  • Q2. All related your field
  • Q3. Nothing special, there are all related your field
  • Q4. Nice place to learning
  • Q5. Nice place to learning to working teams

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice place to work, good company to freshers to experienced

Technical Analyst Interview Questions & Answers

Bank of America user image Pottabathula Hruthik Shiva

posted on 22 Feb 2024

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

I applied via campus placement at SRM Institute of Science & Technology, Chennai and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Self Introduction
  • Q2. Programming language & DBMS theory
  • Q3. A coding questions
  • Q4. Any other offers in hand?
  • Q5. Why do you want to join this company?
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Java,react,ansible,springboot

Round 2 - One-on-one 

(2 Questions)

  • Q1. Java,react,springboot,microservices
  • Q2. React question they assked me

Interview Preparation Tips

Interview preparation tips for other job seekers - No respect to senior employee
Round 1 - Technical 

(2 Questions)

  • Q1. Basic technical questions
  • Q2. Process driven question

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic technical questions for data Lake and Hadoop.
Round 1 - Technical 

(1 Question)

  • Q1. MySQL development questions

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good interview session. They asked me what ever I have done in my last organization and asked me about some technical questions.

I applied via Recruitment Consultant and was interviewed in Jul 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Initially it was MCQ
  • Q2. Coding for develop a stopwatch with start pause, resume and stop button and some question like memory leakage handle on that
  • Q3. Treeshaking, webpack build, clouser and some basic inheritance questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure you complete the stopwatch coding properly and you are in

I applied via LinkedIn and was interviewed in Dec 2019. There were 3 interview rounds.

Interview Questionnaire 

12 Questions

  • Q1. Using text adapters in pega robotics?
  • Ans. 

    Text adapters are used in Pega Robotics to interact with text-based applications.

    • Text adapters can be used to read and write text from/to text-based applications.

    • They can be configured to recognize specific text patterns and respond accordingly.

    • Examples of text-based applications include command prompt, terminal, and text editors.

    • Text adapters can also be used in conjunction with other adapters, such as web adapters, t

  • Answered by AI
  • Q2. Excel connectors in pega Openspan?
  • Ans. 

    Pega Openspan supports Excel connectors for data manipulation.

    • Excel connectors can be used to read, write, and manipulate data in Excel spreadsheets.

    • Pega Openspan provides pre-built Excel connectors that can be easily integrated into automation projects.

    • Excel connectors can be configured to perform various actions such as filtering data, sorting data, and formatting cells.

    • Excel connectors can also be used to extract da...

  • Answered by AI
  • Q3. Using database commands and connection string in pega Openspan?
  • Ans. 

    Pega Openspan supports database commands and connection string.

    • Database commands can be executed using the OLEDB connector in Pega Openspan.

    • Connection string can be defined in the configuration of the OLEDB connector.

    • Examples of database commands include SELECT, INSERT, UPDATE, and DELETE.

    • Connection string includes details such as server name, database name, and authentication mode.

  • Answered by AI
  • Q4. Difference between wait all and wait any ?
  • Ans. 

    Wait all waits for all tasks to complete while wait any waits for any one task to complete.

    • Wait all is used when all tasks need to be completed before proceeding.

    • Wait any is used when any one task can complete before proceeding.

    • Wait all returns when all tasks complete while wait any returns when any one task completes.

    • Wait all can cause longer wait times if one task takes longer while wait any can be faster if one task

  • Answered by AI
  • Q5. Logging mechanism in pega Openspan?
  • Ans. 

    Pega Openspan uses Log4Net for logging mechanism.

    • Log4Net is a third-party logging framework used by Pega Openspan.

    • It allows for logging at different levels of severity such as debug, info, warn, error, and fatal.

    • Logs can be written to different outputs such as console, file, database, or email.

    • Logging can be configured using the Log4Net configuration file.

    • Example: log.Debug("Debug message");

  • Answered by AI
  • Q6. Coding standard and project structure?
  • Ans. 

    Coding standard and project structure are crucial for efficient development and maintenance.

    • Coding standard should be consistent and easy to understand for all team members.

    • Project structure should be organized and modular to allow for scalability and easy maintenance.

    • Use of version control and automated testing can help ensure adherence to coding standards and project structure.

    • Examples of coding standards include nam...

  • Answered by AI
  • Q7. Any technical hurdles you came through ?
  • Q8. Basic team managing principle
  • Q9. Estimate effort for delivering project
  • Ans. 

    Effort estimation depends on project scope, complexity, team size, and experience.

    • Define project scope and requirements

    • Break down tasks and estimate time for each

    • Consider team size and experience

    • Factor in potential risks and contingencies

    • Use historical data for similar projects

    • Adjust estimates based on feedback and progress

  • Answered by AI
  • Q10. How to perform code review?
  • Ans. 

    Code review involves examining code for errors, security vulnerabilities, and adherence to coding standards.

    • Start by understanding the requirements and design of the code.

    • Check for syntax errors, logic errors, and security vulnerabilities.

    • Ensure the code adheres to coding standards and best practices.

    • Provide constructive feedback to the developer.

    • Use code review tools to automate the process and save time.

    • Collaborate w...

  • Answered by AI
  • Q11. In case you came across database usage how you have designed the database
  • Ans. 

    I would first analyze the requirements and then design the database accordingly.

    • Understand the data and its relationships

    • Identify the entities and their attributes

    • Normalize the data to reduce redundancy

    • Choose appropriate data types and constraints

    • Consider scalability and performance

    • Ensure data integrity and security

  • Answered by AI
  • Q12. How you are keeping the automation logs ?
  • Ans. 

    Automation logs are kept in a centralized location with detailed information on test cases and results.

    • Automation logs are stored in a centralized location for easy access and analysis.

    • Logs include detailed information on test cases, such as test name, status, and duration.

    • Logs also include information on the environment and system under test.

    • Logs are organized by date and time for easy tracking of changes and issues.

    • L...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - During technical discussion you need to be thorough with projects you delivered and must know technical aspect of it.
Question will not be too difficult however basic commands, connectors and adapters knowledge is required

During managerial round just be prepared for questions revolving around non technical skills such as documentation, business communications, problem solving scenarios and some high level of solution design.

Skills evaluated in this interview

I was interviewed before May 2016.

Interview Questionnaire 

1 Question

  • Q1. Which project i was working upon

Interview Preparation Tips

Round: Test
Experience: various questions were asked to check the knowledge in technical field
Tips: it is knowledge checking round so be sure about all the technical aspects.
Duration: 1 hour
Total Questions: 30

Round: Technical Interview
Experience: it was a small room and persons were conducting the interview they asked me about various details of the project that i was working on
Tips: be confident about your knowledge, do not hesitate to tell what ever you know about the questions that is been asked

Tell us how to improve this page.

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.4k Interviews
IDFC FIRST Bank Interview Questions
4.0
 • 623 Interviews
IndusInd Bank Interview Questions
3.6
 • 590 Interviews
Bandhan Bank Interview Questions
3.7
 • 527 Interviews
HSBC Group Interview Questions
4.0
 • 490 Interviews
View all
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