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 Interview Questions, Process, and Tips for Freshers

Updated 9 Dec 2024

Top Blackrock Interview Questions and Answers for Freshers

View all 36 questions

Blackrock Interview Experiences for Freshers

Popular Designations

25 interviews found

I was interviewed before Sep 2020.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This was a Technical round. About 60 students were shortlisted for this round. There were two interviewers. First, they asked me to introduce myself. Then I was asked some concepts of OOPS. some questions from OS and DBMS. I was asked to write code to reverse a link list on the notepad and share my screen. Then I was asked about my projects and internship. There were some situational questions related to the internship. They asked me what I know about the company.

My interview took place in the morning at around 10:00 a.m. and lasted for about an hour.

  • Q1. What is the difference between Python and C++?
  • Ans. 

    Python is a high-level, interpreted language known for its simplicity and readability, while C++ is a low-level, compiled language known for its performance and efficiency.

    • Python is dynamically typed, while C++ is statically typed.

    • Python uses indentation for code blocks, while C++ uses curly braces.

    • Python has automatic memory management, while C++ requires manual memory management.

    • Python is slower in execution compared...

  • Answered by AI
  • Q2. 

    Reverse Linked List Problem Statement

    Given a singly linked list of integers, return the head of the reversed linked list.

    Example:

    Initial linked list: 1 -> 2 -> 3 -> 4 -> NULL
    Reversed link...
  • Ans. 

    Reverse a singly linked list of integers and return the head of the reversed linked list.

    • Iterate through the linked list and reverse the pointers to point to the previous node instead of the next node.

    • Use three pointers to keep track of the current, previous, and next nodes while reversing the linked list.

    • Update the head of the reversed linked list as the last node encountered during the reversal process.

  • Answered by AI
Round 2 - HR 

Round duration - 30 Minutes
Round difficulty - Medium

It was a virtual interview and there was just one interviewer. The interviewer was really friendly. First of all, the interviewer introduced himself and also shared some facts about the company. Then he asked me to introduce myself. Then behavioral and situational questions were asked. Then he asked if I was comfortable with relocation. BlackRock has 2 locations that are Gurgaon and Mumbai.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from TIET - Thapar Institute of Engineering And Technology. Eligibility criteria8 CGPA or aboveBlackrock interview preparation:Topics to prepare for the interview - AVL Trees ,OOPS, Data Structures, WebDev(if mentioned in resume), Operating system, DBMSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Revise Trees especially AVL trees and tree traversals as the major questions for data structures were from trees. 
Tip 2 : Revise your OOPs concepts for the interview round.
Tip 3 : If you have done a project in development, make sure you know well about them.

Application resume tips for other job seekers

Tip 1 : Mention only those things in your resume, you have knowledge about.
Tip 2 : A project in development is a plus.

Final outcome of the interviewRejected

Skills evaluated in this interview

Top Blackrock Software Developer Intern Interview Questions and Answers

Q1. Reverse Linked List Problem Statement Given a singly linked list of integers, return the head of the reversed linked list. Example: Initial linked list: 1 -> 2 -> 3 -> 4 -> NULLReversed linked list: 4 -> 3 -> 2 -> 1 -&g... read more
View answer (1)

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

I was interviewed before May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 Minutes
Round difficulty - Medium

  • Q1. You will be provided with SQL queries and code snippets along with their outputs or errors in the options. Can you analyze and determine the correct outputs or identify the errors?
  • Ans. 

    Yes, I can analyze SQL queries and code snippets to determine correct outputs or errors.

    • Understand the SQL syntax and logic to identify errors in queries.

    • Check for syntax errors, missing or incorrect keywords, and data type mismatches.

    • Analyze the code snippets to identify logical errors or potential bugs.

    • Compare the expected output with the provided output to determine correctness.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 15 minutes
Round difficulty - Medium

  • Q1. What can you tell me about joins and indexing in database management systems?
  • Ans. 

    Joins are used to combine rows from two or more tables based on a related column, while indexing is a technique to improve the performance of queries by creating a data structure that allows for quick lookup of data.

    • Joins are used to retrieve data from multiple tables based on a related column, such as INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • Indexing involves creating data structures like B-trees or hash table...

  • Answered by AI
Round 3 - HR 

Round duration - 20 Minutes
Round difficulty - Medium

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in GurgaonEligibility criteriaAbove 7 CGPABlackrock interview preparation:Topics to prepare for the interview - Data Structures, OOPS, Operating Systems, DBMS, C++Time required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Be well versed with the concepts of Data Structures and SQL
Tip 2 : Should have thorough knowledge of your projects 

