Upload Button Icon Add office photos

MPRDC

Compare button icon Compare button icon Compare

Filter interviews by

MPRDC DOT NET Developer Interview Questions and Answers

Updated 29 May 2022

11 Interview questions

A DOT NET Developer was asked
Q. What are classes and objects?
Ans. 

A class is a blueprint for creating objects, while an object is an instance of a class.

  • A class defines the properties and methods of an object

  • An object is created from a class using the 'new' keyword

  • Multiple objects can be created from a single class

  • Objects can interact with each other through their methods and properties

A DOT NET Developer was asked
Q. What is the difference between MVC and API?
Ans. 

MVC is a design pattern for creating web applications, while API is a way to expose functionality of an application to other applications.

  • MVC is used for creating web applications that follow the Model-View-Controller pattern

  • API is used for exposing functionality of an application to other applications

  • MVC is focused on creating user interfaces and handling user input

  • API is focused on providing access to data and f...

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. How many ways are there to send data to a controller from a View?
Q3. What is Trigger,Store procedure, join in sql query and their synt ... read more
asked in Infosys
Q4. What are the components of the .NET Framework and their types?
asked in Infosys
Q5. What kind of database have you used in your projects?
A DOT NET Developer was asked
Q. What is abstraction? Provide an example.
Ans. 

Abstraction is the process of hiding complex implementation details and showing only necessary information.

  • Abstraction helps in reducing complexity and increasing efficiency.

  • It allows us to focus on what is important and ignore what is not.

  • For example, a car dashboard is an abstraction as it shows only necessary information like speed, fuel level, etc. and hides the complex workings of the car.

  • Abstraction can be a...

A DOT NET Developer was asked
Q. What is the difference between string and StringBuilder?
Ans. 

String is immutable while StringBuilder is mutable.

  • String is a sequence of characters that cannot be modified once created.

  • StringBuilder is a dynamic object that can be modified without creating a new object.

  • String is more memory efficient for small strings while StringBuilder is more efficient for large strings.

  • String concatenation creates a new string object each time while StringBuilder modifies the existing ob...

A DOT NET Developer was asked
Q. What is overriding in C#? Please provide an example.
Ans. 

Overriding in C# is a feature that allows a derived class to provide a different implementation of a method that is already defined in its base class.

  • Overriding is used to achieve runtime polymorphism.

  • The method in the derived class must have the same name, return type, and parameters as the method in the base class.

  • The 'override' keyword is used to indicate that a method is intended to override a base class metho...

A DOT NET Developer was asked
Q. What is an enum in C#?
Ans. 

