Filter interviews by
Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.
Abstract class can have constructors, fields, and methods, while interface cannot have any implementation.
A class can inherit only one abstract class but can implement multiple interfaces.
Abstract classes are used to define a common base class for related classes, while interfaces are used to define a con...
MVC is a software architectural pattern for implementing user interfaces.
MVC separates an application into three main components: Model, View, and Controller.
Model represents the data and business logic of the application.
View represents the user interface that displays the data to the user.
Controller acts as an intermediary between Model and View, handling user input and updating the Model.
MVC helps in achieving ...
HTTP status codes are standardized codes used to indicate the result of a HTTP request.
HTTP status codes range from 100 to 599
1xx - Informational responses
2xx - Success responses (e.g. 200 OK)
3xx - Redirection messages
4xx - Client error responses (e.g. 404 Not Found)
5xx - Server error responses (e.g. 500 Internal Server Error)
Types of classes in programming include abstract classes, concrete classes, sealed classes, static classes, and nested classes.
Abstract classes cannot be instantiated and may contain abstract methods.
Concrete classes can be instantiated and provide implementations for all methods.
Sealed classes cannot be inherited.
Static classes cannot be instantiated and contain only static members.
Nested classes are defined with...
Char is fixed length data type while varchar is variable length data type in SQL.
Char stores fixed length strings, while varchar stores variable length strings.
Char is padded with spaces to reach fixed length, while varchar does not pad with spaces.
Char is faster for fixed length data, while varchar is more flexible for variable length data.
Dot Net Framework is a software framework developed by Microsoft that provides a controlled programming environment for developing and running applications.
Developed by Microsoft
Provides a controlled programming environment
Used for developing and running applications
Like operator is used in SQL to search for a specified pattern in a column.
Like operator is used with the WHERE clause in SQL queries.
It allows for pattern matching using wildcard characters like % and _.
Example: SELECT * FROM table_name WHERE column_name LIKE 'pattern';
Components of Dot Net Framework include Common Language Runtime (CLR), Class Library, and ASP.NET.
Common Language Runtime (CLR) provides environment for executing .NET programs
Class Library provides reusable code for common programming tasks
ASP.NET is a web application framework for building dynamic web sites and web applications
VB.Net is a programming language while MVC is a design pattern for organizing code in web applications.
VB.Net is a programming language used to develop applications, while MVC is a design pattern used to organize code in web applications.
VB.Net is a part of the .NET framework, while MVC is a design pattern that separates an application into three main components: Model, View, and Controller.
VB.Net can be used with...
Filters in MVC are used to perform logic before or after an action method is executed.
Filters are attributes that can be applied to controller actions or entire controllers.
They can be used for authorization, logging, exception handling, etc.
Examples include Authorize, OutputCache, HandleError filters.
I applied via Walk-in and was interviewed in May 2024. There was 1 interview round.
Primary key uniquely identifies each record in a table. It cannot be null and there can be only one primary key.
Primary key ensures each record in a table is unique
Primary key cannot have null values
Only one primary key can be defined for a table
Primary key can be a single column or a combination of columns
Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.
Types of inheritance: Single inheritance, Multiple inheritance, Multilevel inheritance, Hierarchical inheritance, Hybrid inheritance
Example: Class B inheriting from Class A: class B : A {}
Object Oriented Programming is a programming paradigm based on the concept of objects, which can contain data and code.
OOP focuses on creating objects that interact with each other to solve problems
Encapsulation, inheritance, and polymorphism are key principles of OOP
Examples of OOP languages include Java, C++, and C#
Dot Net is a software framework developed by Microsoft for building and running applications on Windows.
Developed by Microsoft
Used for building and running applications on Windows
Supports multiple programming languages like C#, VB.NET, F#
Consists of a large class library known as Framework Class Library (FCL)
Includes tools for developing web, desktop, and mobile applications
Dot Net Framework is a software framework developed by Microsoft that provides a controlled programming environment for developing and running applications.
Developed by Microsoft
Provides a controlled programming environment
Used for developing and running applications
Components of Dot Net Framework include Common Language Runtime (CLR), Class Library, and ASP.NET.
Common Language Runtime (CLR) provides environment for executing .NET programs
Class Library provides reusable code for common programming tasks
ASP.NET is a web application framework for building dynamic web sites and web applications
.NET Framework is a software development platform providing tools, libraries, and runtime for building and running applications on Windows.
Common Language Runtime (CLR): The CLR manages the execution of .NET programs, providing services like memory management, security, and exception handling.
Base Class Library (BCL): The BCL offers a comprehensive set of classes and APIs for common programming tasks, such as file I/O,...
As a DOT NET Developer, I have worked on diverse projects, enhancing my skills in C#, ASP.NET, and database management.
C# Development: Developed multiple applications using C#, focusing on clean code and best practices, such as a task management system for a client.
ASP.NET MVC: Worked on an e-commerce platform using ASP.NET MVC, implementing features like user authentication and payment processing.
Database Management: ...
VB.Net is a programming language while MVC is a design pattern for organizing code in web applications.
VB.Net is a programming language used to develop applications, while MVC is a design pattern used to organize code in web applications.
VB.Net is a part of the .NET framework, while MVC is a design pattern that separates an application into three main components: Model, View, and Controller.
VB.Net can be used with or w...
The versions of Dot Net include .NET Framework, .NET Core, and .NET 5.
.NET Framework is the original version of Dot Net, primarily used for Windows applications.
.NET Core is a cross-platform version of Dot Net, used for developing applications that can run on Windows, macOS, and Linux.
.NET 5 is the latest version of Dot Net, which combines the features of .NET Core and .NET Framework.
Other versions include .NET Standar...
Types of classes in programming include abstract classes, concrete classes, sealed classes, static classes, and nested classes.
Abstract classes cannot be instantiated and may contain abstract methods.
Concrete classes can be instantiated and provide implementations for all methods.
Sealed classes cannot be inherited.
Static classes cannot be instantiated and contain only static members.
Nested classes are defined within an...
Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.
Abstract class can have constructors, fields, and methods, while interface cannot have any implementation.
A class can inherit only one abstract class but can implement multiple interfaces.
Abstract classes are used to define a common base class for related classes, while interfaces are used to define a contract...
Like operator is used in SQL to search for a specified pattern in a column.
Like operator is used with the WHERE clause in SQL queries.
It allows for pattern matching using wildcard characters like % and _.
Example: SELECT * FROM table_name WHERE column_name LIKE 'pattern';
Char is fixed length data type while varchar is variable length data type in SQL.
Char stores fixed length strings, while varchar stores variable length strings.
Char is padded with spaces to reach fixed length, while varchar does not pad with spaces.
Char is faster for fixed length data, while varchar is more flexible for variable length data.
LINQ (Language Integrated Query) is a feature in C# that allows querying data from different data sources using a uniform syntax.
LINQ provides a set of standard query operators that allow querying data from collections, databases, XML, and more.
Types of LINQ include LINQ to Objects, LINQ to SQL, LINQ to XML, and LINQ to Entities.
LINQ queries are written in C# and are executed at runtime, allowing for more flexibility a...
HTTP status codes are standardized codes used to indicate the result of a HTTP request.
HTTP status codes range from 100 to 599
1xx - Informational responses
2xx - Success responses (e.g. 200 OK)
3xx - Redirection messages
4xx - Client error responses (e.g. 404 Not Found)
5xx - Server error responses (e.g. 500 Internal Server Error)
Filters in MVC are used to perform logic before or after an action method is executed.
Filters are attributes that can be applied to controller actions or entire controllers.
They can be used for authorization, logging, exception handling, etc.
Examples include Authorize, OutputCache, HandleError filters.
MVC is a software architectural pattern for implementing user interfaces.
MVC separates an application into three main components: Model, View, and Controller.
Model represents the data and business logic of the application.
View represents the user interface that displays the data to the user.
Controller acts as an intermediary between Model and View, handling user input and updating the Model.
MVC helps in achieving separ...
Top trending discussions
I applied via Campus Placement and was interviewed before May 2021. There were 4 interview rounds.
VERBAL QUANT DI/LR and Picture based test
Fibonacci series can be easily implemented using loops in C++ or C.
Declare variables for first two numbers of the series
Use a loop to calculate and print the next number in the series
Repeat the loop until desired number of terms are printed
I appeared for an interview before Sep 2020.
Round duration - 90 minutes
Round difficulty - Easy
This round was held during university hours and consisted of 2 coding questions.
Round duration - 120 minutes
Round difficulty - Easy
Make sure you do no cutting and are clear about the approach you'd be following.
Running median of an input stream is the median value of the numbers seen so far in a continuous stream of data.
Maintain two heaps - a max heap for the lower half of the numbers and a min heap for the upper half.
Keep the number of elements in the two heaps balanced or differ by at most 1.
If the total number of elements is odd, the median is the root of the max heap. If even, it is the average of the roots of the two he...
Prepare for company-wise interview questions according to the company in which you are applying. Try to write the code yourself and if got stuck in between then take help from the internet. I recommend you Codezen of Coding Ninjas for practicing Data Structures and Algorithms based questions.
Application resume tips for other job seekersBe sure 100% of what you write in your resume and prepare for that before the interview what is written on resume.
Final outcome of the interviewSelectedI applied via Recruitment Consultant and was interviewed before Oct 2020. There was 1 interview round.
I applied via Naukri.com and was interviewed in Mar 2021. There was 1 interview round.
I am open to working nights and weekends if it aligns with project needs and team goals, ensuring productivity and collaboration.
Flexibility: I understand that software development can require off-hours work, especially during critical project phases.
Team Collaboration: Working nights or weekends can enhance communication with team members in different time zones.
Project Deadlines: I am willing to put in extra hours to...
I applied via LinkedIn and was interviewed in Apr 2021. There were 4 interview rounds.
Data structures are ways of organizing and storing data in a computer so that it can be accessed and used efficiently.
Data structures are used to manage and manipulate data.
They can be implemented using arrays, linked lists, trees, graphs, and other methods.
Examples include stacks, queues, hash tables, and binary search trees.
Databases are essential for storing and managing large amounts of data efficiently.
Databases allow for easy organization and retrieval of data
They provide data security and integrity
Databases enable scalability and performance optimization
Examples include MySQL, Oracle, MongoDB, and SQL Server
I applied via Naukri.com and was interviewed before May 2021. There were 3 interview rounds.
based on 1 interview experience
Difficulty level
Duration
Senior Software Engineer
6
salaries
| ₹5 L/yr - ₹7 L/yr |
Software Engineer
4
salaries
| ₹4 L/yr - ₹6.8 L/yr |
Senior Consultant
4
salaries
| ₹12 L/yr - ₹17.7 L/yr |
Associate Manager
4
salaries
| ₹16 L/yr - ₹17.6 L/yr |
Consultant
3
salaries
| ₹8.5 L/yr - ₹22 L/yr |
TCS
Accenture
Wipro
Cognizant