Upload Button Icon Add office photos
Engaged Employer

i

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

NeoSOFT Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

NeoSOFT Interview Questions, Process, and Tips

Updated 7 Mar 2025

Top NeoSOFT Interview Questions and Answers

View all 284 questions

NeoSOFT Interview Experiences

Popular Designations

262 interviews found

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

I applied via Campus Placement and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Java , collection , spring boot
  • Q2. What is internal working of hashmap
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to efficiently retrieve values.

    • HashMap internally uses an array of linked lists to store key-value pairs.

    • When a key-value pair is added, the key is hashed to determine the index in the array where it will be stored.

    • If multiple keys hash to the same index, a linked list is used to handle collisions.

    • To retrieve a value, the key is hashed again to fi...

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

(1 Question)

  • Q1. Spring security, oops , hibernate

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well what you mentioned on resume

Skills evaluated in this interview

Top NeoSOFT Associate Software Engineer Interview Questions and Answers

Q1. 1. Difference between abstract class and interface. 2. Internal Working of HashMap 3. Difference Between ArrayList vs Linked List. 4. WAP to reverse a String 5. dependency Injections 6. IOC Container 7. Singleton Class
View answer (2)

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Angular Basic Concepts interceptor,Observable,AuthGuard

Top NeoSOFT Angular Frontend Developer Interview Questions and Answers

Q1. 4.How to create custom Pipe? 5.Directives in angular 6.Binding in angular
View answer (1)

Angular Frontend Developer Interview Questions asked at other Companies

Q1. How to implement interfaces without methods?
View answer (1)
NeoSOFT Interview Questions and Answers for Freshers
illustration image
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Classical Question
  • Q2. Easy Coding question
Round 2 - Technical 

(2 Questions)

  • Q1. Project related questions. Some deep dive questions as well
  • Q2. Overall it were easy to little moderate question
Round 3 - HR 

(2 Questions)

  • Q1. Classical hr question. Salary negotiation. Introduction about company.
  • Q2. When can you join
  • Ans. 

    I can join within 2 weeks of receiving an offer.

    • I can start within 2 weeks of receiving an offer.

    • I need to give notice to my current employer.

    • I may need time to relocate if necessary.

  • Answered by AI

Top NeoSOFT Software Engineer Interview Questions and Answers

Q1. How to find the palindrome among first N numbers? Code it.
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (203)

Software Engineer Interview Questions & Answers

user image munigala rahul

posted on 30 May 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected

I applied via Naukri.com and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Find the max and min value
  • Ans. 

    Find the max and min value in an array of numbers.

    • Iterate through the array to find the maximum and minimum values.

    • Initialize variables to store the max and min values, update them as you iterate through the array.

    • Return the max and min values once the iteration is complete.

  • Answered by AI
  • Q2. Diference between curd and jpa
  • Ans. 

    CRUD is a general term for Create, Read, Update, Delete operations in databases, while JPA is a Java specification for mapping Java objects to database tables.

    • CRUD stands for Create, Read, Update, Delete operations in databases.

    • JPA is a Java specification for mapping Java objects to database tables.

    • JPA provides a higher level of abstraction and simplifies database operations compared to manual CRUD operations.

    • CRUD oper...

  • Answered by AI
  • Q3. Explain spring boot annotations
  • Ans. 

    Spring Boot annotations are used to simplify the development process by providing shortcuts for common tasks.

    • Annotations are used to configure various aspects of a Spring Boot application, such as defining beans, request mappings, and transaction management.

    • Some common Spring Boot annotations include @SpringBootApplication, @RestController, @Autowired, @RequestMapping, and @Component.

    • These annotations help in reducing ...

  • Answered by AI

Skills evaluated in this interview

Top NeoSOFT Software Engineer Interview Questions and Answers

Q1. How to find the palindrome among first N numbers? Code it.
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (203)

NeoSOFT interview questions for popular designations

 Software Engineer

 (44)

 Software Developer

 (22)

 Senior Software Engineer

 (16)

 Java Developer

 (12)

 Full Stack Developer

 (7)

 PHP Developer

 (6)

 Angular Frontend Developer

 (6)

 DOT NET Developer

 (6)

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Javascript basics
  • Q2. Javascript advanced

Node JS Developer Interview Questions asked at other Companies

Q1. 2. What are the main modules of Node.js? Explain in detail.
View answer (3)

Get interview-ready with Top NeoSOFT Interview Questions

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What are the differences between an ArrayList and a LinkedList?
  • Ans. 

    ArrayList is implemented as a resizable array, while LinkedList is implemented as a doubly linked list.

    • ArrayList provides fast random access and slower insertion/deletion, while LinkedList provides fast insertion/deletion and slower random access.

    • ArrayList uses less memory overhead compared to LinkedList.

    • Example: ArrayList is more suitable for scenarios where frequent access and traversal of elements is required, while...

  • Answered by AI

