Upload Button Icon Add office photos
Engaged Employer

i

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

Neeyamo Enterprise Solutions Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Neeyamo Enterprise Solutions BGV Executive Interview Questions and Answers

Updated 3 Feb 2022

Neeyamo Enterprise Solutions BGV Executive Interview Experiences

1 interview found

I applied via Referral

Round 1 - Aptitude Test 

History

Round 2 - Group Discussion 
Pro Tip by AmbitionBox:
Don’t treat group discussions as an argument. Group discussion is about reaching a meaningful conclusion.
View all tips

Interview Preparation Tips

Interview preparation tips for other job seekers - I am experienced in background verification work then i littly speak in English

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. About DS architecture

I appeared for an interview before Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 87 minutes
Round difficulty - Medium

Timing : It was conducted in evening at 3 PM
The pacreception environment was very user friendly .
The platform was audio and video proctored.

  • Q1. 

    Binary to Decimal Conversion

    Convert a given binary number, represented as a string 'S' of size 'N', into its decimal equivalent integer and output it.

    Input:

    The first line contains an integer 'T', den...
  • Ans. 

    Convert a binary string to its decimal equivalent integer.

    • Iterate through the binary string from right to left, multiplying each digit by 2 raised to the power of its position.

    • Add the results of the multiplication to get the decimal equivalent.

    • Ensure the binary string consists only of '0' and '1' characters.

    • Handle multiple test cases by repeating the conversion process for each case.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 80 minutes
Round difficulty - Medium

So This was a very interactive round . There were two interviewers , one male and one female . The male interviewer was quite experienced where as female interviewer was relatively new . The Interview started by a small introduction followed by some OOPS related questions where I was tested on how i perceive the concept of OOPS in real life . Then this conversation was followed by some core concepts of JAVA like abstract classes and interfaces . Then I was asked about my projects that i mentioned in my resume , then after some healthy discussion on those projects , the interviewer started to question about DBMS , I was asked some basic queries followed by some advanced queries and then followed by a discussion on SQL vs NoSQL . Then Interviewers asked me about my tech stack and the source of my technical knowledge. Then at last I was asked that why Blackrock and this concluded my Interview.

  • Q1. 

    Ninja And The Triangle Problem Statement

    Ninja is provided with 'N' stars and the task is to construct a triangle such that the 'i'th level of the triangle uses 'i' number of stars. The goal is to make th...

  • Ans. 

    Given 'N' stars, construct a triangle with maximum height using 'i' stars in 'i'th level.

    • Calculate the maximum height of the triangle using the formula: height = floor((-1 + sqrt(1 + 8 * N)) / 2)

    • Iterate through each test case and calculate the maximum height for each 'N'.

    • Output the maximum height for each test case.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from TIET - Thapar Institute of Engineering And Technology. I applied for the job as SDE - 1 in MumbaiEligibility criteriaAbove 7 CGPABlackrock interview preparation:Topics to prepare for the interview - Data Structures , Algorithms , Operation Systems , OOPS , DBMS , Web DevelopmentTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Be precise about what to do and what not to do.
Tip 2 : Always Revise the concepts you have done in past , use prime day revision theory.
Tip 3 : Do as many projects as you can but always mention those projects in which you are very well versed.
Tip 4 : Keep on reading random news related to your favourite tech and always have an in depth knowledge of what tech you currently use.

Application resume tips for other job seekers

Tip 1 : Keep it short , precise and effective .
Tip 2 : Mention even small things that you did had an impact on other people.

Final outcome of the interviewRejected

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic knowledge
Round 2 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Java questions , stream api
  • Q2. Whatever you have mention in resume

Interview Preparation Tips

Interview preparation tips for other job seekers - Java basics, memory management, multithreading.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude, maths, cs fundamentals, dbms

Round 2 - Technical 

(1 Question)

  • Q1. Leetcode easy-medium
Round 3 - HR 

(1 Question)

  • Q1. General questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

I appeared for an interview in Jan 2022.

Round 1 - Video Call 

(3 Questions)

Round duration - 100 Minutes
Round difficulty - Hard

There were 2 interviewers. It started with an introduction from me and one of the interviewers directly started with a DSA questions. Two problems were asked and I had to code them on a compiler of my choice by sharing my screen. Level of DSA question was medium but I was severely grilled on oops. I had to create different abstract classes, interface and explain entire oops with examples.

This was followed by a set of core JAVA questions :

