Filter interviews by
General aptitude was held on logical and numerical reasoning
Dsa and oops is must
Gives assignment based on skill set
Top trending discussions
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 Nov 2024. There were 2 interview rounds.
I applied via Campus Placement and was interviewed in May 2023. There were 4 interview rounds.
The aptitude round consists of quantitative, technical questions mainly from java ,oops, ds concepts , some from os . Negative marking was there with 0.25 mark deduction.
It consists of three coding questions and that was pretty much easy . 1st qn is easy and so is the 2nd question . Third question is kind of medium level (but not so tough ) . It was a question related to doubly linked list . 1st and 2nd were array and string questions. We had this in pen and paper format , not in ids .
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 Naukri.com and was interviewed in Mar 2023. There were 2 interview rounds.
OOPs concepts in Java include inheritance, polymorphism, encapsulation, and abstraction.
Inheritance allows a subclass to inherit properties and methods from a superclass.
Polymorphism allows objects to take on multiple forms and behave differently based on their context.
Encapsulation hides the implementation details of an object and only exposes necessary information.
Abstraction allows for the creation of abstract class...
Interfaces define contracts for behavior, while inheritance allows for code reuse and polymorphism.
Interfaces allow for loose coupling and abstraction, enabling multiple implementations of the same behavior.
Inheritance allows for code reuse and extension of existing classes, reducing code duplication.
Polymorphism allows objects of different classes to be treated as if they were of the same class, simplifying code and i
SQL query for joining tables
Use JOIN keyword to combine two or more tables based on a related column
Specify the columns to be selected using SELECT keyword
Use ON keyword to specify the condition for joining the tables
Different types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL OUTER JOIN
Used Java concepts such as inheritance, polymorphism, and exception handling in my project.
Implemented inheritance to create a base class and derived classes with specific functionalities.
Utilized polymorphism to allow objects of different classes to be treated as if they were of the same class.
Implemented exception handling to handle errors and prevent program crashes.
Used interfaces to define a set of methods that a ...
Overloading is having multiple methods with the same name but different parameters. Overriding is having a method in a subclass with the same name and parameters as a method in the superclass.
Overloading is used to provide different ways to call a method with different parameters
Overriding is used to provide a specific implementation of a method in a subclass
Overloading is resolved at compile-time while overriding is r...
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
posted on 29 Nov 2024
I applied via Naukri.com and was interviewed in Oct 2024. There were 2 interview rounds.
The codinds questions were too easy.
Technical Support Engineer
25
salaries
| ₹1.5 L/yr - ₹4.1 L/yr |
Software Engineer
22
salaries
| ₹2 L/yr - ₹4.2 L/yr |
Service Engineer
19
salaries
| ₹1.7 L/yr - ₹3.5 L/yr |
Software Developer
16
salaries
| ₹1.5 L/yr - ₹3.6 L/yr |
Senior Customer Support Engineer
11
salaries
| ₹2.3 L/yr - ₹5.4 L/yr |
Collabera Technologies
Black Knight
Aksentt Tech Services
Pitney Bowes