Top NeoSOFT Java Developer Interview Questions and Answers

Q1. 1. How microservices communicate with each other?
View answer (2)

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (3)

Jobs at NeoSOFT

View all
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. == operation & .equals() method method overloading
  • Ans. 

    The == operator is used to compare references in Java, while the .equals() method is used to compare values. Method overloading is when multiple methods have the same name but different parameters.

    • Use == to compare references, use .equals() to compare values

    • Method overloading allows multiple methods with the same name but different parameters

    • Example: String str1 = new String("hello"); String str2 = new String("hello");...

  • Answered by AI
  • Q2. Linked list working with example
  • Ans. 

    A linked list is a data structure where each element points to the next element in the list.

    • Linked list is made up of nodes, each containing data and a reference to the next node.

    • Insertion and deletion are efficient in linked lists compared to arrays.

    • Example: Node 1 -> Node 2 -> Node 3 -> null

  • Answered by AI

Skills evaluated in this interview

Java Software Developer Interview Questions asked at other Companies

Q1. How do you convert list to arraylist? And vice versa
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Hashmap and Cocurrenthashmap difference
  • Ans. 

    HashMap is not thread-safe, while ConcurrentHashMap is thread-safe.

    • HashMap is not synchronized and not thread-safe, while ConcurrentHashMap is thread-safe.

    • ConcurrentHashMap allows concurrent modifications without causing any ConcurrentModificationException.

    • ConcurrentHashMap achieves thread-safety by dividing the map into segments, each with its own lock.

  • Answered by AI

Top NeoSOFT Java Developer Interview Questions and Answers

Q1. 1. How microservices communicate with each other?
View answer (2)

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (3)

Interview Questions & Answers

user image Prajakta Kulkarni

posted on 13 Aug 2024

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

(1 Question)

  • Q1. What is event loop
Round 2 - Coding Test 

Asked me to build an entire application in 30 min when he himself joined the meeting 15 mins late

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

(1 Question)

  • Q1. Oops concepts JavaScript related
Round 2 - Technical 

(1 Question)

  • Q1. Project related technologies used
  • Ans. 

    Used technologies include Java, Spring Boot, Angular, and MySQL.

    • Java

    • Spring Boot

    • Angular

    • MySQL

  • Answered by AI

Top NeoSOFT Software Engineer Interview Questions and Answers

Q1. How to find the palindrome among first N numbers? Code it.
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (203)
Contribute & help others!
anonymous
You can choose to be anonymous

NeoSOFT Interview FAQs

How many rounds are there in NeoSOFT interview?
NeoSOFT interview process usually has 1-2 rounds. The most common rounds in the NeoSOFT interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for NeoSOFT 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 NeoSOFT. The most common topics and skills that interviewers at NeoSOFT expect are Javascript, MVC, Django, Node.Js and React.Js.
What are the top questions asked in NeoSOFT interview?

Some of the top questions asked at the NeoSOFT interview -

  1. Solved it by looping through each element first. Split the string into an array...read more
  2. 1. Difference between abstract class and interface. 2. Internal Working of Hash...read more
  3. 1. How microservices communicate with each oth...read more
How long is the NeoSOFT interview process?

The duration of NeoSOFT interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

SALARIES

The Wise Owl

JOBS

NeoSOFT

No Jobs

SALARIES

Global FPO

SALARIES

Enterslice

INTERVIEWS

Cybage

100 top interview questions

SALARIES

Social Vocial

SALARIES

ScopeGen

SALARIES

Mak Media

SALARIES

ARM Worldwide

Tell us how to improve this page.

NeoSOFT Interview Process

based on 243 interviews

Interview experience

3.7
  
Good
View more

Explore Interview Questions and Answers for Top Skills at NeoSOFT

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 790 Interviews
ITC Infotech Interview Questions
3.8
 • 334 Interviews
View all

NeoSOFT Reviews and Ratings

based on 1.4k reviews

3.6/5

Rating in categories

3.7

Skill development

3.5

Work-life balance

3.5

Salary

3.3

Job security

3.4

Company culture

3.3

Promotions

3.5

Work satisfaction

Explore 1.4k Reviews and Ratings
Senior Java Developer

Navi Mumbai

6-11 Yrs

₹ 15-16 LPA

Devops Architect

Navi Mumbai

10-20 Yrs

₹ 30-35 LPA

Senior Business Development Management

Noida,

Bangalore / Bengaluru

+1

11-21 Yrs

Not Disclosed

Explore more jobs
Software Engineer
2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
742 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
709 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Softwaretest Engineer
513 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
189 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare NeoSOFT 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