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
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...
posted on 19 Mar 2024
posted on 18 Aug 2023
I applied via Referral and was interviewed in Dec 2021. There were 5 interview rounds.
API stands for Application Programming Interface. REST and SOAP are two types of APIs.
REST is an architectural style that uses HTTP protocol for communication and supports multiple data formats like JSON, XML, etc.
SOAP is a protocol that uses XML for communication and supports only XML data format.
REST is lightweight and easy to use, while SOAP is more complex and requires more bandwidth.
REST is stateless, while SOAP m...
oAuth tokens are used for authentication and authorization purposes in web applications.
oAuth tokens are used to grant access to resources without sharing the user's credentials.
There are three types of oAuth tokens: access tokens, refresh tokens, and authorization codes.
Access tokens are short-lived tokens that are used to access protected resources.
Refresh tokens are long-lived tokens that are used to obtain new acce...
Stored Procedures are pre-compiled SQL statements stored in the database and executed on demand.
Stored Procedures are used to improve performance by reducing network traffic and improving security.
They can be used to encapsulate business logic and provide a consistent interface to the database.
They can be called from other PL/SQL code or from external applications.
Examples include procedures for inserting, updating, an...
Drop command removes a table from the database, truncate command removes all rows from a table, and delete command removes specific rows from a table.
Drop command removes the table structure and all associated data
Truncate command removes all rows from a table but keeps the table structure
Delete command removes specific rows from a table based on a condition
Drop and truncate are faster than delete as they do not genera...
Merge Sort and Quick Sort are sorting algorithms. Merge Sort is stable but slower. Quick Sort is faster but unstable.
Merge Sort divides the array into two halves, sorts them recursively, and then merges them.
Quick Sort selects a pivot element, partitions the array around the pivot, and then recursively sorts the subarrays.
Merge Sort has a time complexity of O(nlogn) and space complexity of O(n).
Quick Sort has a time co...
Object Oriented Programming is a programming paradigm that focuses on objects and their interactions.
OOP is based on the concepts of encapsulation, inheritance, and polymorphism.
It allows for modular and reusable code.
Objects have attributes (data) and methods (functions) that operate on that data.
Examples of OOP languages include Java, Python, and C++.
Armstrong number problem solved using double pointers.
Use double pointers to access each digit of the number.
Calculate the sum of each digit raised to the power of the number of digits.
Compare the sum with the original number to check if it is an Armstrong number.
VPC stands for Virtual Private Cloud, which is a virtual network in the cloud.
VPC allows users to create their own isolated network within the cloud
It provides control over network topology, IP address range, and subnets
VPC can be used to securely connect resources in the cloud and on-premises
Examples of cloud providers that offer VPC are Amazon Web Services and Google Cloud Platform
On-premises servers can be connected to the Cloud using VPN or Direct Connect.
Use a VPN to establish a secure connection between on-premises servers and the Cloud.
Direct Connect can be used for a dedicated, private connection between on-premises servers and the Cloud.
Ensure proper network configuration and security measures are in place.
Examples of VPN solutions include OpenVPN, Cisco AnyConnect, and AWS VPN.
Examples o...
Multithreading is the execution of multiple threads of a single process, while multiprocessing is the execution of multiple processes.
Multithreading involves multiple threads within a single process, while multiprocessing involves multiple processes.
Multithreading shares the same memory space, while multiprocessing has separate memory spaces.
Multithreading is suitable for I/O-bound tasks, while multiprocessing is suita...
I handle exceptions by catching them and handling them appropriately.
I use try-catch blocks to catch exceptions.
I log the exception details for debugging purposes.
I handle the exception based on the type and severity.
I throw custom exceptions when necessary.
I ensure that the application remains stable and doesn't crash due to exceptions.
Generators and decorators are two important features in Python that help in simplifying code and improving performance.
Generators are functions that can be paused and resumed, allowing for efficient memory usage and lazy evaluation.
Decorators are functions that modify the behavior of other functions, adding functionality without changing the original code.
Generators are created using the 'yield' keyword, while decorato...
posted on 17 Sep 2023
I applied via Naukri.com and was interviewed before Sep 2022. There were 4 interview rounds.
Basic programming questions, like find the occurrence of the characters in a string
I applied via LinkedIn
General math and domain related questions
Algorithm and domain indept questions
posted on 30 Oct 2023
I applied via Approached by Company and was interviewed before Oct 2022. There were 3 interview rounds.
Basics of core js and css questions
Implementing infinite scroll on a webpage
Use JavaScript to detect when user reaches the bottom of the page
Fetch more content using AJAX calls
Append new content to the existing page dynamically
I applied via Approached by Company and was interviewed before Sep 2021. There were 2 interview rounds.
I applied via Naukri.com and was interviewed in Nov 2019. There were 3 interview rounds.
Some of the top questions asked at the Q3 Technologies Senior Software Engineer interview for experienced candidates -
based on 22 reviews
Rating in categories
Senior Software Engineer
190
salaries
| ₹6.5 L/yr - ₹22 L/yr |
Software Engineer
181
salaries
| ₹5 L/yr - ₹17 L/yr |
Software Developer
63
salaries
| ₹4 L/yr - ₹13.5 L/yr |
Senior QA Engineer
52
salaries
| ₹4.3 L/yr - ₹14 L/yr |
Technical Lead
50
salaries
| ₹10 L/yr - ₹30 L/yr |
TCS
Infosys
Wipro
HCLTech