i
Blackrock
Filter interviews by
I applied via Naukri.com and was interviewed in Jun 2024. There were 2 interview rounds.
One easy leetcode question, asked to solve with java 8
posted on 28 May 2022
I appeared for an interview in Jun 2022.
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.
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 ...
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...
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 ...
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.
Round duration - 60 Minutes
Round difficulty - Medium
It contained two programming questions.
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...
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
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...
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.
Round duration - 60 Minutes
Round difficulty - Medium
This was more of a interaction round with some technical skills.
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...
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.
Tip 1 : Focus on demonstrating your academic excellence and course projects
Tip 2 : Mention internship details with clarity
I applied via LinkedIn and was interviewed before Apr 2022. There were 3 interview rounds.
Tell me about a time where you resolve a conflict
Reverse a string, identify anagram
posted on 18 Oct 2023
70 minutes test, and 4 questions
posted on 16 Sep 2024
I applied via Recruitment Consulltant and was interviewed in Mar 2024. There were 2 interview rounds.
DSA medium level questions were asked.
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...
posted on 14 Sep 2021
I appeared for an interview in Dec 2020.
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.
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...
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...
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.
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
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 beg...
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.
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.
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.
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.
posted on 28 May 2022
I appeared for an interview in Feb 2022.
Round duration - 90 minutes
Round difficulty - Easy
Consisted of 3 DSA questions and MCQ on python proficiency
Given a string S
, your task is to return all distinct palindromic substrings of the given string in alphabetical order.
A string is considered a pal...
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.
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
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...
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.
Round duration - 60 minutes
Round difficulty - Hard
DSA+OS
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...
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.
Tip 1 : Practice at least 250 questions
Tip 2 : Do at least two projects
Tip 1 : Should be covered in One page
Tip 2 : Project description should be professional
I applied via Recruitment Consulltant and was interviewed in Mar 2024. There were 2 interview rounds.
It was angular and java
I applied via Naukri.com and was interviewed in Feb 2024. There were 2 interview rounds.
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
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
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...
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
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
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...
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...
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...
I am a quick learner with excellent communication and problem-solving skills.
Quick learner
Excellent communication skills
Strong problem-solving skills
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.
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
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.
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.
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.
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...
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
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
I don't have the available data.
NO data available.
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
based on 1 interview
Interview experience
Analyst
1.1k
salaries
| ₹5 L/yr - ₹16 L/yr |
Associate
912
salaries
| ₹8.9 L/yr - ₹38 L/yr |
Vice President
386
salaries
| ₹18.5 L/yr - ₹70 L/yr |
Financial Analyst
136
salaries
| ₹4 L/yr - ₹15.8 L/yr |
Senior Associate
72
salaries
| ₹11 L/yr - ₹32.2 L/yr |
Nomura Holdings
Muthoot Homefin India
Adarsh Credit Co-Operative Society
Debtcare Enterprises