Filter interviews by
I was interviewed before Jan 2016.
The page life cycle of ASP.Net is a series of events that occur when a web page is requested and processed by the server.
The page life cycle consists of several stages such as initialization, loading, postback handling, rendering, and unloading.
During the initialization stage, the page and its controls are created and their properties are set.
In the loading stage, the page retrieves and processes the user input and upd...
The core components of .Net Framework include Common Language Runtime (CLR), Framework Class Library (FCL), and ASP.NET.
Common Language Runtime (CLR) provides the runtime environment for executing .NET applications.
Framework Class Library (FCL) is a collection of reusable classes, interfaces, and value types that provide access to system functionality.
ASP.NET is a web application framework for building dynamic web page
GC stands for Garbage Collection. It is an automatic memory management process in programming languages.
GC is responsible for reclaiming memory that is no longer in use by the program.
It identifies and frees up memory occupied by objects that are no longer reachable.
GC has different algorithms like Mark and Sweep, Copying, and Generational.
The life cycle of an object involves creation, usage, and eventual garbage colle...
Yes
Use AJAX or WebSocket to send file data to the server
Track the progress of the file upload using the 'progress' event
Calculate the percentage of completion based on the total file size and the amount uploaded
Array is a fixed-size data structure while ArrayList is a dynamic-size data structure in Java.
Array has a fixed length, while ArrayList can dynamically resize.
Array can store both primitive and object types, while ArrayList can only store object types.
Array uses square brackets [] for declaration, while ArrayList uses angle brackets <>.
Array is more memory efficient than ArrayList.
Array provides direct access to elemen...
Generics should be used when you want to create reusable code that can work with different types.
Generics allow you to write code that can work with different types without sacrificing type safety.
They provide compile-time type checking, reducing the chances of runtime errors.
Generics promote code reusability and maintainability by allowing you to write generic algorithms and data structures.
Using generic classes in .N...
Abstract class and Interface are both used for abstraction, but with some differences.
Abstract class can have both abstract and non-abstract methods, while Interface can only have abstract methods.
A class can implement multiple interfaces, but can only inherit from one abstract class.
Abstract class can have instance variables, while Interface cannot.
Abstract class provides partial implementation, while Interface provid...
SOLID is a set of principles for designing software that is easy to maintain, understand, and extend.
S - Single Responsibility Principle: A class should have only one reason to change.
O - Open-Closed Principle: Software entities should be open for extension but closed for modification.
L - Liskov Substitution Principle: Subtypes must be substitutable for their base types.
I - Interface Segregation Principle: Clients shou...
I have used the Observer design pattern in my current project.
Observer pattern is used to establish a one-to-many dependency between objects.
It allows multiple objects to be notified and updated automatically when a subject object changes its state.
In my project, we implemented the Observer pattern to notify various components of the system about changes in data.
For example, when a user updates their profile informatio...
Singleton class ensures only one instance is created, while static class allows multiple instances.
Singleton class restricts instantiation of a class to a single object.
It provides a global point of access to the instance.
It is useful when only one instance of a class is required throughout the system.
Singletons can be lazy-loaded or eagerly-loaded.
Static classes allow multiple instances and are not suitable for mainta...
Yes, I have worked on Entity Framework.
I have used Entity Framework version 6.0 in my previous project.
I have experience in designing and implementing database models using Entity Framework.
I have used LINQ to query and manipulate data in Entity Framework.
I have also worked with migrations and code-first approach in Entity Framework.
T4 templates are used to generate code or text files based on a template and input data.
T4 templates automate repetitive code generation tasks.
They can be used to generate code for data access layers, service layers, or UI components.
T4 templates can also be used to generate configuration files or documentation.
They provide a way to separate the logic from the generated output.
T4 templates support customizing the gener...
Modifying the POCO class allows extending the entity with additional properties.
To add extra properties, simply modify the POCO class by adding new properties.
Ensure that the changes are reflected in the database schema if necessary.
Update any existing code that interacts with the POCO class to handle the new properties.
Consider the impact on serialization, validation, and any other relevant aspects.
Top trending discussions
posted on 14 Jul 2024
I applied via Naukri.com and was interviewed in Jun 2024. There were 3 interview rounds.
Yes, I have experience implementing server driven UIs.
Implemented server driven UIs using JSON responses to dynamically update UI elements
Worked with frameworks like React and Angular to handle server driven UI updates
Used server driven UIs to efficiently manage and display large amounts of data
Closure is a function that captures variables from its surrounding scope, allowing it to access those variables even after the scope has closed.
Closure allows a function to access variables from its lexical scope even after the function has finished executing.
Types of closures include lexical closures, which capture variables from the surrounding lexical scope, and function closures, which capture variables from the fu...
Core Data is a framework provided by Apple for managing the model layer objects in an iOS application.
Core Data is used for storing, retrieving, and managing data in an iOS app.
It provides an object-oriented interface to work with data.
Operations include creating, reading, updating, and deleting data.
Example: Creating a new record in Core Data for a user profile.
Example: Fetching a list of items from Core Data to displ
posted on 18 Oct 2024
I was interviewed in Sep 2024.
I was given a test which was not that difficult
Seeking new challenges and growth opportunities in a more innovative environment.
Looking for new challenges and opportunities for growth
Interested in working in a more innovative environment
Seeking a change in company culture or work-life balance
The innovative projects and collaborative work environment at Altair are the driving factors for me to join.
Innovative projects: I am excited about the opportunity to work on cutting-edge projects that push the boundaries of technology.
Collaborative work environment: I value teamwork and believe that working with talented individuals at Altair will help me grow professionally.
Company culture: I have heard great things ...
Leetcode Medium Type Questions
Design an online system to book salon professionals like Urban Company.
User registration and login system
Search functionality to find salon professionals based on location, services offered, ratings, etc.
Booking system with calendar availability and payment integration
Review and rating system for users to provide feedback on salon professionals
Notification system for booking confirmations, reminders, and updates
SQL Server Agent is a job scheduling tool in SQL Server. Abstract classes cannot be instantiated. SPs are faster than functions. Microservice concepts. IEnumerable vs IQueryable.
SQL Server Agent is a job scheduling tool in SQL Server for automating tasks like backups, database maintenance, etc.
Abstract classes cannot be instantiated because they are incomplete and meant to be extended by subclasses.
Extension methods ca...
A record in C# is a data structure that stores a fixed number of fields of different data types.
A record in C# is similar to a struct in C++, containing fields to store data.
Example: 'public record Person { public string Name; public int Age; }'
Generic method for summation: 'public T Sum
Test cases can include checking the su...
I applied via Recruitment Consulltant and was interviewed in Sep 2024. There was 1 interview round.
Hackearth test and contain rest api questions and coding questions
posted on 16 Sep 2024
I was interviewed in Mar 2024.
posted on 18 Aug 2023
posted on 13 Feb 2023
I applied via Naukri.com and was interviewed in Jun 2022. There were 4 interview rounds.
Total 35 questions, with 5 sections and time duration 35 minutes.
The question is too broad to provide a specific answer.
APIs can have various methods such as GET, POST, PUT, DELETE, etc.
The methods in an API depend on the specific API being referred to.
Examples of API methods include 'getUser', 'createOrder', 'updateProfile', etc.
I have faced issues with compatibility, performance, and user acceptance testing.
Compatibility issues with different browsers and operating systems
Performance issues with large datasets and high traffic
User acceptance testing revealed unexpected user behavior
based on 22 reviews
Rating in categories
Senior Software Engineer
190
salaries
| ₹6.5 L/yr - ₹22 L/yr |
Software Engineer
181
salaries
| ₹4.5 L/yr - ₹17 L/yr |
Software Developer
62
salaries
| ₹4 L/yr - ₹16 L/yr |
Technical Lead
52
salaries
| ₹10 L/yr - ₹30 L/yr |
Senior QA Engineer
52
salaries
| ₹5 L/yr - ₹15.5 L/yr |
TCS
Infosys
Wipro
HCLTech