Difference between == and .equals() ?
Mention some methods of the object class?
Difference between TreeSet and SortedSet?
How is a String saved in JAVA?
difference between string pool and heap memory?

  • Q1. 

    Shortest Distance in a Binary Search Tree

    Your task is to determine the shortest distance between two nodes with given keys in a Binary Search Tree (BST).

    It is assured that both keys exist within the BS...

  • Ans. 

    Find the shortest distance between two nodes in a Binary Search Tree.

    • Traverse the BST to find the paths from the root to both nodes.

    • Compare the paths to find the common ancestor node.

    • Calculate the distance by adding the lengths of the paths from the common ancestor to both nodes.

    • Return the shortest distance as the result.

  • Answered by AI
  • Q2. 

    Greatest Common Divisor Problem Statement

    You are tasked with finding the greatest common divisor (GCD) of two given numbers 'X' and 'Y'. The GCD is defined as the largest integer that divides both of the...

  • Ans. 

    Find the greatest common divisor (GCD) of two given numbers 'X' and 'Y'.

    • Iterate from 1 to the minimum of X and Y, check if both X and Y are divisible by the current number, update GCD if true

    • Use Euclidean algorithm to find GCD: GCD(X, Y) = GCD(Y, X % Y)

    • If one of the numbers is 0, the other number is the GCD

    • Handle edge cases like when one of the numbers is 0 or negative

  • Answered by AI
  • Q3. 

    Bridge in Graph Problem Statement

    Given an undirected graph with V vertices and E edges, your task is to find all the bridges in this graph. A bridge is an edge that, when removed, increases the number of...

  • Ans. 

    Find all the bridges in an undirected graph.

    • Use Tarjan's algorithm to find bridges in the graph.

    • A bridge is an edge whose removal increases the number of connected components.

    • Check for bridges by removing each edge and running a DFS to see if the graph is still connected.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Vellore Institute of Technology - VIT Bhopal. I applied for the job as SDE - 1 in GurgaonEligibility criteriaAbove 6CGPA, no backlogBlackrock interview preparation:Topics to prepare for the interview - DSA, oops, OS, DBMS, CN, low level designTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Tree is the most important topic in BlackRock recruitment process. 
Tip 2 : have atleast one live working project- host your project either on Heroku/Play Store.
Tip 3 : Practice atleast 100 leetcode medium questions.

Application resume tips for other job seekers

Tip 1 : Don't oversell yourself because interviewers will grind you on everything that you write in resume. 
Tip 2 : Mention links to your project.

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview before Jun 2021.

Round 1 - Coding Test 

Round duration - 90 Minutes
Round difficulty - Medium

Round 2 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. 

    Validate Binary Search Tree Problem Statement

    Your task is to determine if a given binary tree with 'N' nodes is a valid Binary Search Tree (BST). A BST is defined by the following properties:

    • The lef...
  • Ans. 

    Validate if a given binary tree is a valid Binary Search Tree (BST) based on its properties.

    • Check if the left subtree of a node has only nodes with data less than the node's data.

    • Verify if the right subtree of a node has only nodes with data greater than the node's data.

    • Ensure that both the left and right subtrees are also binary search trees.

    • Implement a validation function for a BST.

    • Output 'true' if the binary tree is

  • Answered by AI
Round 3 - HR 

Round duration - 60 Minutes
Round difficulty - Easy

Interview Preparation Tips

Eligibility criteria8 CGPABlackrock interview preparation:Topics to prepare for the interview - Data Structure , Oops , Dynamic Programming, Memory Management, DBMSTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Pratice regularly atleast 5 problem . Make it habit .Try to cover Leetcode medium questions as many as possible 
Tip 2 : Be through with your projects . At some point interviewer will ask you some project related questions 
Tip 3 : Be strong in your CS fundamentals.

Application resume tips for other job seekers

Tip 1 : Do not put irrelevant information such as DOB
Tip 2 : Put only those skill which you can defend in cross questioning

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. What is link list?
  • Ans. 

    A link list is a linear data structure where each element is a separate object with a pointer to the next element.

    • Link list is used to store data in a non-contiguous manner.

    • It allows for efficient insertion and deletion of elements.

    • Examples include singly linked list, doubly linked list, and circular linked list.

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding test regarding the tools and technologies

Round 2 - Technical 

(2 Questions)

  • Q1. Asked about the connections
  • Q2. Questions on coding

Interview Preparation Tips

Interview preparation tips for other job seekers - It's some what Moderate question

Neeyamo Enterprise Solutions Interview FAQs

How many rounds are there in Neeyamo Enterprise Solutions BGV Executive interview?
Neeyamo Enterprise Solutions interview process usually has 2 rounds. The most common rounds in the Neeyamo Enterprise Solutions interview process are Aptitude Test and Group Discussion.

Tell us how to improve this page.

Interview Questions from Similar Companies

TCE Interview Questions
3.7
 • 251 Interviews
Mu Sigma Interview Questions
2.6
 • 234 Interviews
Tiger Analytics Interview Questions
3.7
 • 227 Interviews
BCG Interview Questions
3.7
 • 197 Interviews
GEP Worldwide Interview Questions
3.7
 • 131 Interviews
Xceedance Interview Questions
3.6
 • 107 Interviews
Bain & Company Interview Questions
3.8
 • 106 Interviews
Blackrock Interview Questions
3.8
 • 99 Interviews
AtkinsRealis Interview Questions
3.9
 • 88 Interviews
View all

Neeyamo Enterprise Solutions BGV Executive Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

3.0

Skill development

4.0

Work-life balance

1.0

Salary

5.0

Job security

5.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Service Delivery Executive
828 salaries
unlock blur

₹1 L/yr - ₹3.2 L/yr

Implementation Consultant
342 salaries
unlock blur

₹1.4 L/yr - ₹5.5 L/yr

Payroll Specialist
234 salaries
unlock blur

₹1 L/yr - ₹5.4 L/yr

Associate - Team Lead
224 salaries
unlock blur

₹1.8 L/yr - ₹5.8 L/yr

Service Delivery Partner
206 salaries
unlock blur

₹1.5 L/yr - ₹4.8 L/yr

Explore more salaries
Compare Neeyamo Enterprise Solutions with

TCE

3.7
Compare

Mercer

3.7
Compare

AtkinsRealis

3.9
Compare

GEP Worldwide

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