Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Blackrock Team. If you also belong to the team, you can get access from here

Blackrock Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Blackrock Senior Java Developer Interview Questions and Answers

Updated 1 Jul 2024

Blackrock Senior Java Developer Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Coding Test 

One easy leetcode question, asked to solve with java 8

Round 2 - Technical 

(2 Questions)

  • Q1. Java 8 questions
  • Q2. Build tool maven details

Interview Preparation Tips

Interview preparation tips for other job seekers - It's not that hard. Interviewers were friendly..

Interview questions from similar companies

I appeared for an interview in Jun 2022.

Round 1 - Coding Test 

(2 Questions)

Round duration - 70 Minutes
Round difficulty - Hard

The test link was active for a week, and you can give anytime you like. The IDE was very good and self explanatory. There were 2 coding questions and 15 aptitude questions.

  • Q1. 

    Unweighted Graph Shortest Path Problem

    You are tasked with finding the shortest path between two houses in the city of Ninjaland, represented as an unweighted graph. The city has N houses numbered from 1 ...

  • Ans. 

    Find the shortest path between two houses in a city represented as an unweighted graph.

    • Use breadth-first search (BFS) algorithm to find the shortest path in an unweighted graph.

    • Start BFS from the source house and keep track of the path taken to reach each house.

    • Once the destination house is reached, backtrack from destination to source to find the shortest path.

    • Consider using a queue data structure to implement BFS eff...

  • Answered by AI
  • Q2. 

    Check If Two Nodes Are Cousins

    You are given an arbitrary binary tree consisting of N nodes, where each node is associated with a certain value, and two node values, a and b. Your task is to determine if ...

  • Ans. 

    Check if two nodes in a binary tree are cousins by comparing their levels and parents.

    • Traverse the tree to find the levels and parents of the given nodes.

    • Compare the levels and parents of the two nodes to determine if they are cousins.

    • If the levels are the same and the parents are different, the nodes are cousins.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

It contained two programming questions.

  • Q1. 

    Counting Nodes in a Complete Binary Tree - Problem Statement

    Given the root of a complete binary tree, calculate the total number of nodes in this tree.

    A complete binary tree is defined as a binary tree...

  • Ans. 

    Count the total number of nodes in a complete binary tree given its root.

    • Traverse the tree in level order and count the nodes

    • Use a queue to keep track of nodes at each level

    • Check for null nodes represented by -1 in the input

    • The total number of nodes in the example tree is 7

  • Answered by AI
  • Q2. 

    Rearrange Array Numbers for Largest Possible Number

    Given an array ARR consisting of non-negative integers, rearrange the numbers to form the largest possible numerical value. You are not permitted to alt...

  • Ans. 

    Rearrange array numbers to form the largest possible numerical value by combining digits of each number in the array.

    • Convert integers in the array to strings for easier manipulation.

    • Sort the array of strings in non-increasing order based on custom comparison function.

    • Join the sorted strings to form the largest possible number.

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

This was more of a interaction round with some technical skills.

  • Q1. Can you explain the ACID properties and the rollback mechanism in DBMS?
  • Ans. 

    ACID properties ensure database transactions are processed reliably. Rollback mechanism undoes changes if transaction fails.

    • ACID properties: Atomicity, Consistency, Isolation, Durability

    • Atomicity ensures all operations in a transaction are completed successfully or none at all

    • Consistency ensures database remains in a valid state before and after transaction

    • Isolation ensures transactions are independent and do not inter...

  • Answered by AI

Interview Preparation Tips

Eligibility criteria8 CGPATower Research Capital interview preparation:Topics to prepare for the interview - DSA and Algorithms, OOPS, Database, OS, NetworksTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Focus on different varieties of problems, quality of problems matter greater than the quantity.
Tip 2 : Focus on design thinking, that will help in rounds other than problem solving.

Application resume tips for other job seekers

Tip 1 : Focus on demonstrating your academic excellence and course projects
Tip 2 : Mention internship details with clarity

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed before Apr 2022. There were 3 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 - Aptitude Test 

