ASP Net Csharp SQL Oops Jquery Webforms Qa
ASP Net Csharp SQL Oops Jquery Webforms Qa
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#.
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.
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.
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