Application resume tips for other job seekers

Tip 1 : Mention your projects very clearly
Tip 2 : You should be able to justify everything on your resume from grades to skills

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Blackrock Software Developer Intern Interview Questions and Answers

Q1. Reverse Linked List Problem Statement Given a singly linked list of integers, return the head of the reversed linked list. Example: Initial linked list: 1 -> 2 -> 3 -> 4 -> NULLReversed linked list: 4 -> 3 -> 2 -> 1 -&g... read more
View answer (1)

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

Intern Interview Questions & Answers

user image Anonymous

posted on 5 Jan 2017

I was interviewed in Sep 2016.

Interview Questionnaire 

9 Questions

  • Q1. How does Internet work?
  • Ans. 

    The Internet is a global network of computers that communicate with each other using standardized protocols.

    • The Internet is made up of millions of interconnected devices, including computers, servers, routers, and switches.

    • Data is transmitted over the Internet in the form of packets, which are small units of information.

    • The Internet uses a set of protocols, such as TCP/IP, to ensure reliable and efficient communication...

  • Answered by AI
  • Q2. Difference between http and https?
  • Ans. 

    HTTP is unsecured while HTTPS is secured with SSL/TLS encryption.

    • HTTP stands for Hypertext Transfer Protocol, while HTTPS stands for Hypertext Transfer Protocol Secure.

    • HTTP operates on port 80, while HTTPS operates on port 443.

    • HTTP data is transmitted in plain text, while HTTPS data is encrypted using SSL/TLS.

    • HTTPS provides authentication, integrity, and confidentiality of data exchanged between a client and a server.

    • W...

  • Answered by AI
  • Q3. What is white and black box testing?
  • Ans. 

    White box testing is a method of testing where the internal structure and implementation details of the software are known and tested. Black box testing is a method of testing where the internal structure and implementation details of the software are unknown and only the inputs and outputs are tested.

    • White box testing is also known as clear box testing, glass box testing, or structural testing.

    • It focuses on testing th...

  • Answered by AI
  • Q4. Write the code to print the pattern that was provided?
  • Ans. 

    Print a pattern using code

    • Use nested loops to iterate through rows and columns

    • Use string concatenation to build each row of the pattern

    • Print each row to display the pattern

  • Answered by AI
  • Q5. Merge two arrays without using a third array.
  • Ans. 

    Merge two arrays without using a third array.

    • Use the concat() method to merge the arrays.

    • Alternatively, you can use the push() method to add elements from one array to another.

    • Remember to handle the case where the arrays have different lengths.

  • Answered by AI
  • Q6. Three ants are at the corner of the triangle. Find the probability that they will never meet.
  • Ans. 

    The probability that three ants at the corner of a triangle will never meet.

    • The ants can move randomly in any direction.

    • The probability depends on the shape and size of the triangle.

    • The probability can be calculated using geometric probability or simulation.

    • Assumptions need to be made about the ants' movement patterns.

  • Answered by AI
  • Q7. Basic Introduction.
  • Q8. Tell me the times you have regreted your decisions and how did you cope up with it.
  • Ans. 

    I have regretted decisions in the past but learned from them to make better choices in the future.

    • Regretted not studying enough for a crucial exam, leading to a lower grade. Learned to prioritize studying and time management.

    • Regretted not speaking up in a meeting when I had a valuable idea. Learned to be more assertive and confident in sharing my thoughts.

    • Regretted not taking a job opportunity that could have advanced ...

  • Answered by AI
  • Q9. Tell me about yor family , hobbies and any event that made you and your family feel proud.
  • Ans. 

    I come from a close-knit family with a passion for outdoor activities. We recently celebrated my brother's graduation, which was a proud moment for all of us.

    • Family: Close-knit and supportive

    • Hobbies: Outdoor activities like hiking and camping

    • Proud moment: Brother's graduation ceremony

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: They basically are testing your reflexes and how quick you are at understanding a problem and arriving at a solution.
Tips: For greater accuracy attempt lesser questions ensuring each of the attemped one's are correct.
Duration: 45 minutes
Total Questions: 50

Round: Technical Interview
Tips: Just be thorough with basic concepts of programming and be yourself.

Round: HR Interview
Tips: Relax and be cool. Don't answer just for the sake of answering it.

Skills: Basic C/C++, implementing , networks
College Name: Thapar University, Patiala

Skills evaluated in this interview

Top Blackrock Intern Interview Questions and Answers

Q1. Three ants are at the corner of the triangle. Find the probability that they will never meet.
View answer (1)

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)