Tell me about a time where you resolve a conflict

Round 3 - Coding Test 

Reverse a string, identify anagram

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep calm and be confident in yourself
Interview experience
4
Good
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 tips
Round 2 - Coding Test 

70 minutes test, and 4 questions

Round 3 - One-on-one 

(1 Question)

  • Q1. Behavioural Queston
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

DSA medium level questions were asked.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Design MakeMyTrip kind of application.
  • Ans. 

    MakeMyTrip is a travel booking application that allows users to book flights, hotels, and holiday packages.

    • Include features like flight/hotel search, booking, payment gateway integration, and user profiles.

    • Implement filters for search results, reviews/ratings for hotels, and notifications for booking updates.

    • Integrate maps for location tracking, weather forecasts, and customer support chatbot.

    • Offer discounts, loyalty p...

  • Answered by AI
  • Q2. Oops based questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for LLD.

Skills evaluated in this interview

I appeared for an interview in Dec 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was the qualification round which comprised of several MCQs and 3 coding questions.
It was held on Hackerearth from 3:00 PM to 4:00 PM.
Use of any other IDE was prohibited.

  • Q1. Given a problem statement and a piece of code, how would you find and correct the bug in the code?
  • Ans. 

    To find and correct a bug in code, analyze problem statement, review code, use debugging tools, and test different scenarios.

    • Understand the problem statement and expected output.

    • Review the code for syntax errors, logical errors, and potential bugs.

    • Use debugging tools like breakpoints, print statements, and IDE debuggers.

    • Test the code with different inputs to identify the bug.

    • Make necessary corrections based on the iden...

  • Answered by AI
  • Q2. 

    Print Nodes at Distance K from a Given Node

    Given an arbitrary binary tree, a node of the tree, and an integer 'K', find all nodes that are at a distance K from the specified node, and return a list of th...

  • Ans. 

    Given a binary tree, a target node, and an integer K, find all nodes at distance K from the target node.

    • Traverse the binary tree to find the target node.

    • Use BFS to traverse the tree from the target node to nodes at distance K.

    • Keep track of the distance while traversing the tree.

    • Return the values of nodes at distance K in any order.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

I was shared a link of Google Meet and the Google Docs was shared where there was 1 coding problem to be coded there and then the code was run on an IDE to check the sample tests.
Then the interview was followed by a lot of Operating System and Computer System Architecture Questions.
There were 2 Interviewers and both were helpful.
The timing was from 2:30 PM to 4:00 PM

  • Q1. 

    Subarray Challenge: Largest Equal 0s and 1s

    Determine the length of the largest subarray within a given array of 0s and 1s, such that the subarray contains an equal number of 0s and 1s.

    Input:

    Input beg...

  • Ans. 

    Find the length of the largest subarray with equal number of 0s and 1s in a given array.

    • Iterate through the array and maintain a count of 0s and 1s encountered so far.

    • Store the count difference in a hashmap with the index as the key.

    • If the same count difference is encountered again, the subarray between the two indices has equal 0s and 1s.

    • Return the length of the longest subarray found.

  • Answered by AI
Round 3 - HR 

Round duration - 45 minutes
Round difficulty - Easy

The round was held on Google Meet with HR from 2:30 PM to 3:15 PM.
The HR was friendly and asked the basic questions.

Interview Preparation Tips

Eligibility criteriaNeeded Work Experience in a leading Tech CompanyTower Research Capital interview preparation:Topics to prepare for the interview - Dynamic Programming, Data Structures - Sets, HashMap, Priority Queue, SQL, OOPS, Operating System, AlgorithmsTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Practice daily 4-5 medium level problems on sites like Leetcode, CodeZen, Hackerearth
Tip 2 : Even though Data Structures and Algorithms is the base but study Course Subjects like DBMS,OS,OOPS too.
Tip 3 : Try to Participate in Contests on LeetCode,Codeforces.

Application resume tips for other job seekers

