Upload Button Icon Add office photos

Nehish

Compare button icon Compare button icon Compare

Filter interviews by

Nehish Interview Questions and Answers

Updated 27 Dec 2024
Popular Designations

Nehish Interview Experiences

2 interviews found

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. About the infra
  • Q2. What can you tell me about technology in detail?
  • Ans. 

    Technology encompasses a wide range of tools, systems, and processes used to solve problems and achieve goals.

    • Technology includes hardware, software, networks, and telecommunications.

    • It is constantly evolving and improving to meet the needs of users.

    • Examples of technology include smartphones, computers, artificial intelligence, and cloud computing.

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. Can you provide details about the case study?
  • Ans. 

    The case study involved troubleshooting a complex technical issue for a high-profile client.

    • Identifying the root cause of the issue

    • Collaborating with cross-functional teams to find a solution

    • Implementing and testing the solution

    • Providing ongoing support and monitoring for any further issues

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Asking about office location and Desired salary
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Dec 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Worst questions I got ever IN my life he didn't what he was asking
  • Q2. He doesn't know what he was asking

Interview Preparation Tips

Interview preparation tips for other job seekers - Simply don't waste your time to give interview.
Just say no.

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Nehish?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Walk-in and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

9 Questions

  • Q1. Tell me about yourself
  • Q2. Process details
  • Q3. Company information
  • Q4. Tell me about yourself
  • Q5. Process details
  • Q6. Company information
  • Q7. Tell me about yourself
  • Q8. Process details
  • Q9. Company information

Interview Preparation Tips

Interview preparation tips for other job seekers - Be frank and give proper answers

I applied via Naukri.com and was interviewed before Jun 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Financial domain

Interview Preparation Tips

Interview preparation tips for other job seekers - Listen to questions and only answer that.Dont get overexcited.Take a deep breath

I applied via Campus Placement and was interviewed before Mar 2021. There were 4 interview rounds.

Round 1 - Coding Test 

90 minute test on hacker rank consisting of 3 coding questions all of medium difficulty. Most candidates are required to solve more than 1 question.

Round 2 - Technical 

(3 Questions)

  • Q1. Questions on concepts of OOPS and Operating Systems.
  • Q2. Find least common ancestor of a binary tree.
  • Ans. 

    Find the lowest common ancestor of a binary tree.

    • Traverse the tree recursively from the root node.

    • If the current node is null or matches either of the given nodes, return the current node.

    • Recursively search for the nodes in the left and right subtrees.

    • If both nodes are found in different subtrees, return the current node.

    • If both nodes are found in the same subtree, continue the search in that subtree.

  • Answered by AI
  • Q3. Find first missing positive integer from an array for non-negative integers.
  • Ans. 

    Find first missing positive integer from an array of non-negative integers.

    • Create a hash set to store all positive integers in the array

    • Loop through the array and add all positive integers to the hash set

    • Loop through positive integers starting from 1 and return the first missing integer not in the hash set

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Design a parking lot
  • Ans. 

    Design a parking lot

    • Consider the size and capacity of the parking lot

    • Decide on the layout and organization of parking spaces

    • Implement a system to manage parking availability and reservations

    • Include features like ticketing, payment, and security

    • Consider scalability and future expansion

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. Given a grid which represents an ocean( For all index i,j if mat[i][j] = 1 is island and mat[i][j] = 0 means water). Find the island with largest area.
  • Ans. 

    Find the largest island area in a grid representing an ocean using DFS or BFS.

    • Use Depth-First Search (DFS) or Breadth-First Search (BFS) to explore the grid.

    • Mark visited cells to avoid counting them multiple times.

    • Count the size of each island during the traversal.

    • Example: For a grid [[1,0,0],[1,1,0],[0,0,1]], the largest island has area 3.

    • Keep track of the maximum area found during the exploration.

  • Answered by AI
  • Q2. Given list of strings group them into distinct anagrams.
  • Ans. 

    Group list of strings into distinct anagrams.

    • Create a hash table with sorted string as key and list of anagrams as value.

    • Iterate through the list of strings and add each string to its corresponding anagram list in the hash table.

    • Return the values of the hash table as a list of lists.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Arcesium Senior Software Engineer interview:
  • Low Level Design
  • Object Oriented Programming
  • Data Structures
  • Algorithms
  • DBMS
Interview preparation tips for other job seekers - Focus on Data Structures & Algorithms and Low Level Designing. Some brushup of DBMS will also help.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Standard Aptitude topics, 30 mins - 30 questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Case Study for how to design a data Lake ? standard questions - tell me about yourself, why us
  • Q2. Case Study for how to design a chess game
  • Ans. 

    Designing a chess game involves defining rules, user interface, and game mechanics for an engaging experience.

    • Define the rules: Standard chess rules include piece movement, check, checkmate, and stalemate.

    • User interface: Create a visually appealing board and pieces, with options for 2D or 3D views.

    • Game mechanics: Implement turn-based play, timers, and difficulty levels for AI opponents.

    • Multiplayer options: Allow for on...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Quantiphi Analytics Solutions Private Limited Intern interview:
  • SQL
  • Java
