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 28 Mar 2025

Top NeoSOFT Interview Questions and Answers

View all 297 questions

NeoSOFT Interview Experiences

Popular Designations

268 interviews found

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 (4)

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 (220)
Interview experience
4
Good
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(5 Questions)

  • Q1. OPPS Concept, C# String, Authentication, Authorization
  • Q2. Explain Authentication and Authorization
  • Ans. 

    Authentication verifies the identity of a user, while authorization determines what actions they can perform.

    • Authentication is the process of verifying the identity of a user or system.

    • It ensures that the user is who they claim to be.

    • Common authentication methods include passwords, biometrics, and two-factor authentication.

    • Authorization determines what actions a user or system is allowed to perform.

    • It is based on the a...

  • Answered by AI
  • Q3. Explain Abstraction and Encapsulation
  • Ans. 

    Abstraction is the process of hiding unnecessary details, while encapsulation is the bundling of data and methods into a single unit.

    • Abstraction focuses on the 'what' rather than the 'how'

    • Abstraction allows us to create simplified models of complex systems

    • Encapsulation ensures data and methods are kept together and hidden from external access

    • Encapsulation provides data protection and code organization

    • Example of abstrac...

  • Answered by AI
  • Q4. Explain difference between VeiwData and ViewBag
  • Ans. 

    ViewData and ViewBag are both used to pass data from controller to view in ASP.NET MVC, but ViewData uses dictionary while ViewBag uses dynamic properties.

    • ViewData is a dictionary object that stores data using key-value pairs.

    • ViewBag is a dynamic property that allows you to store and retrieve data.

    • ViewData requires typecasting while ViewBag does not.

    • ViewData is a bit slower than ViewBag due to typecasting.

    • Example: View

  • Answered by AI
  • Q5. Explain Design Pattern
  • Ans. 

    Design patterns are reusable solutions to common problems in software design.

    • Design patterns provide proven solutions to recurring design problems.

    • They promote code reusability, maintainability, and scalability.

    • Examples of design patterns include Singleton, Observer, and Factory.

    • Design patterns can be categorized into three types: creational, structural, and behavioral.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare
1 .OOPS Concept
2.MVC Topics
3.Design Pattern

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 (220)

NeoSOFT interview questions for popular designations

 Software Engineer

 (44)

 Software Developer

 (22)

 Senior Software Engineer

 (17)

 Java Developer

 (12)

 Full Stack Developer

 (7)

 PHP Developer

 (6)

 Angular Frontend Developer

 (6)

 DOT NET Developer

 (6)

Data Scientist Interview Questions & Answers

user image Nayan Kumar

posted on 24 Apr 2024

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

I applied via Naukri.com and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic ML Question, Timesereis and RNN with some questions on Comp Vision
Round 2 - One-on-one 

(1 Question)

  • Q1. Project driven. Some coding
Round 3 - HR 

(1 Question)

  • Q1. Salary Discussion

Data Scientist Interview Questions asked at other Companies

Q1. for a data with 1000 samples and 700 dimensions, how would you find a line that best fits the data, to be able to extrapolate? this is not a supervised ML problem, there's no target. and how would you do it, if you want to treat this as a s... read more
View answer (5)

Get interview-ready with Top NeoSOFT Interview Questions

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

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

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

