0% found this document useful (0 votes)
3 views6 pages

ASP.NET Web Application Fundamentals

The document contains a series of questions and attempted answers related to ASP.NET, covering topics such as secure communication, database roles, web application functionality, and server-client interactions. It includes details on protocols, web servers, and various components involved in web development with ASP.NET. The answers provided indicate a focus on understanding the architecture and functionality of ASP.NET applications.

Uploaded by

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

ASP.NET Web Application Fundamentals

The document contains a series of questions and attempted answers related to ASP.NET, covering topics such as secure communication, database roles, web application functionality, and server-client interactions. It includes details on protocols, web servers, and various components involved in web development with ASP.NET. The answers provided indicate a focus on understanding the architecture and functionality of ASP.NET applications.

Uploaded by

krishana.org
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

Question

Attempted Answer Result


Description
How does [Link] ensure secure Through HTTPS and SSL/TLS
1
communication over the Internet? encryption

What is the purpose of a database in


2 To store and retrieve data
a web application?

What happens when a form is


A post back sends the form data
3 submitted in an [Link] Web Forms
to the server
application?

User ? Browser ? Server ?


Which one of these is a correct
4 Database ? Server ? Browser ?
sequence of how a web app works?
User

What is typically used to create


5 interactive elements on the client- JavaScript
side?

What component is responsible for


6 Database
storing data in a web application?

When a user accesses an [Link]


HTML content and resources
7 website, what does the browser
(CSS, JS, images, etc.)
typically receive?

What is an API used for in web To allow communication between


8
applications? systems

Which web server is most commonly


9 Microsoft IIS
used with [Link]?

What is the role of a web browser in It sends requests to and displays


10
an [Link] application? responses from the web server

What happens when a user clicks a An HTTP request is sent to the


11
link in a web application? server

What role does the database play in a It stores and retrieves application
12
web application? data

What tool can developers use to


13 inspect how [Link] pages appear Browser Developer Tools (F12)
and behave in browsers?
Question
Attempted Answer Result
Description
What role does the IP address play in Identifies the physical computer
14
an [Link] web request over TCP/IP? sending/receiving the data

In [Link], what object provides


15 information about the client's Http Request
Internet request?

Which of the following best describes [Link] uses TCP/IP to


16 the relation of TCP/IP with [Link] communicate between browser
hosting? and server

Which protocol does IIS primarily


17 HTTP/HTTPS
support?

Which component in [Link] is


Socket classes in .NET
18 responsible for handling TCP/IP
(System .Net .Sockets)
communication at a low level?

What is the primary function of the To access and share documents,


19
World Wide Web? images, and resources

20 What does URL stand for? Uniform Resource Locator

What is the main benefit of TCP over Connection reliability and ordered
21
UDP for [Link] applications? delivery

Which of the following can be hosted


22 All of the above
on IIS?

Which component is used to view


23 Web Browser
web pages on the World Wide Web?

A temporary state of interaction


24 What is a session in web applications?
between user and server

[Link] websites are accessed over


25 the Internet using what type of URL (Uniform Resource Locator)
address?

Which of the following is NOT a web


26 Windows
browser?

What is the first step when a user The browser sends an HTTP
27
accesses a web application? request

28 In a web application, what is the The user’s web browser


Question
Attempted Answer Result
Description
client?

Which protocol is most commonly


29 HTTP
used for web communication?

What does the ‘http’ in a web address


30 Hyper Text Transfer Protocol
stand for?

31 A web address is also known as a: IP address

What is the role of a web server in a


32 It delivers web pages to users
web application?

How does [Link] handle browser Using browser definition files


33
compatibility for rendering pages? (browser Caps)

When you host an [Link]


34 application on IIS, where should the inetpub\wwwroot
application files be placed?

What does the Internet Information


Handles web hosting and HTTP
35 Services (IIS) do in [Link]
communication
applications?

36 What does WWW stand for? World Wide Web

Which organization manages web


37 W3C
standards like HTML and CSS?

Which protocol is primarily used to


38 HTTP
access the World Wide Web?

Which of the following is NOT a front-


39 SQL
end technology?

What is the default port number for


40 443
HTTP in IIS?

Which port is used by [Link]


41 443
applications for secure HTTP (HTTPS)?

42 What is a web application? A program that runs in a browser

Which of these is a popular back-end


43 programming language for web Python
applications?
Question
Attempted Answer Result
Description
44 What does IIS stand for? Internet Information Services

Who is considered the inventor of the


45 Bill Gates
World Wide Web?

46 IIS is developed by which company? Microsoft

What type of code runs in the web


47 C#
browser in an [Link] application?

What type of code runs in the user's


48 Server-side code
browser in a web application?

What does the web server do after


49 Sends an error message
receiving an HTTP request?

What is the role of a web server in an Handling HTTP requests and


50
[Link] application? responses

What is the purpose of the


1 To handle application-level events
[Link] file in [Link]?

How is an event handler wired up


Creates a server-side method and
2 when double-clicking a Button in
connects it via the .aspx file
Visual Studio?

Which property enables cross-page


3 EnableCrossPostback
postbacks?

Which protocol does a web server use


4 HTTP/HTTPS
to communicate with clients?

What is the base class for all


5 [Link]
WebForms pages?

Which tag defines a server-side


6 <asp:Label runat="server">
control in the Source Window?

Which event fires when a TextBox's


7 TextChanged
text changes?

Which feature is NOT visible in Split


8 Breakpoints
View?

What is the role of the Page_Load It triggers when the browser


9
event in [Link]? window is closed
Question
Attempted Answer Result
Description
Which of the following is the default
10 server-side scripting language in C#
[Link]?

What does the "Source Window"


11 HTML/[Link] markup editor
refer to in [Link] Web Forms?

Why use Split View when designing To instantly see markup changes
12
[Link] pages? reflected visually

Microsoft’s web server for hosting


13 What is IIS?
[Link] applications

Which directive identifies a


14 <%@ Page %>
WebForms page?

What is the default event for a


15 TextChanged
TextBox?

How to comment out code in [Link]


16 <%-- Comment --%>
markup?

Which shortcut switches between


17 Design and Source views in Visual Shift+F7
Studio?

Posting data to another .aspx


18 What is a cross-page postback?
page

Which pane in Design View shows


19 Solution Explorer
control properties?

20 What does [Link] stand for? Active Server Pages .NET

What can you do in Design View that Drag-and-drop server controls


21
you CAN'T do in Source View? from the Toolbox

What is the standard signature for a void Button1_Click(object sender,


22
button click event handler? EventArgs e)

What is the purpose of the <%@ Page Configure page-level settings


23
%> directive in the Source Window? (e.g., MasterPage, CodeBehind)

Splits the screen between C# and


24 What is Split View in Visual Studio?
VB code
Question
Attempted Answer Result
Description
What is the correct way to attach a
25 button click handler in [Link] <button onclick="Button1_Click">
WebForms?

What is the purpose of IsPostBack Determines if the page is being


26
property? loaded for the first time

The SelectedIndexChanged event


27 DropDownList
applies to:

Which file extension is used for an


28 .aspx
[Link] web page?

What is the primary role of a web Process HTTP requests and return
29
server in [Link]? responses

30 The Page_Load event occurs Only on first page visit

You might also like