Tip 1 : Mention the projects you worked on in your past work experience and how it helped your company.
Tip 2 : Keep your resume up to date in accordance with the role you are applying for
Tip 3 : Don't put false things on your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview in Feb 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Easy

Consisted of 3 DSA questions and MCQ on python proficiency

  • Q1. 

    Palindromic Substrings Problem Statement

    Given a string S, your task is to return all distinct palindromic substrings of the given string in alphabetical order.

    Explanation:

    A string is considered a pal...

  • Ans. 

    Return all distinct palindromic substrings of a given string in alphabetical order.

    • Iterate through all possible substrings of the given string.

    • Check if each substring is a palindrome by comparing it with its reverse.

    • Store all palindromic substrings in a set to ensure uniqueness.

    • Return the sorted list of palindromic substrings.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

It was a pure DSA round and interviewer was very helpful with providing significant hints to solve the given problems

  • Q1. 

    Island Perimeter Calculation Problem

    Given a binary grid representation of a map of an island, calculate the perimeter of the island. The grid uses '0' for water and '1' for land.

    The grid has only one i...

  • Ans. 

    Calculate the perimeter of an island represented by a binary grid.

    • Iterate through the grid and count the perimeter based on land cells and their adjacent cells.

    • Each land cell contributes 4 units to the perimeter, subtract 2 units for each adjacent land cell.

    • Handle edge cases where land cells are at the boundaries of the grid.

    • Return the total perimeter for each test case.

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Hard

DSA+OS

  • Q1. 

    Clearing the Forest Problem Statement

    Ninja lives in a city called Byteland where a festive event is being organized. To make space for this event, Ninja is tasked with clearing a nearby forest. The fores...

  • Ans. 

    Calculate the minimum number of steps Ninja needs to cut down all trees in a forest grid.

    • Iterate through the grid to find the shortest path to cut down all trees in order.

    • Use a priority queue to keep track of the shortest trees to cut next.

    • If it's impossible to cut all trees, return -1.

    • Consider all four cardinal directions for movement in the grid.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in GurgaonEligibility criteriaPython ProficiencyTower Research Capital interview preparation:Topics to prepare for the interview - Data Structures, Algorithms , OOPS , DBMS , OSTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Practice at least 250 questions
Tip 2 : Do at least two projects
 

Application resume tips for other job seekers

Tip 1 : Should be covered in One page
Tip 2 : Project description should be professional

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

It was angular and java

Round 2 - Technical 

(1 Question)

  • Q1. A question about dbms etc
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. 1st round was virtual round basic queation of core java , design pattern, threading object creation singleton design pattern deep ,threading class level objevt level,collection differances java 8 stream...
  • Q2. Singleton design implementation and deep dive into it
  • Q3. Immutable implementation ,design classes interfaces with certain scenario
Round 2 - Technical 

(4 Questions)

  • Q1. Need to visit Nomura office
  • Q2. Data structure questions arraylist linked list stack queue imple
  • Q3. BFS related question
  • Q4. Data structure related questions

Interview Questionnaire 

