Upload Button Icon Add office photos
Engaged Employer

i

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

Northcorp Software Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Northcorp Software DOT NET Developer Interview Questions, Process, and Tips

Updated 4 Mar 2025

Top Northcorp Software DOT NET Developer Interview Questions and Answers

View all 10 questions

Northcorp Software DOT NET Developer Interview Experiences

7 interviews found

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 where components are given their dependencies rather than creating them internally.

    • Dependency injection helps in achieving loose coupling between classes.

    • It allows for easier testing and maintenance of code.

    • There are three types of dependency injection - constructor injection, setter injection, and interface injection.

    • Example: Instead of creating an instance of a class within an...

  • Answered by AI
  • Q2. Injecting Dependencies instead of creating them.
  • Ans. 

    Injecting dependencies allows for better flexibility, testability, and maintainability in code.

    • Injecting dependencies means passing objects that a class needs rather than creating them within the class.

    • This allows for easier testing by mocking dependencies and swapping them out for different implementations.

    • Dependency injection frameworks like Unity, Ninject, or Autofac can help manage dependencies.

    • Example: Instead of ...

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Difference between async and await?
  • Ans. 

    Async is used to define a method that can be run asynchronously, while await is used to pause the execution of an async method until a task is complete.

    • Async is used to define a method that can be run asynchronously.

    • Await is used to pause the execution of an async method until a task is complete.

    • Async methods can be called using the await keyword to run them asynchronously.

    • Async and await are used in C# to simplify asy

  • Answered by AI
  • Q2. Async defines, await pauses execution.
  • Ans. 

    async defines, await pauses execution in asynchronous programming in C#.

    • async keyword is used to define a method as asynchronous in C#.

    • await keyword is used to pause the execution of an asynchronous method until the awaited task completes.

    • Asynchronous programming allows non-blocking execution of code, improving performance and responsiveness.

    • Example: async Task<int> GetDataAsync() { await Task.Delay(1000); return

  • Answered by AI

DOT NET Developer Interview Questions Asked at Other Companies

asked in Infosys
Q1. What is the difference between windows application development an ... read more
Q2. What is Trigger,Store procedure, join in sql query and their synt ... read more
asked in Infosys
Q3. What kind of database you used in projects
Q4. How many ways are there to send data to controller from View?
asked in Nagarro
Q5. Can Two Primary keys can be made possible in Sql Table ?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is garbage collection in .NET?
  • Ans. 

    Garbage collection in .NET is an automatic memory management process that helps in reclaiming memory occupied by objects that are no longer in use.

    • Garbage collection is a process where the runtime environment automatically deallocates memory that is no longer needed by the program.

    • It helps in preventing memory leaks and improving the performance of the application.

    • Garbage collection in .NET uses generations to categori...

  • Answered by AI
  • Q2. Automatic memory management system.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is D/W array and ArrayList in .Net?
  • Ans. 

    D/W array is a dynamic array in .Net that can grow or shrink in size. ArrayList is a collection class that can store objects of any type.

    • D/W array is a resizable array that automatically adjusts its size as elements are added or removed.

    • ArrayList is a collection class that can store objects of any type, allowing for flexibility in data storage.

    • Example: D/W array - string[] myArray = new string[5]; ArrayList - ArrayList

  • Answered by AI
  • Q2. Array : Fixed size, type -safe. ArrayList : Dynamic size, not type-safe.

Northcorp Software interview questions for designations

 Senior .NET Developer

 (1)

 Java Developer

 (37)

 Android Developer

 (5)

 Backend Developer

 (4)

 PHP Developer

 (4)

 Software Developer

 (2)

 Javascript Developer

 (2)

 Python Developer

 (1)

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

(2 Questions)

  • Q1. What is the difference between readonly and const in C#?
  • Ans. 

    readonly variables can be assigned a value either at the time of declaration or in the constructor, while const variables must be assigned a value at the time of declaration and cannot be changed.

    • readonly variables can be assigned a value at runtime, while const variables must be assigned a value at compile time

    • readonly variables can be assigned a value in the constructor, while const variables cannot

    • const variables ar...

  • Answered by AI
  • Q2. Const is compile-time constant, while readonly is runtime constant.
  • Ans. 

    const is compile-time constant, while readonly is runtime constant.

    • const values are determined at compile time and cannot be changed during runtime

    • readonly values can be assigned a value either at the declaration or in the constructor and can be changed at runtime

    • const is used for values that are known at compile time, like mathematical constants

    • readonly is used when the value needs to be initialized at runtime, like d

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Tailor your resume to match the job description and highlight relevant skills.

Get interview-ready with Top Northcorp Software Interview Questions

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

(1 Question)

  • Q1. How does Dependency Injection work in .NET core, why it is important?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is CLR in .NET?
  • Ans. 

    CLR stands for Common Language Runtime, it is the virtual machine component of the .NET framework.

    • CLR is responsible for managing the execution of .NET programs.

    • It provides services such as memory management, exception handling, and security.

    • CLR compiles the intermediate language code into native code during execution.

    • It allows for cross-language integration and interoperability within the .NET framework.

    • Examples of la...

  • Answered by AI
  • Q2. Common Language runtime.
  • Ans. 

    Common Language Runtime (CLR) is the virtual machine component of Microsoft's .NET framework, responsible for managing execution of .NET programs.

    • CLR provides various services such as memory management, exception handling, and security.

    • It compiles intermediate language code into machine code during execution.

    • CLR allows for interoperability between different languages in the .NET framework.

    • Example: C# and VB.NET code ca...

  • Answered by AI

Interview questions from similar companies

Interview Preparation Tips

Round: Test
Experience: Apti was quite easy . In Basic CS concepts software engineering is prominent.
Tips: Brush up Software Engineering before written test
Duration: 90 minutes
Total Questions: 50

College Name: NIT BHOPAL

I was interviewed before Aug 2016.

Interview Preparation Tips

Round: General and technical aptitude
Experience: There were questions on basics of programming and general questions on verbal,reasoning and quantitative.
Tips: Time will be short to answer all so keep watch on time

Round: Group Discussion
Experience: They segregated us in to batches and in our team there were 10 members.
Tips: Easy round
Duration: 15 minutes

Round: Telephonic
Experience: They tested my communication skill in that round

College Name: Dhanalakshmi college of engineering

I was interviewed in Apr 2017.

Interview Questionnaire 

2 Questions

  • Q1. Java questions...
  • Q2. Tell me about urself and about us family and all
  • Ans. 

    I am a software developer with a passion for coding and problem-solving. My family is supportive and has always encouraged my career in tech.

    • Experienced software developer

    • Passionate about coding and problem-solving

    • Supportive family that encourages my career in tech

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Easy questions are there
Duration: 1 hour
Total Questions: 90

Round: Group Discussion
Experience: 12 members are there only 9 got selected
Tips: Be confident in urself and specially work in Communication skills
Duration: 15 minutes

Round: Technical Interview
Experience: Asking all the concepts of Java like oops collections threads
Tips: Prepare well on Java

Round: HR Interview
Experience: Everything was Gud but due to my certificate problem I got rejected.. Otherwise everything is good.
Tips: Be confident

College Name: C. V. Raman College of Engineering

Northcorp Software Interview FAQs

How many rounds are there in Northcorp Software DOT NET Developer interview?
Northcorp Software interview process usually has 1 rounds. The most common rounds in the Northcorp Software interview process are Technical.
What are the top questions asked in Northcorp Software DOT NET Developer interview?

Some of the top questions asked at the Northcorp Software DOT NET Developer interview -

  1. What is the difference between readonly and const in ...read more
  2. What is garbage collection in .N...read more
  3. What is D/W array and ArrayList in .N...read more

Tell us how to improve this page.

Northcorp Software DOT NET Developer Interview Process

based on 7 interviews

1 Interview rounds

  • Technical Round
View more

Northcorp Software DOT NET Developer Reviews and Ratings

based on 8 reviews

4.5/5

Rating in categories

4.5

Skill development

4.5

Work-life balance

4.5

Salary

4.5

Job security

4.5

Company culture

4.5

Promotions

4.5

Work satisfaction

Explore 8 Reviews and Ratings
Software Developer
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Devops Engineer
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Data Scientist
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Java Developer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Northcorp Software with

Infosys

3.6
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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