Filter interviews by
Dependency injection in .NET Core is a design pattern that promotes loose coupling and enhances testability by injecting dependencies.
Inversion of Control: Dependency injection is a form of Inversion of Control (IoC) where the control of object creation is transferred to a container.
Service Registration: Services are registered in the Startup class using methods like AddSingleton, AddScoped, or AddTransient, defin...
Securing a web API involves authentication, authorization, encryption, and input validation to protect data and resources.
Use HTTPS to encrypt data in transit, preventing eavesdropping.
Implement authentication mechanisms like OAuth 2.0 or JWT for user verification.
Apply role-based access control (RBAC) to restrict access to resources.
Validate and sanitize inputs to prevent SQL injection and XSS attacks.
Use API key...
Returning a view from an API controller is not standard practice in ASP.NET MVC, as API controllers are meant for data responses.
Separation of Concerns: API controllers are designed to return data (JSON/XML) rather than views, promoting a clear separation between data and presentation.
Use of MVC Controllers: Instead of API controllers, use standard MVC controllers to return views, which are intended for rendering ...
Abstraction hides complexity by exposing only essential features, while encapsulation bundles data and methods in a single unit.
Abstraction focuses on the 'what' of an object, like a car's interface (steering wheel, pedals) without revealing the internal mechanics.
Encapsulation is about bundling data (attributes) and methods (functions) that operate on the data into a single unit, like a class in OOP.
Example of Ab...
Four OOP principles are encapsulation, inheritance, polymorphism, and abstraction.
Encapsulation: Bundling data and methods that operate on the data into a single unit.
Inheritance: Allows a class to inherit properties and behavior from another class.
Polymorphism: Ability of different classes to be treated as instances of a common superclass.
Abstraction: Hides the complex implementation details and only shows the ne...
Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.
Abstract class can have constructors, fields, and non-abstract methods.
Interface can only have abstract methods and constants.
A class can implement multiple interfaces but can only inherit from one abstract class.
Abstract classes are used to provide a common base for multiple classes, while interfaces def...
A mirror container is a duplicate container that reflects the changes made to the original container.
Mirror containers are used for redundancy and failover purposes.
Changes made to the original container are automatically replicated to the mirror container.
Mirror containers can be used in high availability setups to ensure continuous operation.
Example: Docker Swarm supports mirror containers for high availability.
Middleware is software that acts as a bridge between different applications or components, allowing them to communicate and work together.
Middleware helps in integrating different systems and applications
It provides a layer of abstraction for communication between components
Examples include message brokers like RabbitMQ, web servers like Apache Tomcat, and API gateways like Kong
OOPS concepts are the fundamental principles of Object-Oriented Programming.
Abstraction
Encapsulation
Inheritance
Polymorphism
.NET Framework is a software framework developed by Microsoft that runs primarily on Microsoft Windows.
It provides a large library of pre-coded solutions to common programming problems.
It supports multiple programming languages such as C#, VB.NET, and F#.
It includes a runtime environment, a set of libraries, and a compiler.
It allows developers to create applications for desktop, web, mobile, gaming, and IoT platfo...
I applied via Approached by Company
posted on 24 Dec 2024
I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 3 interview rounds.
Four OOP principles are encapsulation, inheritance, polymorphism, and abstraction.
Encapsulation: Bundling data and methods that operate on the data into a single unit.
Inheritance: Allows a class to inherit properties and behavior from another class.
Polymorphism: Ability of different classes to be treated as instances of a common superclass.
Abstraction: Hides the complex implementation details and only shows the necessa...
Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.
Abstract class can have constructors, fields, and non-abstract methods.
Interface can only have abstract methods and constants.
A class can implement multiple interfaces but can only inherit from one abstract class.
Abstract classes are used to provide a common base for multiple classes, while interfaces define a...
Show user list with retrofit and using mvvm design patterns and jetpack library data binding
A mirror container is a duplicate container that reflects the changes made to the original container.
Mirror containers are used for redundancy and failover purposes.
Changes made to the original container are automatically replicated to the mirror container.
Mirror containers can be used in high availability setups to ensure continuous operation.
Example: Docker Swarm supports mirror containers for high availability.
Middleware is software that acts as a bridge between different applications or components, allowing them to communicate and work together.
Middleware helps in integrating different systems and applications
It provides a layer of abstraction for communication between components
Examples include message brokers like RabbitMQ, web servers like Apache Tomcat, and API gateways like Kong
I appeared for an interview in Mar 2025, where I was asked the following questions.
Dependency injection in .NET Core is a design pattern that promotes loose coupling and enhances testability by injecting dependencies.
Inversion of Control: Dependency injection is a form of Inversion of Control (IoC) where the control of object creation is transferred to a container.
Service Registration: Services are registered in the Startup class using methods like AddSingleton, AddScoped, or AddTransient, defining t...
Returning a view from an API controller is not standard practice in ASP.NET MVC, as API controllers are meant for data responses.
Separation of Concerns: API controllers are designed to return data (JSON/XML) rather than views, promoting a clear separation between data and presentation.
Use of MVC Controllers: Instead of API controllers, use standard MVC controllers to return views, which are intended for rendering HTML.
...
Securing a web API involves authentication, authorization, encryption, and input validation to protect data and resources.
Use HTTPS to encrypt data in transit, preventing eavesdropping.
Implement authentication mechanisms like OAuth 2.0 or JWT for user verification.
Apply role-based access control (RBAC) to restrict access to resources.
Validate and sanitize inputs to prevent SQL injection and XSS attacks.
Use API keys to ...
Abstraction hides complexity by exposing only essential features, while encapsulation bundles data and methods in a single unit.
Abstraction focuses on the 'what' of an object, like a car's interface (steering wheel, pedals) without revealing the internal mechanics.
Encapsulation is about bundling data (attributes) and methods (functions) that operate on the data into a single unit, like a class in OOP.
Example of Abstrac...
I applied via Approached by Company and was interviewed before May 2021. There were 2 interview rounds.
Oops
MVC
Ef
Dapper
Html
I applied via Naukri.com and was interviewed before Sep 2023. There were 2 interview rounds.
Experienced project coordinator with a background in managing multiple projects simultaneously.
Managed cross-functional teams to successfully deliver projects on time and within budget
Skilled in creating project plans, tracking progress, and resolving issues as they arise
Strong communication and organizational skills
Proficient in using project management tools such as Asana and Trello
Agile is a project management methodology focused on flexibility and collaboration. Scrum is a specific framework within Agile.
Agile emphasizes adaptability and responding to change over following a strict plan
Scrum is a framework within Agile that divides work into short iterations called sprints
Scrum involves daily stand-up meetings, sprint planning, sprint review, and sprint retrospective
Scrum roles include Product ...
I appeared for an interview before Apr 2024, where I was asked the following questions.
Dependency Injection (DI) is a design pattern that allows for better code modularity and testing by injecting dependencies into classes.
Promotes loose coupling between classes, making them easier to manage.
Facilitates unit testing by allowing mock dependencies to be injected.
Commonly used in frameworks like Spring (Java) and Angular (JavaScript).
Example: Instead of a class creating its own dependencies, they are provid...
I applied via LinkedIn and was interviewed in Sep 2021. There were 3 interview rounds.
MVC is a software design pattern that separates an application into three interconnected components: Model, View, and Controller.
Model represents the data and business logic
View displays the data to the user
Controller handles user input and updates the model and view accordingly
MVC promotes separation of concerns and modularity
Examples: Ruby on Rails, ASP.NET MVC, AngularJS
I am currently working on a web application for a retail company.
Using React for the front-end
Node.js and Express for the back-end
MongoDB for the database
Implementing features such as user authentication and product search
Minification & Bundling are introduced in MVC to improve web application performance.
Minification reduces the size of JavaScript and CSS files by removing unnecessary characters like white spaces, comments, etc.
Bundling combines multiple JavaScript and CSS files into a single file to reduce the number of HTTP requests.
This improves web application performance by reducing the load time of web pages.
MVC provides built-in...
The latest technology in the market is Artificial Intelligence (AI).
AI is being used in various industries such as healthcare, finance, and retail.
Machine learning and deep learning are subsets of AI that are gaining popularity.
Natural Language Processing (NLP) is another area of AI that is being explored.
AI is also being used for automation and improving efficiency in businesses.
AI-powered chatbots are becoming more c...
I applied via Approached by Company and was interviewed in Apr 2022. There was 1 interview round.
Oops
MVC
Ef
Dapper
Html
I applied via LinkedIn and was interviewed before May 2022. There were 2 interview rounds.
.NET Framework is a software framework developed by Microsoft that runs primarily on Microsoft Windows.
It provides a large library of pre-coded solutions to common programming problems.
It supports multiple programming languages such as C#, VB.NET, and F#.
It includes a runtime environment, a set of libraries, and a compiler.
It allows developers to create applications for desktop, web, mobile, gaming, and IoT platforms.
E...
OOPS concepts are the fundamental principles of Object-Oriented Programming.
Abstraction
Encapsulation
Inheritance
Polymorphism
Top trending discussions
The duration of Celusion Technologies interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 7 interview experiences
Difficulty level
Duration
based on 63 reviews
Rating in categories
Mumbai,
Mumbai Suburban
+24-5 Yrs
₹ 7-13 LPA
Mumbai,
Mumbai Suburban
+20-2 Yrs
₹ 1-3.3 LPA
Software Developer
105
salaries
| ₹2.2 L/yr - ₹9.5 L/yr |
Quality Analyst
43
salaries
| ₹2.9 L/yr - ₹8 L/yr |
Business Analyst
21
salaries
| ₹4.2 L/yr - ₹12 L/yr |
Senior Software Developer
13
salaries
| ₹8 L/yr - ₹14 L/yr |
Senior Software Engineer
7
salaries
| ₹8.6 L/yr - ₹15 L/yr |
Zidio Development
Northcorp Software
Accel Frontline
Elentec Power India (EPI) Pvt. Ltd.