(12 Questions)

  • Q1. Abstract class vs interfaces. What would i choose and why.
  • Ans. 

    Abstract class is used when there is a need for default implementation, while interfaces are used for multiple inheritance.

    • Abstract classes can have both abstract and non-abstract methods, while interfaces can only have abstract methods.

    • Abstract classes can provide default implementations for methods, while interfaces cannot.

    • Interfaces allow a class to implement multiple interfaces, but can only inherit from one abstra...

  • Answered by AI
  • Q2. Difference between .NET core, .NET framework and .NET
  • Ans. 

    NET core is a cross-platform, open-source framework for building modern, cloud-based, internet-connected applications. NET framework is a Windows-only framework for building Windows desktop applications. NET is a general term encompassing both .NET core and .NET framework.

    • NET core is cross-platform and open-source, while .NET framework is Windows-only.

    • .NET core is modular and lightweight, allowing for faster performanc...

  • Answered by AI
  • Q3. Pipelines and Middlewares in .NET. How would i configure them.
  • Ans. 

    Pipelines and Middlewares in .NET are used for request processing and can be configured using middleware components.

    • Pipelines in .NET are used to define a series of middleware components that process an HTTP request.

    • Middlewares are components that can handle requests and responses in the pipeline.

    • To configure pipelines and middlewares in .NET, you can use the 'UseMiddleware' method in the 'Configure' method of the Star...

  • Answered by AI
  • Q4. Difference between App.Use() and App.Run()
  • Ans. 

    App.Use() is used for adding middleware to the request pipeline, while App.Run() is used for handling the request directly.

    • App.Use() is used to add middleware components to the request pipeline.

    • App.Run() is used to handle the request directly without passing it to the next middleware component.

    • App.Use() is typically used for setting up middleware like authentication, logging, etc.

    • App.Run() is used for handling the fina...

  • Answered by AI
  • Q5. SOLID principles (S and O was asked)
  • Q6. Dependency Inversion vs Inversion of Control. I had to write examples of constructor injection, method injection with the help of a DBContext file.
  • Q7. String vs String Builder. Comparision of their mutability, speed, memory allocated, usability. Was provided a use case and asked which one to use and how. String Interpolation. String Manipulation.
  • Ans. 

    String is immutable, while StringBuilder is mutable. StringBuilder is faster and more memory efficient for string manipulation.

    • String is immutable, meaning once created, it cannot be changed. StringBuilder is mutable, allowing for efficient string manipulation.

    • StringBuilder is faster than String for concatenating multiple strings, as it does not create a new string object each time.

    • String uses more memory as it creates...

  • Answered by AI
  • Q8. Database Normalization (2NF was asked). Was given an sample dataset, asked to normalize and eliminate partial dependency. Given 2 entities Students and Class, establish relationships between them and prepa...
  • Q9. Difference between Unique, Primary Key. Clustered and Non-Clustered Indices.
  • Ans. 

    Unique, Primary Key, Clustered, and Non-Clustered Indices are all used in database management to enforce data integrity and improve query performance.

    • Unique constraint ensures that all values in a column are unique, but allows NULL values.

    • Primary Key constraint ensures that all values in a column are unique and not NULL. Each table can have only one Primary Key.

    • Clustered Index physically reorders the way records in the...

  • Answered by AI
  • Q10. Prepare an example of JWT authentication and Oauth for an API.
  • Ans. 

    JWT authentication and OAuth example for API

    • Implement JWT authentication by generating a token upon user login and including it in the Authorization header of API requests

    • Use OAuth for user authorization by obtaining access tokens from a third-party provider like Google or Facebook

    • Ensure API endpoints validate JWT tokens and OAuth access tokens before allowing access to resources

  • Answered by AI
  • Q11. Difference between $.post and $.ajax.
  • Ans. 

    Both $.post and $.ajax are methods in jQuery used for making AJAX requests, but $.ajax is more versatile and customizable.

    • Both $.post and $.ajax are used for making AJAX requests in jQuery.

    • $.post is a shorthand method for $.ajax with predefined settings for POST requests.

    • $.ajax is more versatile and customizable, allowing for different types of requests and more options.

    • Example: $.post('example.php', {data: 'example'},...

  • Answered by AI
  • Q12. Write a Linq query to fetch data the fastest.(i used iQueryable) Write a Linq query to check if a record exists in the table.(i used ANY)

Interview Preparation Tips

Topics to prepare for NeoSOFT DOT NET Developer interview:
  • C#
  • webapi
  • SQL Server
Interview preparation tips for other job seekers - The interviewer was asking real life use case-driven questions. You can learn a bit about low level system design.
Focus more on C# and DOTNET 6.

Skills evaluated in this interview

Top NeoSOFT DOT NET Developer Interview Questions and Answers

Q1. String vs String Builder. Comparision of their mutability, speed, memory allocated, usability. Was provided a use case and asked which one to use and how. String Interpolation. String Manipulation.
View answer (1)

DOT NET Developer Interview Questions asked at other Companies

Q1. What is the difference between windows application development and web based development?
View answer (12)

Jobs at NeoSOFT

View all
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
  • Q1. Difference between abstract and interface
  • Ans. 

    Abstract classes can have both abstract and concrete methods, while interfaces can only have abstract methods.

    • Abstract classes can have state (fields), while interfaces cannot.

    • A class can inherit from only one abstract class but can implement multiple interfaces.

    • Abstract classes can provide default behavior, whereas interfaces cannot.

    • Example: An abstract class 'Animal' can have a method 'makeSound()', while an interfac

  • Answered by AI
  • Q2. In sql write a salary second highest according department wise?
  • Q3. From array how to find second highest value write a program in c#.

Interview Preparation Tips

Interview preparation tips for other job seekers - always aware this is furgi company

Top NeoSOFT Senior Software Engineer Interview Questions and Answers

Q1. Solved it by looping through each element first. Split the string into an array to get access to each character. Using the .every() method checks whether each character of the string is present inside the user string using the .includes() m... read more
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)