30 Questions

  • Q1. Did u have lunch? ·
  • Ans. 

    Yes, I had a delicious sandwich for lunch.

    • I had a sandwich for lunch

    • It was delicious

    • I also had a side of chips

    • I drank water with my meal

  • Answered by AI
  • Q2. Tell me about yourself
  • Ans. 

    I am a highly motivated individual with a passion for problem-solving and a strong work ethic.

    • I have a degree in computer science and have worked as a software developer for the past 5 years.

    • I am skilled in programming languages such as Java, Python, and C++.

    • I have experience working on both front-end and back-end development projects.

    • I am a quick learner and enjoy taking on new challenges.

    • In my free time, I enjoy hiki

  • Answered by AI
  • Q3. What is inner join, outer join, left outer join?
  • Ans. 

    Inner join, outer join, and left outer join are types of SQL joins used to combine data from multiple tables.

    • Inner join returns only the matching rows from both tables

    • Outer join returns all rows from both tables, with null values for non-matching rows

    • Left outer join returns all rows from the left table and matching rows from the right table

    • Example: Inner join - SELECT * FROM table1 INNER JOIN table2 ON table1.id = tabl...

  • Answered by AI
  • Q4. She gave me a question and asked me to write down SQL queries · Asked me a puzzle, how would you reduce the number of iterations (make it more effective)
  • Q5. Tell me about your projects. Explain one in detail (Prepare well)
  • Ans. 

    Developed a web-based project management tool for a software company

    • Used Agile methodology to develop the tool

    • Implemented features such as task assignment, progress tracking, and team collaboration

    • Designed a user-friendly interface with drag-and-drop functionality

    • Integrated with third-party tools such as JIRA and Slack

    • Received positive feedback from the client and increased team productivity

  • Answered by AI
  • Q6. Asked me to write down a java code (pattern matching) ·
  • Q7. What was the last topic you studied (apart exam syllabus)
  • Ans. 

    I recently studied the impact of social media on mental health.

    • Explored the correlation between social media usage and depression/anxiety

    • Researched the effects of cyberbullying on mental health

    • Analyzed the role of social media in promoting positive mental health

    • Reviewed studies on the benefits and drawbacks of social media use for mental health

    • Examined strategies for promoting healthy social media habits

  • Answered by AI
  • Q8. Rate yourself on scale of 10 in Java and database
  • Ans. 

    I would rate myself 8 in Java and 7 in database.

    • I have extensive experience in Java programming and have worked on multiple projects using Java.

    • I am proficient in database management and have worked with various database systems like MySQL and Oracle.

    • I am constantly learning and improving my skills in both Java and database management.

    • I have also completed relevant courses and certifications in Java and database manage...

  • Answered by AI
  • Q9. Gave me a question and asked me to write queries (union, intersection, joins, ordering)
  • Q10. Asked me to write a code in java (Data Structures)
  • Q11. Make it more efficient (Think aloud and keep trying)
  • Q12. What is SDLC? Explain all phases in detail
  • Ans. 

    SDLC stands for Software Development Life Cycle. It is a process followed by software development teams to design, develop and test high-quality software.

    • The phases of SDLC are Planning, Analysis, Design, Development, Testing, Deployment, and Maintenance.

    • Planning involves defining the project scope, goals, and objectives.

    • Analysis involves gathering and analyzing requirements.

    • Design involves creating a detailed design o...

  • Answered by AI
  • Q13. Which of the two phases would you like to work? Why so?
  • Ans. 

    I would like to work in the second phase as it involves implementation and execution.

    • I prefer to work in the second phase as it involves putting the plan into action.

    • I enjoy the hands-on experience of executing a project.

    • The second phase allows me to see the results of my work and make necessary adjustments.

    • For example, in a software development project, I would like to work in the second phase where I can code and tes...

  • Answered by AI
  • Q14. Tell me your strengths ·
  • Ans. 

    I am a quick learner with excellent communication and problem-solving skills.

    • Quick learner

    • Excellent communication skills

    • Strong problem-solving skills

  • Answered by AI
  • Q15. Asked me to solve a puzzle ·
  • Q16. Which is the first month in a year?
  • Ans. 

    The first month in a year is January.

    • January is the first month in the Gregorian calendar.

    • It has 31 days.

    • It is named after the Roman god Janus.

  • Answered by AI
  • Q17. He gave me managerial situations for testing my sense of ethics and responsibility
  • Q18. How was your day?
  • Ans. 

    It was a busy day filled with meetings and deadlines.

    • Had multiple meetings with clients and team members

    • Worked on completing a project before the deadline

    • Managed to finish all tasks on my to-do list

  • Answered by AI
  • Q19. Were the interviewers nice? Why do you feel so?
  • Ans. 

    Yes, the interviewers were very nice and welcoming.

    • The interviewers greeted me warmly and made me feel comfortable.

    • They asked questions in a friendly and conversational tone.

    • They were patient and gave me time to think before answering.

    • Overall, I had a positive experience with the interviewers.

  • Answered by AI
  • Q20. Are you ready for 5-6 more interviews?
  • Ans. 

    Yes, I am prepared for 5-6 more interviews.

    • I have researched the company and the position thoroughly.

    • I have practiced answering common interview questions.

    • I have prepared questions to ask the interviewer.

    • I am mentally and physically prepared for the interviews.

    • I am excited for the opportunity to showcase my skills and experience.

  • Answered by AI
  • Q21. What did you like about our PPT? ·
  • Ans. 

    I found the PPT to be well-organized and visually appealing.

    • The use of graphics and images helped to break up the text and keep my attention.

    • The information was presented in a logical order, making it easy to follow.

    • The color scheme was pleasing to the eye and not overwhelming.

    • The charts and graphs were clear and easy to understand.

    • Overall, the PPT was engaging and informative.

  • Answered by AI
  • Q22. Tell me about your achievements
  • Ans. 

    I have achieved several milestones in my career, including increasing sales revenue by 20% and leading a successful project team.

    • Increased sales revenue by 20% through effective marketing strategies

    • Led a successful project team to complete a complex project on time and within budget

    • Received Employee of the Year award for outstanding performance and dedication

    • Developed and implemented a new customer service program that...

  • Answered by AI
  • Q23. Your scores are low in first year. Why so?
  • Ans. 

    I struggled to adjust to the new academic environment and workload in my first year.

    • Transitioning from high school to college can be challenging

    • I had to learn new study habits and time management skills

    • I sought help from tutors and professors to improve my grades

  • Answered by AI
  • Q24. Tell me about your weakness. Name at least 3 of them
  • Ans. 

    I tend to overthink, struggle with time management, and can be too self-critical.

    • Overthinking can lead to analysis paralysis and slow decision-making

    • Time management can be improved through prioritization and delegation

    • Self-criticism can hinder confidence and productivity

  • Answered by AI
  • Q25. Asked me about political issues prevailing in Iraq
  • Q26. Do you have any other offer?
  • Q27. Which was the last company you got rejected? What do you think is the reason?
  • Ans. 

    I don't have the available data.

    • NO data available.

  • Answered by AI
  • Q28. Why Nomura?
  • Ans. 

    Nomura is a leading global financial services firm with a strong reputation and diverse range of opportunities.

    • Nomura has a strong reputation in the financial services industry

    • The firm offers a diverse range of opportunities for career growth

    • Nomura has a global presence with offices in over 30 countries

    • The company values diversity and inclusion in its workforce

    • Nomura has a strong commitment to corporate social responsi

  • Answered by AI
  • Q29. Why not MS/MBA? (It was a very long discussion) ·
  • Q30. Any questions

