Upload Button Icon Add office photos

Filter interviews by

Indus Net Technologies Associate Software Engineer Interview Questions, Process, and Tips

Updated 4 Jun 2024

Top Indus Net Technologies Associate Software Engineer Interview Questions and Answers

View all 6 questions

Indus Net Technologies Associate Software Engineer Interview Experiences

7 interviews found

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

It was simple apptitude

Round 2 - Technical 

(2 Questions)

  • Q1. Difference between private and protected
  • Ans. 

    Private members are accessible only within the same class, while protected members are accessible within the same class and its subclasses.

    • Private members can only be accessed within the same class

    • Protected members can be accessed within the same class and its subclasses

    • Private members are not inherited by subclasses

    • Protected members are inherited by subclasses

  • Answered by AI
  • Q2. Why we use nosql database
  • Ans. 

    NoSQL databases are used for scalability, flexibility, and handling unstructured data.

    • Scalability: NoSQL databases can easily scale horizontally to handle large amounts of data and high traffic.

    • Flexibility: NoSQL databases do not require a predefined schema, allowing for easy modifications and additions to data.

    • Handling unstructured data: NoSQL databases are well-suited for storing and querying unstructured data like d...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. General questions
  • Q2. About availability

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Removed duplicate in array
  • Ans. 

    Remove duplicate strings in an array

    • Use a Set data structure to store unique strings

    • Iterate through the array and add each string to the Set

    • Convert the Set back to an array to get the final result

  • Answered by AI
  • Q2. Find unique value
  • Ans. 

    Find the unique value in an array of strings

    • Iterate through the array and use a hashmap to store the frequency of each element

    • Return the element with frequency 1 as the unique value

  • Answered by AI

Skills evaluated in this interview

Associate Software Engineer Interview Questions Asked at Other Companies

asked in Accenture
Q1. Triplets with Given Sum Problem Given an array or list ARR consis ... read more
asked in Gainsight
Q2. Connecting Ropes with Minimum Cost You are given 'N' ropes, each ... read more
Q3. Intersection of Two Arrays II Given two integer arrays ARR1 and A ... read more
asked in Clarivate
Q4. Best Time to Buy and Sell Stock II Problem Statement Given the st ... read more
Q5. Ninja and Alternating Largest Problem Statement Ninja is given a ... read more

I applied via Campus Placement

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 - Aptitude Test 

Aptitude questions are easy but coding was bit tuff

Round 3 - Technical 

(2 Questions)

  • Q1. Tell me the basic pillars of opps
  • Ans. 

    The basic pillars of OOP are encapsulation, inheritance, and polymorphism.

    • Encapsulation: bundling of data and methods that operate on that data within a single unit

    • Inheritance: ability of a class to inherit properties and methods from a parent class

    • Polymorphism: ability of objects to take on multiple forms or behaviors depending on the context

  • Answered by AI
  • Q2. Diffrence between jre jdk jvm
  • Ans. 

    JRE is a runtime environment, JDK is a development kit, and JVM is a virtual machine.

    • JRE stands for Java Runtime Environment and is used to run Java applications.

    • JDK stands for Java Development Kit and is used to develop Java applications.

    • JVM stands for Java Virtual Machine and is responsible for executing Java bytecode.

    • JDK includes JRE and additional development tools such as compilers and debuggers.

    • JVM is platform-de...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - keep a sense of humor. it lets you bounce back more readily for rejection and provides relief from the stress of looking for a job

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Feb 2022. There were 3 interview rounds.

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 - Technical 

(2 Questions)

  • Q1. Introduction, Basic programming loops like for,do-while etc
  • Q2. What was your previous job role and questions regarding to that job and projects you have done
Round 3 - Technical 

(2 Questions)

  • Q1. Introduction ,why you left your previous organization,what was your experience in the previous organization
  • Q2. A coding problem related to sorting

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and if you don't know the answer just simply say I don't know this,will try to learn.

Indus Net Technologies interview questions for designations

 Software Engineer

 (7)

 Associate

 (1)

 Associate Data Analyst

 (1)

 Drupal Developer

 (1)

I applied via LinkedIn and was interviewed in Feb 2022. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Introduction, What was your previous job role and Questions regarding that
  • Q2. Basic programming loops like do-while,for
Round 2 - Technical 

(2 Questions)

  • Q1. Introduction, How was your experience in previous organization?
  • Q2. A coding problem related to sorting

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and simply say no when you don't know any answer.

