full stack .net developer
10+ full stack .net developer Interview Questions and Answers

Asked in iTech India

Q. What is OOPS, Basis of programming, Front end and back end and Database
OOPS is a programming paradigm based on objects, front-end refers to the user interface, back-end refers to server-side programming, and database is where data is stored.
OOPS stands for Object-Oriented Programming System
Front-end refers to the part of the application that the user interacts with, such as web pages or mobile apps
Back-end refers to the server-side programming that powers the application, such as APIs or databases
Database is where data is stored and retrieved, s...read more

Asked in R Systems International

Q. What is the Singleton design pattern and how do you implement it?
Singleton design pattern ensures a class has only one instance and provides a global point of access to it.
Ensure a class has only one instance by providing a global access point to it
Use a private constructor to restrict instantiation of the class
Provide a static method to access the instance of the class
full stack .net developer Interview Questions and Answers for Freshers

Asked in HCLTech

Q. What is an extension method, and can you provide an example?
Extension methods allow adding new methods to existing types without modifying the original type.
Extension methods must be defined in a static class.
The first parameter of an extension method specifies the type being extended and is preceded by the 'this' keyword.
Extension methods can be called as if they were instance methods of the extended type.

Asked in HCLTech

Q. How do you send data from a child component to a parent component?
Use event emitters or callback functions to send data from child to parent component in Angular
Use @Output decorator in Angular to create custom events in child component and emit data to parent component
Pass a function as a prop from parent to child component, which child can call to send data back to parent
Use services to share data between components in Angular
Asked in Suja Associates

Q. What is data abstraction in OOP?
Data abstraction in OOPs is the concept of hiding the implementation details of a class and only showing the necessary information to the outside world.
Data abstraction allows for creating abstract classes and interfaces to define the structure of a class without revealing the implementation details.
It helps in reducing complexity by only showing the essential features of an object.
By using abstract classes and interfaces, data abstraction enables code reusability and modular...read more

Asked in Manhattan Associates

Q. What is the use of the new keyword?
The new keyword is used in C# to create an instance of a class or structure.
Used to instantiate objects in C#
Can be used with constructors to initialize object properties
Helps in creating instances of classes or structures
full stack .net developer Jobs




Asked in Manhattan Associates

Q. What is dependency injection in Angular?
Dependency injection in Angular is a design pattern where components are given their dependencies rather than creating them.
Allows for easier testing and maintenance of code
Promotes reusability and modularity
Reduces tight coupling between components
Example: Injecting a service into a component constructor

Asked in TCS

Q. What is the difference between an interface and an abstract class?
Interface defines only method signatures while abstract class can have method implementations.
Interface cannot have method implementations, only method signatures.
Abstract class can have method implementations and variables.
A class can implement multiple interfaces but can inherit only one abstract class.
Interfaces are used for defining contracts while abstract classes are used for code reusability.
Share interview questions and help millions of jobseekers 🌟

Asked in HCLTech

Q. What's is css What's is css full form
CSS stands for Cascading Style Sheets. It is a styling language used to control the look and feel of a website.
CSS is used to style the layout and design of web pages.
It allows for the separation of content from presentation.
CSS can be applied inline, internally within an HTML document, or externally in a separate file.
Selectors are used to target specific elements on a webpage for styling.
CSS properties include color, font size, margin, padding, and more.

Asked in Infosys

Q. What is a static method?
A static method is a method that belongs to the class itself, rather than to instances of the class.
Static methods can be called directly on the class without needing an instance of the class.
They are commonly used for utility methods that do not require access to instance variables.
Static methods cannot access non-static members of the class.
Example: Math.Max() is a static method in the Math class that returns the larger of two numbers.

Asked in Manhattan Associates

Q. What is pipes in Angular
Pipes in Angular are used for transforming data in templates.
Pipes are used to format data before displaying it in the view
They can be used for currency, date, uppercase/lowercase transformations, etc.
Example: {{ birthday | date:'MM/dd/yyyy' }}

Asked in HCLTech

Q. What's is html What's is html full form
HTML is a markup language used for creating and structuring web pages.
HTML stands for HyperText Markup Language
It is used to create the structure and content of web pages
HTML elements are surrounded by angle brackets, like <html>
Attributes can be added to HTML elements to provide additional information

Asked in iTech India

Q. Explain about SDLC, Arrays,RDBMS
SDLC is a process followed for software development. Arrays are data structures used to store multiple values. RDBMS is a type of database management system.
SDLC stands for Software Development Life Cycle and includes phases like planning, designing, coding, testing, and maintenance.
Arrays are used to store multiple values of the same data type in a single variable. Example: int[] numbers = {1, 2, 3, 4, 5};
RDBMS stands for Relational Database Management System and is used to ...read more

Asked in Manhattan Associates

Q. What are two uses of the 'using' keyword?
The 'using' keyword is used in C# to ensure that an object is disposed of properly after use.
Automatically disposes of resources when they are no longer needed
Simplifies code by handling cleanup tasks
Example: using (var file = new FileStream("example.txt", FileMode.Open)) { // code here }

Asked in Home Credit Finance

Q. What is a collection?
A collection is a group of related objects or data items that are stored together.
Collections in .NET include List, Dictionary, Queue, Stack, etc.
Collections allow for easy manipulation and organization of data.
Example: List<string> names = new List<string>();

Asked in HCLTech

Q. What's is SQL What's is MySQL
SQL is a standard language for managing relational databases. MySQL is an open-source relational database management system.
SQL stands for Structured Query Language
SQL is used to communicate with databases to perform tasks like querying data, updating data, and creating databases
MySQL is a popular open-source relational database management system
MySQL is often used in web development for storing and retrieving data

Asked in Accenture

Q. What is an Interface?
An interface in .NET is a reference type that defines a contract for classes to implement certain methods and properties.
Interfaces contain method signatures but no implementation.
Classes can implement multiple interfaces.
Interfaces are used to achieve abstraction and multiple inheritance in C#.
Example: public interface IShape { void Draw(); }

Asked in LTIMindtree

Q. What is overriding?
Overriding is a concept in object-oriented programming where a subclass provides a specific implementation of a method that is already provided by its parent class.
Occurs in inheritance when a subclass provides a specific implementation for a method that is already defined in its parent class
The method in the subclass must have the same name, return type, and parameters as the method in the parent class
Allows for polymorphism, where a subclass can be treated as an instance of...read more
Asked in WebAshlar

Q. What are the lifecycle hooks in Angular?
Life cycle hooks in Angular are functions that are called at specific points in the component's life cycle.
ngOnChanges: Called when an input property changes
ngOnInit: Called once the component is initialized
ngOnDestroy: Called before the component is destroyed
Interview Questions of Similar Designations
Interview Experiences of Popular Companies








Reviews
Interviews
Salaries
Users

