Filter interviews by
I was interviewed in Nov 2024.
Middleware in .NET can be implemented using the 'UseMiddleware' method in the Startup class.
Use the 'UseMiddleware' method in the Configure method of the Startup class to add middleware in the request pipeline.
Create a custom middleware class that implements the 'IMiddleware' interface.
Register the custom middleware class in the ConfigureServices method of the Startup class.
Common exceptions encountered in middleware include timeout errors, connection errors, and invalid input errors.
Timeout errors occur when a request takes too long to process.
Connection errors happen when there is a problem connecting to a database or external service.
Invalid input errors occur when the data provided does not meet the expected format or criteria.
Change detection in Angular is the process of detecting changes in the application state and updating the view accordingly.
Angular uses change detection to keep the UI in sync with the application state.
It compares the current state of the application with the previous state to determine what has changed.
If a change is detected, Angular updates the view to reflect the new state.
Change detection can be triggered by user...
Subject in Angular is used for multicasting observables to multiple subscribers.
Subject is a type of Observable that allows values to be multicasted to multiple Observers.
It acts as both an Observable and an Observer.
Subjects are hot Observables, meaning they start emitting values immediately upon creation.
Example: const subject = new Subject(); subject.next(1); subject.subscribe(value => console.log(value)); // Out
posted on 29 Nov 2024
I applied via Naukri.com and was interviewed in Oct 2024. There were 2 interview rounds.
We can easily pass the test cases
Interface in Java is a reference type, similar to a class, that can contain only constants, method signatures, default methods, static methods, and nested types.
Interfaces are used to define a contract for classes that implement them.
Classes can implement multiple interfaces in Java.
Interfaces cannot have instance fields, constructors, or non-static methods.
Example: interface Shape { void draw(); }
Example: class Circle...
Abstraction is a concept in object-oriented programming where only relevant data is shown to the user while hiding unnecessary details.
Abstraction helps in simplifying complex systems by only showing essential features.
It allows for creating abstract classes and interfaces in Java.
Example: In a car, the driver only needs to know how to drive it without understanding the internal workings of the engine.
Exceptions are unexpected events that disrupt the normal flow of a program. Exception handling is the process of dealing with these events.
Exceptions are objects that represent an abnormal condition or error in a program.
Exception handling allows developers to gracefully handle errors and prevent the program from crashing.
Java provides try-catch blocks for handling exceptions. The try block contains the code that may t...
Arrays are a collection of elements of the same data type, while Strings are a sequence of characters.
Arrays can store multiple values of the same data type, accessed by index.
Strings are immutable sequences of characters, can be manipulated using various methods.
Example: int[] numbers = {1, 2, 3}; String name = "John";
I applied via Campus Placement and was interviewed in Nov 2024. There was 1 interview round.
I applied via Recruitment Consulltant and was interviewed in Aug 2024. There were 2 interview rounds.
Acl related questions
I applied via LinkedIn and was interviewed before Jul 2023. There was 1 interview round.
React life cycle refers to the series of methods that are invoked in the process of creating, updating, and destroying components.
Mounting phase: constructor, render, componentDidMount
Updating phase: render, componentDidUpdate
Unmounting phase: componentWillUnmount
An online calculator app that allows users to perform basic arithmetic operations.
Include buttons for numbers 0-9 and operators like +, -, *, /
Implement functionality for clearing input, calculating result, and displaying history
Consider adding advanced features like memory functions or scientific calculator mode
I applied via Campus Placement and was interviewed in Dec 2022. There were 2 interview rounds.
posted on 9 Nov 2022
I applied via Naukri.com
OOPS concepts of Java include encapsulation, inheritance, polymorphism, and abstraction.
Encapsulation: bundling data and methods within a class
Inheritance: creating new classes from existing ones
Polymorphism: using a single interface to represent multiple classes
Abstraction: hiding implementation details and showing only necessary information
I applied via Company Website and was interviewed in Jul 2022. There were 4 interview rounds.
JUST BASIC APPTITUDE , IF YOU ARE GOOD WITH BASICS THEN ITS GOOD
YOU SHJOULD KNOW INTERMEDIATE CODING
Dispose and finalize are methods used for releasing resources in .NET.
Dispose is used to release unmanaged resources immediately.
Finalize is used to release managed resources when the garbage collector runs.
Dispose can be called manually or through the using statement.
Finalize is called automatically by the garbage collector.
Dispose is implemented by IDisposable interface.
Finalize is implemented by Object class.
OOPs concepts are the principles of Object-Oriented Programming that help in designing and implementing software solutions.
Encapsulation - binding data and functions together
Inheritance - creating new classes from existing ones
Polymorphism - ability of objects to take on multiple forms
Abstraction - hiding implementation details
Objects - instances of classes that encapsulate data and behavior
Inheritance is a mechanism in OOP where a new class is derived from an existing class.
It allows for code reusability and promotes a hierarchical structure.
It can lead to tight coupling and make the code harder to maintain.
It can also result in the creation of unnecessary classes and increase complexity.
Example: A Car class can inherit properties and methods from a Vehicle class.
Example: A Square class can inherit prope
Explicit interface is a way to implement multiple interfaces with same method names.
Explicit interface is used to avoid naming conflicts when implementing multiple interfaces.
It is implemented by prefixing the interface name to the method name.
It is useful when implementing COM interfaces in .NET.
Example: void IInterface1.Method() and void IInterface2.Method()
Interface defines only method signatures while abstract class can have method implementations.
Interfaces can be implemented by multiple classes while abstract classes can only be extended by one class.
Interfaces are used for achieving multiple inheritance in Java while abstract classes are used for single inheritance.
Interfaces cannot have constructors while abstract classes can have constructors.
An example of an inter...
Startup method in .NET Core is used to configure the application's services and middleware.
Startup method is defined in Startup.cs file.
It includes ConfigureServices and Configure methods.
ConfigureServices is used to add services to the dependency injection container.
Configure is used to configure the HTTP request pipeline.
Example: public void ConfigureServices(IServiceCollection services) { services.AddMvc(); }
Example...
HTTP verbs are used to indicate the type of action being performed on a resource.
HTTP verbs include GET, POST, PUT, DELETE, PATCH, HEAD, OPTIONS
GET is used to retrieve data from a server
POST is used to submit data to a server
PUT is used to update an existing resource on a server
DELETE is used to delete a resource from a server
PATCH is used to partially update a resource on a server
HEAD is used to retrieve only the head...
Project architecture refers to the overall design and structure of a software project.
It includes the organization of components and modules
Defines the relationships between them
Specifies the technologies and tools used
Determines the overall performance and scalability
Examples include MVC, microservices, and client-server architecture
based on 1 review
Rating in categories
Senior Consultant
122
salaries
| ₹7 L/yr - ₹21.5 L/yr |
Consultant
88
salaries
| ₹4.4 L/yr - ₹12.3 L/yr |
Associate Consultant
64
salaries
| ₹3.8 L/yr - ₹6 L/yr |
Principal Consultant
53
salaries
| ₹15 L/yr - ₹28 L/yr |
Architect
15
salaries
| ₹25 L/yr - ₹50 L/yr |
Infosys
TCS
Wipro
HCLTech