0% found this document useful (0 votes)
4 views2 pages

ASP Net Csharp SQL Oops Jquery Webforms Qa

Uploaded by

shivuhunji
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views2 pages

ASP Net Csharp SQL Oops Jquery Webforms Qa

Uploaded by

shivuhunji
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

ASP.

NET, C#, SQL, OOPs, jQuery & Web Forms - Interview Q&A

ASP.NET
Q: What is ASP.NET?
A: ASP.NET is a Microsoft framework for building dynamic web apps, sites, and services using compiled languages like
C#.

Q: Difference between Web Forms and MVC?


A: Web Forms use event-driven model with ViewState; MVC uses Model-View-Controller pattern with better testability.

C#
Q: Difference between ref and out?
A: ref requires initialization, out does not but must be assigned inside method.

Q: What is LINQ?
A: Language Integrated Query for querying collections using SQL-like syntax in C#.

SQL
Q: INNER JOIN vs OUTER JOIN?
A: INNER JOIN returns only matching rows; OUTER JOIN returns matches plus unmatched rows from left/right/both
tables.

Q: Find duplicate rows?


A: Use GROUP BY and HAVING COUNT(*) > 1 to find duplicates.

OOPs Concepts
Q: 4 pillars of OOP?
A: Encapsulation, Inheritance, Polymorphism, Abstraction.

Q: What is Polymorphism?
A: One interface, multiple methods: overloading and overriding in C#.

jQuery
Q: What is jQuery?
A: A lightweight JS library for DOM manipulation, events, AJAX, animations.

Q: How to select element by ID?


A: $("#elementId")

Web Forms
Q: What is ViewState?
A: Used to persist page and control values between postbacks in Web Forms.

Page 1
ASP.NET, C#, SQL, OOPs, jQuery & Web Forms - Interview Q&A
Q: What is IsPostBack?
A: Checks if page load is due to postback or first request.

Page 2

You might also like