Enum is a value type that represents a set of named constants in C#.

  • Enums are used to define a set of named constants that represent a range of values.

  • Enums can be used to improve code readability and maintainability.

  • Enums can be defined with a specific underlying data type, such as int or byte.

  • Enums can have associated values and methods.

  • Example: enum Days { Monday, Tuesday, Wednesday, Thursday, Friday, Saturday,...

A DOT NET Developer was asked
Q. What are collections in C#?
Ans. 

Collection is a group of related objects of the same type that can be accessed and manipulated using methods.

  • Collections are used to store, retrieve, manipulate, and communicate aggregate data.

  • C# provides several built-in collection types such as List, Dictionary, Queue, Stack, etc.

  • Collections can be generic or non-generic, depending on whether they are type-safe or not.

  • Collections can be used to improve performan...

Are these interview questions helpful?
A DOT NET Developer was asked
Q. What is IIS, and describe the application pool?
Ans. 

IIS is a web server software developed by Microsoft. Application pool is a feature in IIS that isolates web applications.

  • IIS stands for Internet Information Services and is used to host websites and web applications.

  • It is a web server software developed by Microsoft.

  • Application pool is a feature in IIS that isolates web applications from each other.

  • Each application pool runs as a separate process and has its own s...

A DOT NET Developer was asked
Q. What is a thread in C#?
Ans. 

Thread is a lightweight unit of a process that executes instructions concurrently with other threads.

  • Threads allow for parallel execution of code.

  • They share the same memory space as the process they belong to.

  • Thread class is used to create and manage threads.

  • Thread synchronization is important to avoid race conditions.

  • Examples of multithreaded applications include web servers and video games.

A DOT NET Developer was asked
Q. What is the difference between Synchronous and Asynchronous?
Ans. 

Synchronous means waiting for a task to complete before moving on, while Asynchronous means not waiting for a task to complete before moving on.

  • Synchronous operations block the execution of code until the task is completed.

  • Asynchronous operations allow the code to continue executing while the task is being completed.

  • Synchronous operations are easier to understand and debug, but can cause performance issues.

  • Asynchr...

MPRDC DOT NET Developer Interview Experiences

1 interview found

DOT NET Developer Interview Questions & Answers

user image Shailendra Tiwari

posted on 29 May 2022

Round 1 - Technical 

(12 Questions)

  • Q1. What is difference between string and StringBuilder
  • Ans. 

    String is immutable while StringBuilder is mutable.

    • String is a sequence of characters that cannot be modified once created.

    • StringBuilder is a dynamic object that can be modified without creating a new object.

    • String is more memory efficient for small strings while StringBuilder is more efficient for large strings.

    • String concatenation creates a new string object each time while StringBuilder modifies the existing object.

    • ...

  • Answered by AI
  • Q2. What is the partial
  • Ans. 

    Partial is a keyword in C# used to define partial classes, methods, and structures.

    • Partial classes allow splitting a class definition into multiple files.

    • Partial methods allow defining a method in one part of the class and implementing it in another part.

    • Partial structures allow splitting a structure definition into multiple files.

    • Partial keyword is also used with interfaces and namespaces.

  • Answered by AI
  • Q3. What is the thread in c#
  • Ans. 

    Thread is a lightweight unit of a process that executes instructions concurrently with other threads.

    • Threads allow for parallel execution of code.

    • They share the same memory space as the process they belong to.

    • Thread class is used to create and manage threads.

    • Thread synchronization is important to avoid race conditions.

    • Examples of multithreaded applications include web servers and video games.

  • Answered by AI
  • Q4. What is the Difference between Synchronous and Asynchronous
  • Ans. 

    Synchronous means waiting for a task to complete before moving on, while Asynchronous means not waiting for a task to complete before moving on.

    • Synchronous operations block the execution of code until the task is completed.

    • Asynchronous operations allow the code to continue executing while the task is being completed.

    • Synchronous operations are easier to understand and debug, but can cause performance issues.

    • Asynchronous...

  • Answered by AI
  • Q5. What is tha enum in c#
  • Ans. 

    Enum is a value type that represents a set of named constants in C#.

    • Enums are used to define a set of named constants that represent a range of values.

    • Enums can be used to improve code readability and maintainability.

    • Enums can be defined with a specific underlying data type, such as int or byte.

    • Enums can have associated values and methods.

    • Example: enum Days { Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sund...

  • Answered by AI
  • Q6. What is the collection in c#
  • Ans. 

    Collection is a group of related objects of the same type that can be accessed and manipulated using methods.

    • Collections are used to store, retrieve, manipulate, and communicate aggregate data.

    • C# provides several built-in collection types such as List, Dictionary, Queue, Stack, etc.

    • Collections can be generic or non-generic, depending on whether they are type-safe or not.

    • Collections can be used to improve performance, s...

  • Answered by AI
  • Q7. What is tha iis and describ tha application pool
  • Ans. 

    IIS is a web server software developed by Microsoft. Application pool is a feature in IIS that isolates web applications.

    • IIS stands for Internet Information Services and is used to host websites and web applications.

    • It is a web server software developed by Microsoft.

    • Application pool is a feature in IIS that isolates web applications from each other.

    • Each application pool runs as a separate process and has its own set of...

  • Answered by AI
  • Q8. What is tha overriding in c# with example
  • Ans. 

    Overriding in C# is a feature that allows a derived class to provide a different implementation of a method that is already defined in its base class.

    • Overriding is used to achieve runtime polymorphism.

    • The method in the derived class must have the same name, return type, and parameters as the method in the base class.

    • The 'override' keyword is used to indicate that a method is intended to override a base class method.

    • The...

  • Answered by AI
  • Q9. What is tha class and object
  • Ans. 

    A class is a blueprint for creating objects, while an object is an instance of a class.

    • A class defines the properties and methods of an object

    • An object is created from a class using the 'new' keyword

    • Multiple objects can be created from a single class

    • Objects can interact with each other through their methods and properties

  • Answered by AI
  • Q10. What is tha abstraction with example
  • Ans. 

    Abstraction is the process of hiding complex implementation details and showing only necessary information.

    • Abstraction helps in reducing complexity and increasing efficiency.

    • It allows us to focus on what is important and ignore what is not.

    • For example, a car dashboard is an abstraction as it shows only necessary information like speed, fuel level, etc. and hides the complex workings of the car.

    • Abstraction can be achiev...

  • Answered by AI
  • Q11. What tha difference between mvc and api
  • Ans. 

    MVC is a design pattern for creating web applications, while API is a way to expose functionality of an application to other applications.

    • MVC is used for creating web applications that follow the Model-View-Controller pattern

    • API is used for exposing functionality of an application to other applications

    • MVC is focused on creating user interfaces and handling user input

    • API is focused on providing access to data and functi...

  • Answered by AI
  • Q12. What is tha difference between .net framework and .net core framework
  • Ans. 

    The .NET Framework is a Windows-only framework, while .NET Core is cross-platform and open-source.

    • The .NET Framework is a Windows-only framework, while .NET Core is cross-platform and open-source.

    • .NET Framework is a mature framework with a large number of libraries, while .NET Core is a lightweight framework with fewer libraries.

    • .NET Framework requires Windows to run, while .NET Core can run on Windows, Linux, and macO...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good communication and skills then you are selected

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about MPRDC?
Ask anonymously on communities.

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
  • Q1. Data base used in sql server
  • Ans. 

    SQL Server uses databases to store, manage, and retrieve structured data efficiently.

    • Databases in SQL Server can be of different types: user databases and system databases.

    • User databases are created by users for specific applications, e.g., 'SalesDB'.

    • System databases include 'master', 'model', 'msdb', and 'tempdb', essential for SQL Server operations.

    • Each database can contain multiple tables, views, stored procedures, ...

  • Answered by AI
  • Q2. Muv core latest technology used in developing and features used.
  • Ans. 

    MUV Core utilizes advanced technologies like microservices, cloud computing, and AI for efficient software development.

    • Microservices architecture for modular development, allowing independent deployment and scaling.

    • Cloud computing for enhanced scalability and flexibility, using platforms like AWS or Azure.

    • Integration of AI and machine learning for data analysis and predictive modeling.

    • Continuous integration and deploym...

  • 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. How many ways are there to send data to a controller from a View?
Q3. What is Trigger,Store procedure, join in sql query and their synt ... read more
asked in Infosys
Q4. What are the components of the .NET Framework and their types?
asked in Infosys
Q5. What kind of database have you used in your projects?

Interview Questionnaire 

1 Question

  • Q1. Why we use java

Interview Preparation Tips

Interview preparation tips for other job seekers - This interview was a technical one but was majorly a stress test.

Skills evaluated in this interview

I applied via Company Website and was interviewed before Jun 2020. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. What is the web services
  • Q2. Database queries
  • Q3. Introduction
  • Q4. Details of project

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic questions

Skills evaluated in this interview

I applied via Referral and was interviewed before Aug 2021. 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 

(2 Questions)

  • Q1. Why do you want to the Internship in the UN?
  • Q2. Walk us through your CV.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be natural. Offer behavioural answers to questions.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
Less than 2 weeks
Result
-

I applied via Job Portal and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

What is DBa role do when they find out issue on tablepsace

Round 2 - Technical 

(2 Questions)

  • Q1. What is oracle database?
  • Q2. Expain oracle database architecture?
  • Ans. 

    Oracle database architecture is a multi-tiered system with components like client, server, and storage.

    • Consists of physical and logical structures

    • Includes processes like SQL processing, memory management, and I/O management

    • Client communicates with server through SQL*Net

    • Server manages data storage and retrieval

    • Storage includes data files, control files, and redo log files

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Group Discussion 

Projects done yet, Coding Algo

Round 2 - One-on-one 

(1 Question)

  • Q1. DSA ALGO IN C++
  • Ans. 

    Data Structures and Algorithms in C++

    • Learn basic data structures like arrays, linked lists, stacks, queues, trees, and graphs

    • Understand sorting and searching algorithms such as bubble sort, quick sort, binary search, etc.

    • Practice solving coding problems on platforms like LeetCode or HackerRank

  • Answered by AI

Skills evaluated in this interview

Are these interview questions helpful?

Intern Interview Questions & Answers

BECIL user image Anonymous

posted on 6 Mar 2024

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

Basics Maths and basics reasoning

Interview Preparation Tips

Interview preparation tips for other job seekers - Do study the basics
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - HR 

(3 Questions)

  • Q1. What is your next goal in your career?
  • Ans. 

    My next career goal is to gain hands-on experience in my field, develop my skills, and contribute meaningfully to my team.

    • I aim to secure a full-time position after my internship, where I can apply my knowledge and skills.

    • I plan to pursue certifications relevant to my field, such as a project management certification to enhance my capabilities.

    • I want to take on leadership roles in projects to develop my teamwork and co...

  • Answered by AI
  • Q2. Why do you want to join the UNCCD?
  • Ans. 

    I want to join the UNCCD to contribute to global efforts in combating desertification and promoting sustainable land management.

    • Passion for environmental sustainability: I believe in protecting ecosystems and biodiversity.

    • Desire to work on global issues: The UNCCD addresses critical challenges like land degradation and climate change.

    • Interest in policy-making: I want to be involved in developing strategies that promote...

  • Answered by AI
  • Q3. What do you think your tasks are?

Interview Preparation Tips

Interview preparation tips for other job seekers - Make as many connections as you can when you step in the UN
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Jul 2022. There were 3 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 - One-on-one 

(2 Questions)

  • Q1. SQL Basics Questions and PowerBI Intermediate Questions
  • Q2. SQL- Joins, Where, Groupby, Having PowerBI- Loading Methods, Transformation
Round 3 - HR 

(3 Questions)

  • Q1. Basic of HR round only
  • Q2. Tell me about ur self, Previous Working Experience and Excepted Salary
  • Q3. Conditions: Completetly Work from Office and Ready to Travels 100( They will provide reimbursed)

MPRDC Interview FAQs

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

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

  1. What is tha difference between .net framework and .net core framew...read more
  2. What is the Difference between Synchronous and Asynchron...read more
  3. What is tha overriding in c# with exam...read more

Tell us how to improve this page.

Assistant General Manager
4 salaries
unlock blur

₹12 L/yr - ₹12 L/yr

Chartered Accountant
3 salaries
unlock blur

₹18 L/yr - ₹18 L/yr

Computer Operator
3 salaries
unlock blur

₹1.2 L/yr - ₹1.8 L/yr

Explore more salaries
Compare MPRDC with

Efs Facilities Services

3.8
Compare

NBCC

4.2
Compare

Government of West Bengal

3.4
Compare

Ministry of Home Affairs

4.2
Compare
write
Share an Interview