PHP Developer Interview Questions & Answers

user image Anonymous

posted on 16 Aug 2024

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

(2 Questions)

  • Q1. Why you like to join?
  • Ans. 

    I am passionate about PHP development and excited about the opportunity to work with a talented team.

    • Passionate about PHP development

    • Excited about working with a talented team

    • Looking for growth and learning opportunities

  • Answered by AI
  • Q2. Will you shift to client location
  • Ans. 

    Yes, I am willing to shift to the client location if required for the job.

    • I am open to relocating for the right opportunity

    • I understand the importance of being on-site for certain projects

    • I have previous experience working at client locations

  • Answered by AI

PHP Developer Interview Questions asked at other Companies

Q1. How can we report errors in the log file while working on a core PHP project?
View answer (3)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Array questions

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 (220)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - One-on-one 

(10 Questions)

  • Q1. What is static in Java?
  • Q2. What is singleton?
  • Q3. What is Coroutines?
  • Q4. What is dispatcher?
  • Q5. What is with context in Coroutines?
  • Q6. How to raise request parallel in Coroutines?
  • Q7. Scoped functions in Kotlin.
  • Q8. Background task in Android.
  • Q9. What is the difference between interface and abstract class in Java?
  • Q10. What is let function?

Android Developer Interview Questions asked at other Companies

Q1. BST Iterator Problem Statement You are tasked with creating a class named BSTIterator that acts as an iterator for the inorder traversal of a binary search tree. Implement the following functions: BSTIterator(Node root): A constructor that... read more
View answer (1)

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, Python and Node.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.

Tell us how to improve this page.

NeoSOFT Interview Process

based on 249 interviews

Interview experience

3.7
  
Good
View more

Explore Interview Questions and Answers for Top Skills at NeoSOFT

Interview Questions from Similar Companies

ITC Infotech Interview Questions
3.6
 • 339 Interviews
3i Infotech Interview Questions
3.5
 • 145 Interviews
Microland Interview Questions
3.4
 • 132 Interviews
Sify Technologies Interview Questions
3.8
 • 123 Interviews
Mastek Interview Questions
3.5
 • 120 Interviews
Maveric Systems Interview Questions
3.5
 • 118 Interviews
Sonata Software Interview Questions
3.4
 • 117 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
Hr Operations Officer

Navi Mumbai,

Mumbai

3-8 Yrs

Not Disclosed

Java Developer

Navi Mumbai,

Mumbai

6-11 Yrs

Not Disclosed

Job Opportunity For Technical Recruiter For Mumbai (Dadar)

Mumbai,

Mumbai Suburban

+1

6-9 Yrs

Not Disclosed

Explore more jobs
Software Engineer
2k salaries
unlock blur

₹3.5 L/yr - ₹14 L/yr

Senior Software Engineer
755 salaries
unlock blur

₹6 L/yr - ₹22 L/yr

Software Developer
703 salaries
unlock blur

₹3 L/yr - ₹13.5 L/yr

Softwaretest Engineer
483 salaries
unlock blur

₹2 L/yr - ₹9.8 L/yr

Associate Software Engineer
189 salaries
unlock blur

₹2.5 L/yr - ₹9 L/yr

Explore more salaries
Compare NeoSOFT with

ITC Infotech

3.6
Compare

Test Yantra Software Solutions

3.2
Compare

Microland

3.4
Compare

3i Infotech

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