Upload Button Icon Add office photos

Filter interviews by

Netgurusolution India Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

I was interviewed in Apr 2022.

Round 1 - Telephonic Call 

(1 Question)

Round duration - 55 Minutes
Round difficulty - Easy

Timing - evening
Interviewer was friendly.

  • Q1. 

    Number of Islands Problem Statement

    You are provided with a 2-dimensional matrix having N rows and M columns, containing only 1s (land) and 0s (water). Your goal is to determine the number of islands in t...

  • Ans. 

    Count the number of islands in a 2D matrix of 1s and 0s.

    • Iterate through the matrix and perform depth-first search (DFS) to find connected 1s.

    • Mark visited cells to avoid redundant calculations.

    • Increment island count whenever a new island is encountered.

  • Answered by AI
Round 2 - Telephonic Call 

(2 Questions)

Round duration - 55 Minutes
Round difficulty - Easy

Timing - afternoon
Interviewer was friendly

  • Q1. 

    Move Zeroes to End

    Given an unsorted array of integers, rearrange the elements such that all the zeroes are moved to the end, while maintaining the order of non-zero elements.

    Input:

    The first line cont...
  • Ans. 

    Given an unsorted array of integers, move all zeroes to the end while maintaining the order of non-zero elements.

    • Iterate through the array and maintain two pointers, one for the current position and one for the position to swap with.

    • If the current element is non-zero, swap it with the element at the swap pointer and increment the swap pointer.

    • After iterating through the array, fill the remaining positions with zeroes.

    • E...

  • Answered by AI
  • Q2. 

    Asteroid Collision Problem Description

    Given an array/list ASTEROIDS representing asteroids aligned in a row, each element's absolute value identifies the asteroid's size, while its sign indicates the dir...

  • Ans. 

    Determine the state of asteroids after collisions occur in a row.

    • Iterate through the array of asteroids and simulate collisions between adjacent asteroids moving in opposite directions.

    • If two asteroids collide, the larger one survives while the smaller one is destroyed.

    • Continue this process until no more collisions can occur.

    • Return the array of remaining asteroids after all collisions have been resolved.

  • Answered by AI
Round 3 - Telephonic Call 

Round duration - 55 Minutes
Round difficulty - Easy

Timing - evening
interviewer was friendly

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Senior Software Engineer in BangaloreEligibility criteriaExperienceQuizizz Inc. interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Low Level Design, High Level Design, Machine LearningTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Practice DSA/Algorithms.
Tip 2 : Practice LLD and OOPs concepts. Also, do check how data models/database schema should be.
Tip 3 : Practice System Design from the Alex Xu - System Design Interview book.

Application resume tips for other job seekers

Tip 1 : Do not put false things on your resume.
Tip 2 : Should know your resume in and out.

Final outcome of the interviewRejected

Skills evaluated in this interview

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

It was a leetcode medium

Round 2 - Assignment 

It was a leetcode medium

Senior Associate Interview Questions & Answers

Elevate user image Shital Santosh Badgujar

posted on 13 May 2024

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

I applied via Approached by Company and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - Assignment 

Contracts review and abstraction

Round 2 - One-on-one 

(1 Question)

  • Q1. Contracts and essential elements
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

20 mcq questions and 3 programming questions

Round 3 - Technical 

(2 Questions)

  • Q1. Progrmas on the linked list
  • Ans. 

    Linked list programs involve creating, traversing, inserting, and deleting nodes in a linked list data structure.

    • Create a linked list by defining a node struct and using pointers to link them together

    • Traverse the linked list using a while loop and a pointer to the current node

    • Insert a node by creating a new node, updating pointers, and handling edge cases

    • Delete a node by updating pointers and freeing memory

    • Examples: re...

  • Answered by AI
  • Q2. 1 to 1 round with some questions on linked list and arrays

Skills evaluated in this interview

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

Moderate Coding question

Round 2 - Technical 

(2 Questions)

  • Q1. On Java, OOPS concepts and coding logics
  • Q2. Data Structures and algorithms
Round 3 - Technical 

(2 Questions)

  • Q1. Mostly the same as Round 1
  • Q2. But question complexity is increased
Round 4 - HR 

(2 Questions)

  • Q1. Normal questions about us
  • Q2. Nothing major as I remember
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Hackerrank coding test

Round 2 - Technical 

(2 Questions)

  • Q1. Is the String anagram or not
  • Ans. 

    Check if a given string is an anagram of another string

    • Compare the sorted characters of both strings

    • Check if the character counts are the same in both strings

    • Examples: 'listen' and 'silent' are anagrams, 'hello' and 'world' are not

  • Answered by AI
  • Q2. Occurence of letters in a string
  • Ans. 

    Count the occurrence of each letter in a given string.

    • Create an array to store the count of each letter

    • Iterate through the string and increment the count of each letter in the array

    • Return the array with the count of each letter

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(3 Questions)

  • Q1. Why r u looking job
  • Q2. What is sales and why you need this
  • Ans. 

    Sales is the process of selling products or services to customers in exchange for money or other forms of compensation.

    • Sales involves identifying potential customers, understanding their needs, and persuading them to make a purchase.

    • Building relationships with customers is crucial in sales to ensure repeat business and referrals.

    • Sales executives need strong communication and negotiation skills to effectively close deal...

  • Answered by AI
  • Q3. And what is your last salary package
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Quantiative Aptitude

Round 2 - One-on-one 

(1 Question)

  • Q1. Questions related to basic DSA, Searching, sorting, SQL Queries based on aggregate functions, Basic puzzle (GFG)
Round 3 - One-on-one 

(1 Question)

  • Q1. Resume based, Discussion about projects mentioned on the resume.
Round 4 - HR 

(1 Question)

  • Q1. Strength, Weakness,

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm during the process
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Shine and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. We have considered to directly send your profile to companies. How much CTC do you expect?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident,answer all questions.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Mar 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Discussion on sales, areas and target
Round 3 - One-on-one 

(1 Question)

  • Q1. Discussion about product, target etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Its a good organization

Tell us how to improve this page.

Interview Questions from Similar Companies

InsanelyGood Interview Questions
4.1
 • 19 Interviews
Vegrow Interview Questions
4.1
 • 17 Interviews
Shine Interview Questions
2.8
 • 16 Interviews
Pepper Content Interview Questions
2.4
 • 11 Interviews
Elevate Interview Questions
3.5
 • 9 Interviews
Meddo Interview Questions
3.1
 • 8 Interviews
ParallelDots Interview Questions
3.9
 • 8 Interviews
Mogli labs Interview Questions
3.5
 • 8 Interviews
Quizizz Interview Questions
3.7
 • 8 Interviews
PromptCloud Interview Questions
4.6
 • 7 Interviews
View all

Netgurusolution India Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

4.0

Salary

4.0

Job security

4.0

Company culture

4.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Compare Netgurusolution India with

InsanelyGood

4.1
Compare

Mogli labs

3.5
Compare

Shine

2.8
Compare

Vegrow

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