Tip 1 : Prepare about your college projects and company projects as well if you have been in the industry.
Tip 2 : Expect OOPS questions, and get a clear understanding of Java 8 features. Also, get your basics clear on DSA
Tip 3 : Good behavioral questions can be expected in the managerial round, where they evaluate the RISES principles which Barclays follows.
Tip 1 : Have a clean resume highlighting your key skills, aligning with the role you are applying.
Tip 2 : Don't put a single false word in the resume, because there is a strict background check.
Contained 30 MCQs from the topics Java, Python, DBMS, and OS, and 2 Coding Questions
1. Created a method that checks if the number is prime or not.
2. Ran a loop from 0 to X, and checked for each number, if it is prime added to the sum
3. Returned the answer as a sum
Input: Consider the binary tree A as shown in the figure:
Output: [10, 5, 3, 7, 18, 25, 20]
Explanation: As shown in the figure
The nodes on the left boundary are [10, 5, 3]
The nodes on the right boundary are [10, 20, 25]
The leaf nodes are [3, 7, 18, 25].
Please note that nodes 3 and 25 appear in two places but are considered once.
1. Print left boundary
2. Print leaf nodes
3. Print right boundary in the reverse order
Questions on DSA
Questions on Java 8 features
OOPS Concepts
DBMS Questions
Questions related to College projects and previous company projects
Initially told the basic approach using recursion and then moved to backtracking to optimize the solution.
Merge Sort Algorithm -
Merge sort is a Divide and Conquer based Algorithm. It divides the input array into two-parts, until the size of the input array is not ‘1’. In the return part, it will merge two sorted arrays a return a whole merged sorted array.
The above illustrates shows how merge sort works.
It is compulsory to use the ‘Merge Sort’ algorithm.
Explained the working of merge sort using an example and dry run the code. Made tree diagrams to make it more clear
Asked questions related to DBMS, AWS, my work in the previous company, my personal projects, and good behavioral questions
Tip 1 : Get to know about Barclays before attending interviews and their RISES principles
Tip 2 : Be ready to answer behavioral questions.
Tip 3 : Act Confident
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you create a function in JavaScript?