Interview preparation tips for other job seekers - Easy, They want to check for approach and ability of the candidate

I appeared for an interview in Aug 2021.

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 - One-on-one 

(1 Question)

  • Q1. What you do and how you can sell the product to customer
  • Ans. 

    I understand the customer's needs and demonstrate how our product can meet those needs, highlighting its unique features and benefits.

    • Listen actively to the customer's needs and concerns

    • Explain how our product can solve their problems or meet their needs

    • Highlight the unique features and benefits of our product

    • Provide examples of how our product has helped other customers

    • Address any objections or concerns the customer m...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Dotpe is a company where the management will say somethink else at the time of interview and when you get on board there points get changes . There is lot and lot of sales pressure and if you dont get a sale in a week they will put you on PIP and the management even dont help you how to geg out of PIP
Are these interview questions helpful?

Interview Questionnaire 

1 Question

  • Q1. Filters in Tableau,sql
  • Ans. 

    Filters in Tableau and SQL are used to narrow down data based on specific criteria.

    • Filters in Tableau can be applied to individual worksheets or the entire dashboard

    • SQL filters can be applied using the WHERE clause

    • Tableau filters can be based on dimensions or measures

    • SQL filters can be based on any column in the table

    • Tableau filters can be interactive, allowing users to adjust the criteria

    • SQL filters can be combined wi...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Sql,tableau,python, business understanding

Skills evaluated in this interview

I applied via Company Website and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Questions from array, linkedlist , tree were asked. Also, they will give importance on your current job and projects, one single round was there only on current role.

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice more on platform like Leetcode to clear DSA problems. Medium hard will be enough to clear the rounds.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What do you know About CDS?
  • Ans. 

    A Credit Default Swap (CDS) is a financial derivative that allows an investor to 'swap' or transfer credit risk with another party.

    • CDS are used to hedge against the risk of default on debt instruments, such as bonds.

    • For example, if an investor holds a corporate bond, they can buy a CDS to protect against the risk of the company defaulting.

    • The buyer of a CDS pays periodic premiums to the seller, who agrees to compensate...

  • Answered by AI

Nehish Interview FAQs

How many rounds are there in Nehish interview?
Nehish interview process usually has 2-3 rounds. The most common rounds in the Nehish interview process are One-on-one Round, Resume Shortlist and Technical.
How to prepare for Nehish interview?
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 Nehish. The most common topics and skills that interviewers at Nehish expect are Java, SQL, Application Support, Flexcube and Hibernate.
What are the top questions asked in Nehish interview?

Some of the top questions asked at the Nehish interview -

  1. Can you provide details about the case stu...read more
  2. What can you tell me about technology in deta...read more
  3. About the in...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.2/5

based on 5 interview experiences

Difficulty level

Hard 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

CMS IT Services Interview Questions
3.1
 • 146 Interviews
iMerit Interview Questions
3.3
 • 108 Interviews
Arcesium Interview Questions
3.5
 • 85 Interviews
QualiZeal Interview Questions
4.3
 • 59 Interviews
Mavenir Systems Interview Questions
3.4
 • 58 Interviews
DotPe Interview Questions
3.1
 • 42 Interviews
NexTurn Interview Questions
4.1
 • 34 Interviews
View all

Nehish Reviews and Ratings

based on 13 reviews

4.3/5

Rating in categories

4.1

Skill development

4.2

Work-life balance

3.9

Salary

3.7

Job security

4.4

Company culture

3.5

Promotions

4.2

Work satisfaction

Explore 13 Reviews and Ratings
Senior Technical Consultant
6 salaries
unlock blur

₹10.6 L/yr - ₹26.7 L/yr

Site Reliability Engineer
5 salaries
unlock blur

₹3.5 L/yr - ₹7 L/yr

Associate Consultant
4 salaries
unlock blur

₹4 L/yr - ₹6 L/yr

Associate Software Developer
4 salaries
unlock blur

₹3.5 L/yr - ₹4.4 L/yr

HR Specialist
4 salaries
unlock blur

₹3.5 L/yr - ₹8 L/yr

Explore more salaries
Compare Nehish with

CMS IT Services

3.1
Compare

iMerit

3.3
Compare

Quantiphi Analytics Solutions Private Limited

3.2
Compare

Hapag-Lloyd

3.8
Compare
write
Share an Interview