Upload Button Icon Add office photos

Filter interviews by

Softpark 21 DOT NET Programmer Interview Questions and Answers

Updated 25 May 2022

Softpark 21 DOT NET Programmer Interview Experiences

2 interviews found

Interview Questionnaire 

1 Question

  • Q1. Rate yourself your .NET technology skills?
  • Ans. In the scale of 1 to 5 I rate 3.
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - 2-3 rounds before ex-employer makes any job offer to candidate.

I applied via Company Website and was interviewed before May 2021. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Telephonic applicant verification and fix interview date and time
Round 2 - Technical 

(1 Question)

  • Q1. Dotnet familarity and legacy to new technology migration.
  • Ans. 

    Familiarity with legacy .NET and ability to migrate to new technologies.

    • Demonstrate experience with both legacy .NET and newer technologies.

    • Highlight any successful migration projects you have led or been a part of.

    • Discuss your approach to evaluating and selecting new technologies for migration.

    • Emphasize the importance of maintaining compatibility and minimizing disruption during migration.

    • Provide examples of how you h...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Policies were mentioned in offer letter so as to adhere to rules and regulations.

DOT NET Programmer Interview Questions Asked at Other Companies

asked in Softpark 21
Q1. Dotnet familarity and legacy to new technology migration.
asked in Infosys
Q2. what is string builder?

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Basic DSA from the hacker rank website

Round 2 - Technical 

(1 Question)

  • Q1. Basic to medium questions on javascript, nodejs, MySQL joints, html5 tags
Round 3 - Technical 

(1 Question)

  • Q1. Real life problems, Use cases

Interview Preparation Tips

Interview preparation tips for other job seekers - I have applied for Full stack developer role. Be strong at real time implementations and use cases
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

Technology advantage or not

Round 2 - Aptitude Test 

All aptitude topics,logical reasoning

Round 3 - Technical 

(2 Questions)

  • Q1. Oops,2 coding questions
  • Q2. Palindrome,even number
Round 4 - HR 

(2 Questions)

  • Q1. What do you know
  • Q2. Do you have any questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Similar to tcs,infosys pattern
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is Dependency Injection?
  • Ans. 

    Dependency Injection is a design pattern in which components are given their dependencies rather than creating them internally.

    • Allows for easier testing by providing mock dependencies

    • Promotes loose coupling between components

    • Improves code reusability and maintainability

    • Examples: Constructor injection, Setter injection, Interface injection

  • Answered by AI
  • Q2. How to handle exception in java
  • Ans. 

    In Java, exceptions can be handled using try-catch blocks to catch and handle specific exceptions.

    • Use try-catch blocks to catch exceptions and handle them gracefully

    • Use multiple catch blocks to handle different types of exceptions

    • Use finally block to execute code regardless of whether an exception is thrown or not

    • Throw custom exceptions using throw keyword

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. In Java8, different between flatmap and map
  • Ans. 

    map transforms each element in a stream, while flatMap transforms each element into multiple elements

    • map applies a function to each element in a stream and returns a new stream of the results

    • flatMap applies a function that returns a stream for each element in the original stream, then flattens the streams into a single stream

    • Example: map - stream.map(x -> x * x), flatMap - stream.flatMap(str -> Arrays.stream(str.split(

  • Answered by AI
  • Q2. How to handle the ConcureentModificationException
  • Ans. 

    ConcurrentModificationException occurs when a collection is modified while iterating over it.

    • Use Iterator to iterate over the collection instead of foreach loop.

    • If modification is necessary, use Iterator's remove() method instead of collection's remove() method.

    • Consider using synchronized collections or ConcurrentHashMap to avoid ConcurrentModificationException.

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Difference between linked list and array list
  • Ans. 

    Linked list is a data structure where elements are stored in nodes with pointers to the next node. Array list is a dynamic array that can grow or shrink in size.

    • Linked list allows for efficient insertion and deletion of elements anywhere in the list.

    • Array list provides fast access to elements using index, but slower insertion and deletion compared to linked list.

    • Example: Linked list - 1 -> 2 -> 3 -> 4 -> 5, Array list

  • Answered by AI
  • Q2. Difference between @controller and @ Rest controller
  • Ans. 

    The @Controller annotation is used for traditional MVC controllers, while @RestController is used for RESTful web services.

    • The @Controller annotation is used to define a class as a Spring MVC controller, which can handle HTTP requests and return a view.

    • The @RestController annotation is used to define a class as a controller for RESTful web services, which can handle HTTP requests and return data in JSON or XML format.

    • T...

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Why do you want to switch
  • Ans. 

    I want to switch to explore new technologies and challenges in a different industry.

    • Interested in learning new skills and technologies

    • Seeking new challenges and opportunities for growth

    • Want to explore different industry perspectives

  • Answered by AI
  • Q2. Salry expectations
Round 2 - Technical 

(2 Questions)

  • Q1. Question on oop concepts
  • Q2. Coding questions
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-

I applied via Referral

Round 1 - Technical 

(1 Question)

  • Q1. Basic core Java question.
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

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Thread,oops,sql,find character count

Softpark 21 Interview FAQs

How many rounds are there in Softpark 21 DOT NET Programmer interview?
Softpark 21 interview process usually has 2 rounds. The most common rounds in the Softpark 21 interview process are HR and Technical.
What are the top questions asked in Softpark 21 DOT NET Programmer interview?

Some of the top questions asked at the Softpark 21 DOT NET Programmer interview -

  1. Dotnet familarity and legacy to new technology migrati...read more
  2. Telephonic applicant verification and fix interview date and t...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Softpark 21 interview
Company Website
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Teleperformance Interview Questions
3.9
 • 1.7k Interviews
Nagarro Interview Questions
4.0
 • 754 Interviews
FIS Interview Questions
3.9
 • 468 Interviews
Optum Interview Questions
4.0
 • 408 Interviews
Dell Interview Questions
4.1
 • 385 Interviews
Quest Global Interview Questions
3.6
 • 288 Interviews
Qualcomm Interview Questions
3.8
 • 267 Interviews
NeoSOFT Interview Questions
4.0
 • 250 Interviews
Episource Interview Questions
3.9
 • 221 Interviews
FactSet Interview Questions
4.0
 • 202 Interviews
View all

Softpark 21 DOT NET Programmer Reviews and Ratings

based on 2 reviews

3.0/5

Rating in categories

3.0

Skill development

3.0

Work-Life balance

2.0

Salary & Benefits

2.0

Job Security

2.0

Company culture

3.0

Promotions/Appraisal

3.0

Work Satisfaction

Explore 2 Reviews and Ratings
Compare Softpark 21 with

Teleperformance

3.9
Compare

FIS

3.9
Compare

Nagarro

4.0
Compare

Optum

4.0
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview