ASP.
NET: Important Topics and Answers for BCA Semester 5
This document provides an analysis of previous question papers for BCA Semester 5 ASP.NET,
highlighting the most probable topics and their concise answers. Each answer is tailored to fit within
one answer booklet and is designed to carry appropriate marks.
Part A: Short Answer Questions (10x2 = 20 Marks)
What is Apache Web Server?
Apache is an open-source HTTP server used to serve web content. It supports modular
configurations and cross-platform usage.
What is ASP.NET?
ASP.NET is a Microsoft framework for building dynamic web applications using .NET.
What is a Validation Control in ASP.NET?
Validation controls ensure user inputs meet criteria like format, range, and completeness.
What is Inline Code?
Inline code refers to code embedded directly within HTML using ASP.NET syntax.
What is ADO.NET?
ADO.NET provides data access from databases using .NET languages.
What is a Data Source Control?
Data Source Controls manage data connections and binding in ASP.NET, like SqlDataSource.
What is a FormView Control?
FormView displays one record at a time, allowing templates for customization.
What is HttpHandler?
HttpHandler processes specific HTTP requests, like serving files or images.
What is an Unhandled Exception?
These are runtime errors not caught by the application code, potentially crashing it.
What is a Master Page in ASP.NET?
Master Pages allow consistent layouts across multiple web pages.
Part B: Long Answer Questions (5x10 = 50 Marks)
UNIT I: Explain ASP.NET and its components.
ASP.NET includes server controls, session management, caching, and error handling for dynamic
web application development.
UNIT II: Explain ASP.NET server controls with examples.
Server controls include TextBox, Button, and GridView, enabling functionalities like data display and
interaction.
UNIT III: Describe validation controls in ASP.NET.
Validation controls include RequiredFieldValidator and CustomValidator, ensuring input criteria are
met.
UNIT IV: Write about GridView and FormView controls.
GridView displays tabular data, while FormView shows individual records with customizable
templates.
UNIT V: Discuss error handling in ASP.NET.
ASP.NET handles errors using try-catch blocks, Page_Error, and Application_Error in Global.asax.