Analyst Interview Questions & Answers

user image Anonymous

posted on 28 Jun 2017

I was interviewed before Jun 2016.

Interview Questionnaire 

4 Questions

  • Q1. Ratios
  • Q2. Securitization
  • Q3. Expected package
  • Q4. Preferred location
  • Ans. 

    I prefer to work in a location that offers a vibrant and diverse community, with access to cultural events and opportunities for personal growth.

    • I value a location that has a strong sense of community and offers a variety of cultural activities.

    • Access to educational and personal growth opportunities is important to me.

    • I am open to considering different locations that meet these criteria.

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: Financial aspects were covered in this round
Tips: Polish your technical skills

Round: Test
Duration: 1 hour
Total Questions: 20

College Name: Amity School Of Engineering And Technology, Noida

Top Blackrock Analyst Interview Questions and Answers

Q1. How will you find prime numbers between 1 to 1 million
View answer (1)

Analyst Interview Questions asked at other Companies

Q1. N-th Fibonacci Number Problem Statement Given an integer ‘N’, your task is to find and return the N’th Fibonacci number using matrix exponentiation. Since the answer can be very large, return the answer modulo 10^9 + 7. Formula: F(n) = F(n-... read more
View answer (1)

Blackrock interview questions for popular designations

 Analyst

 (25)

 Associate

 (9)

 Software Developer

 (5)

 Intern

 (4)

 Software Developer Intern

 (4)

 Software Engineer

 (3)

 Senior Software Engineer

 (3)

 Data Analyst

 (2)

Interview Questions & Answers

user image Anonymous

posted on 14 Mar 2022

I was interviewed before Mar 2021.

Round 1 - Face to Face 

(5 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical Interview
Tips: Just be thorough with basic concepts of programming and be yourself.

  • Q1. How does the internet work?
  • Q2. What are the differences between HTTP and HTTPS?
  • Q3. What are White Box and Black Box testing?
  • Q4. 

    Merge Two Sorted Arrays Problem Statement

    Given two sorted integer arrays ARR1 and ARR2 of size M and N, respectively, merge them into ARR1 as one sorted array. Assume that ARR1 has a size of M + N to hol...

  • Q5. You have 3 ants located at the corners of a triangle. The challenge is to determine the movement pattern of the ants if they all start moving towards each other. What will be the outcome?
Round 2 - HR 

Round duration - 30 minutes
Round difficulty - Easy

Typical managerial round.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPABlackrock interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Basic C/C++, Implementing Networks, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Get interview-ready with Top Blackrock Interview Questions

Blackrock Interview FAQs

How many rounds are there in Blackrock interview for freshers?
Blackrock interview process for freshers usually has 2-3 rounds. The most common rounds in the Blackrock interview process for freshers are Technical, Aptitude Test and HR.
How to prepare for Blackrock interview for freshers?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Blackrock. The most common topics and skills that interviewers at Blackrock expect are SQL, Communication Skills, Excel, Python and Project Management.
What are the top questions asked in Blackrock interview for freshers?

Some of the top questions asked at the Blackrock interview for freshers -

  1. Three ants are at the corner of the triangle. Find the probability that they wi...read more
  2. How will you swap two numbers without using third variabl...read more
  3. What is white and black box testi...read more
How long is the Blackrock interview process?

The duration of Blackrock interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Blackrock Interview Process for Freshers

based on 14 interviews

Interview experience

3.8
  
Good
View more

Interview Questions from Similar Companies

Deloitte Interview Questions
3.8
 • 2.8k Interviews
PwC Interview Questions
3.4
 • 1.4k Interviews
Ernst & Young Interview Questions
3.4
 • 1.1k Interviews
Goldman Sachs Interview Questions
3.5
 • 376 Interviews
Morgan Stanley Interview Questions
3.7
 • 291 Interviews
Invesco Interview Questions
3.8
 • 40 Interviews
Vanguard Interview Questions
4.1
 • 1 Interview
PIMCO Interview Questions
3.6
 • 1 Interview
View all

Blackrock Reviews and Ratings

based on 445 reviews

3.8/5

Rating in categories

3.7

Skill development

3.7

Work-life balance

3.3

Salary

3.7

Job security

3.8

Company culture

3.1

Promotions

3.4

Work satisfaction

Explore 445 Reviews and Ratings
Analyst
1.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate
863 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Vice President
362 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Financial Analyst
136 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
53 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Blackrock with

Vanguard

4.1
Compare

State Street Global Advisors

3.8
Compare

Fidelity Investments

4.2
Compare

Goldman Sachs

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