Interview Preparation Tips

Round: Test
Experience: Divide your time well for each section in aptitude test. Practice well and avoid solving long passages in the beginning. Make logical guesses for the remaining questions. No negative marking.

Round: Technical Interview
Experience: ·

College Name: IIT MADRAS

Skills evaluated in this interview

Blackrock Interview FAQs

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

Some of the top questions asked at the Blackrock Senior Java Developer interview -

  1. Build tool maven deta...read more
  2. Java 8 questi...read more

Tell us how to improve this page.

Blackrock Senior Java Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

MNC Group Interview Questions
4.3
 • 104 Interviews
Nomura Holdings Interview Questions
3.8
 • 68 Interviews
YES SECURITIES Interview Questions
4.0
 • 15 Interviews
View all
Analyst
1.1k salaries
unlock blur

₹5 L/yr - ₹16 L/yr

Associate
912 salaries
unlock blur

₹8.9 L/yr - ₹38 L/yr

Vice President
386 salaries
unlock blur

₹18.5 L/yr - ₹70 L/yr

Financial Analyst
136 salaries
unlock blur

₹4 L/yr - ₹15.8 L/yr

Senior Associate
72 salaries
unlock blur

₹11 L/yr - ₹32.2 L/yr

Explore more salaries
Compare Blackrock with

Nomura Holdings

3.8
Compare

Muthoot Homefin India

3.9
Compare

Adarsh Credit Co-Operative Society

4.0
Compare

Debtcare Enterprises

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