Get interview-ready with Top Indus Net Technologies Interview Questions

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Nov 2022. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Merge sort bubble sort
  • Q2. React hooks lifecycle

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics DSA with React interview questions
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement and was interviewed before May 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

Normal usual apti question

Round 3 - Technical 

(1 Question)

  • Q1. Basic question from cv

Interview Preparation Tips

Interview preparation tips for other job seekers - You can join, learning opportunity depending on team.
Dont go for long bonds

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral

Round 1 - Coding Test 

Print a specific pattern using any programming language.

Round 2 - One-on-one 

(3 Questions)

  • Q1. What is a class in Object-Oriented Programming (OOP)?
  • Ans. 

    A class in OOP is a blueprint for creating objects, defining their properties and behaviors.

    • Classes are templates for creating objects in OOP

    • They define the properties (attributes) and behaviors (methods) of objects

    • Objects are instances of classes, each with its own unique data

    • Inheritance allows classes to inherit properties and behaviors from other classes

    • Encapsulation ensures that the data is hidden and can only be a...

  • Answered by AI
  • Q2. What is the difference between an abstract class and an interface?
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructors, fields, and methods, while interface cannot have any implementation.

    • A class can only extend one abstract class, but can implement multiple interfaces.

    • Abstract classes are used to define common characteristics of subclasses, while interfaces are used to define contracts for...

  • Answered by AI
  • Q3. What is joining and creating an inner join query?
  • Ans. 

    Joining is combining data from two or more tables based on a related column, while an inner join query retrieves only the matching records.

    • Joining is used to combine data from multiple tables in a database.

    • Inner join query retrieves only the records that have matching values in both tables.

    • Syntax for inner join: SELECT columns FROM table1 INNER JOIN table2 ON table1.column = table2.column;

    • Example: SELECT orders.order_i...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Webkul Software Associate Software Engineer interview:
  • OOPS
  • Baisc Of any of Programing
  • MySQL
  • joins
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

There were 30 questions on the aptitude test, all of which were part of the total count.

Round 2 - Coding Test 

I have three questions: two related to data structures and algorithms, and one concerning SQL.

Round 3 - Technical 

(1 Question)

  • Q1. Got two questions DSA medium and Easy one

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep calm and have confidences do your best
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Aptitude Test 

Mathematics,General Aptitute,three coding question

Round 2 - Coding Test 

Face to face interview.Ask questions on Data structure and algorithms

Round 3 - HR 

(1 Question)

  • Q1. Where do you look from 5 years from now

Indus Net Technologies Interview FAQs

How many rounds are there in Indus Net Technologies Associate Software Engineer interview?
Indus Net Technologies interview process usually has 2-3 rounds. The most common rounds in the Indus Net Technologies interview process are Technical, Resume Shortlist and Aptitude Test.
What are the top questions asked in Indus Net Technologies Associate Software Engineer interview?

Some of the top questions asked at the Indus Net Technologies Associate Software Engineer interview -

  1. tell me the basic pillars of o...read more
  2. Why we use nosql datab...read more
  3. Difference between private and protec...read more

Tell us how to improve this page.

Indus Net Technologies Associate Software Engineer Interview Process

based on 5 interviews

3 Interview rounds

  • Resume Shortlist Round
  • Technical Round - 1
  • Technical Round - 2
View more
Indus Net Technologies Associate Software Engineer Salary
based on 154 salaries
₹2 L/yr - ₹8 L/yr
12% less than the average Associate Software Engineer Salary in India
View more details

Indus Net Technologies Associate Software Engineer Reviews and Ratings

based on 34 reviews

3.3/5

Rating in categories

3.2

Skill development

3.1

Work-life balance

2.7

Salary

2.6

Job security

3.0

Company culture

2.6

Promotions

2.8

Work satisfaction

Explore 34 Reviews and Ratings
Software Engineer
303 salaries
unlock blur

₹3.6 L/yr - ₹11.4 L/yr

Senior Software Engineer
165 salaries
unlock blur

₹4 L/yr - ₹13 L/yr

Associate Software Engineer
154 salaries
unlock blur

₹2 L/yr - ₹8 L/yr

Team Lead
46 salaries
unlock blur

₹5.1 L/yr - ₹13 L/yr

Business Analyst
45 salaries
unlock blur

₹4.3 L/yr - ₹15 L/yr

Explore more salaries
Compare Indus Net Technologies with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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