HamiIT
Sign inGet started
Home
ADD CONTENT

Sign in Required

Please sign in to add content

Sign In
ProgramsBCASemester 3Web TechnologyUnit 4: The Server Tier (8Hrs)
Chapter Study

BCA Semester 3 – Web Technology – Unit 4: The Server Tier (8Hrs)

Comprehensive questions and detailed answers for Unit 4: The Server Tier (8Hrs). Perfect for exam preparation and concept clarity.

20
Questions
130
Marks
Back to All Chapters
1

Why server side programming is important for web development? Explain with its major features.

MediumTHEORY5 marks2024(TU FOHSS Final)
2

Why session is important for web development, write a server side script to create, store, retrieve and remove session and cookies.

MediumTHEORY5 marks2024(TU FOHSS Final)
3

Explain Multi-Tier Technology with its Advantages and Disadvantages

MediumMCQ5 marks2024(TU FOHSS Final)
4

Write a Server-Side Script for Implementing Login

HardTHEORY10 marks2024(TU FOHSS Final)
5

List common application of web server, Explain how session works.

MediumMCQ5 marks2019(TU FOHSS Final)
6

What is anonymous access? Discuss about Integrated windows authentication.

MediumMCQ5 marks2019(TU FOHSS Final)
7

What is session? Explain how session works with proper example.

MediumMCQ5 marks2023(TU FOHSS Final)
8

What is web server? Explain different functions of web server.

MediumMCQ5 marks2023(TU FOHSS Final)
9

Write a valid and well-formed xml to store details of visitor list of ABC College with following details and validate record with following information:

  1. Record must include details of name, mobile, department, related contact person, date, entry time, exit time and visitor number as attribute.
  2. Mobile must be 10 digit. Visitor may not have any contact person.
  3. Record must belongs to Admin, IT, Account and Exam Department.
HardTHEORY10 marks2023(TU FOHSS Final)
10

How does Tier Technology function inside the architectural framework of a web application?

MediumTHEORY5 marks2022(TU FOHSS Final)
11

How does a web server process and handle HTTP requests and responses with example?

MediumTHEORY5 marks2022(TU FOHSS Final)
12

Create a server site script to use cookie variables for the login and logout process without using databases.

MediumTHEORY5 marks2022(TU FOHSS Final)
13

Use server-site scripting to calculate the x using the data from two text boxes.

MediumTHEORY5 marks2022(TU FOHSS Final)
14

Given an XML document that contains a list of products with the following elements: productname, category, price, and quantity, write an XSLT stylesheet that:

  • a) Filters out any products that have a quantity less than 10.
  • b) Groups the remaining products by category and creates a new XML document with a new element called "category" that contains the products within that category as child elements.
  • c) Within each category element, sort the products by price in descending order.
  • d) Transforms the element "productname" into an attribute of each product element.
  • e) Add a new element called "total-price" to each product element, which contains the total price of the product (price quantity).
MediumTHEORY10 marks2022(TU FOHSS Final)
15

Make a script for the server site to display the following data by reading from adatabase and saving any new values that the user has updated. Think about the specifications of your own database, if any. image

MediumTHEORY10 marks2022(TU FOHSS Final)
16

Critically analysis the pitfall of the 3-tier technology in comparison with n-tier technology.

MediumTHEORY5 marks2020(TU FOHSS Final)
17

Define Session. Explain its use with example.

MediumTHEORY5 marks2021(TU FOHSS Final)
18

Write an example of server side script to insert data in database.

MediumTHEORY5 marks2021(TU FOHSS Final)
19

Explain the key component of XML file. Write an XML to describe "address" as an element and "state, city, municipality and house-no" as its attributes. Also define XSD for the XML file.

HardTHEORY10 marks2021(TU FOHSS Final)
20

Write a server side script for implementing login. Your program should take username and password as input and redirect to home page if validated otherwise prints an error "try again".

HardTHEORY10 marks2021(TU FOHSS Final)
Showing 20 questions (more available)

Exam Years

Past question papers

2024
TU FOHSS Final•4 questions
2023
TU FOHSS Final•3 questions
2022
TU FOHSS Final•6 questions
2021
TU FOHSS Final•4 questions
2020
TU FOHSS Final•1 questions
2019
TU FOHSS Final•2 questions

Questions in Unit 4: The Server Tier (8Hrs)

Why server side programming is important for web development? Explain with its major features.

Marks: 5

Year: 2024 Final TU FOHSS

Importance of Server-Side Programming Server-side programming refers to code that runs on the web server to process user requests, interact with databases, and generate dynamic web content. It is impo

Why session is important for web development, write a server side script to create, store, retrieve and remove session and cookies.

Marks: 5

Year: 2024 Final TU FOHSS

Unit 4: The Server Tier Question: Why Session is Important for Web Development? Write a Server-Side Script to Create, Store, Retrieve, and Remove Session and Cookies. (5 Marks) --- Importance o

Explain Multi-Tier Technology with its Advantages and Disadvantages

Marks: 5

Year: 2024 Final TU FOHSS

What is Multi-Tier Technology? Multi-tier technology is a software architecture where an application is divided into multiple layers (tiers). Each tier has a specific responsibility such as presenta

Write a Server-Side Script for Implementing Login

Marks: 10

Year: 2024 Final TU FOHSS

Aim To write a server-side login program that: - Accepts username and password - Validates user credentials - Redirects to home page if valid - Displays error message if invalid --- Concept of Server

List common application of web server, Explain how session works.

Marks: 5

Year: 2019 Final TU FOHSS

A web server is used to store, process, and deliver web pages and services to clients (browsers). Common Applications: - Hosting websites and web pages - Running web applications (e.g., e-commerce,

What is anonymous access? Discuss about Integrated windows authentication.

Marks: 5

Year: 2019 Final TU FOHSS

--- 1. Anonymous Access (2 Marks) Anonymous Access is a web server authentication method that allows users to access a website without providing a username or password. Key Points: - User identity i

What is session? Explain how session works with proper example.

Marks: 5

Year: 2023 Final TU FOHSS

1. What is a Session? (2 Marks) A session is a server-side mechanism used to store user information temporarily while the user interacts with a web application. Since HTTP is stateless, sessions hel

What is web server? Explain different functions of web server.

Marks: 5

Year: 2023 Final TU FOHSS

1. What is a Web Server? (2 Marks) A web server is a software (and sometimes hardware) system that stores, processes, and delivers web pages to clients (web browsers) using the HTTP/HTTPS protocol. E

Write a valid and well-formed xml to store details of visitor list of ABC College with following details and validate record with following information: 1. Record must include details of name, mobile

Marks: 10

Year: 2023 Final TU FOHSS

1. Definition XML (eXtensible Markup Language) is used to store and transport data in a structured, human-readable format. A well-formed XML follows proper syntax rules (one root element, properly n

How does Tier Technology function inside the architectural framework of a web application?

Marks: 5

Year: 2022 Final TU FOHSS

Tier Technology divides a web application into multiple logical layers (tiers), where each tier has a specific responsibility. This separation improves scalability, maintainability, security, and perf

How does a web server process and handle HTTP requests and responses with example?

Marks: 5

Year: 2022 Final TU FOHSS

How a Web Server Processes HTTP Requests and Responses (5 Marks) A web server is software that receives HTTP requests from clients (browsers), processes them, and sends back HTTP responses. It acts as

Create a server site script to use cookie variables for the login and logout process without using databases.

Marks: 5

Year: 2022 Final TU FOHSS

Login and Logout Using Cookies (Without Database) Cookies are small pieces of data stored on the client’s browser. They can be used to maintain user login state without using a database. --- 1. Con

Use server-site scripting to calculate the x using the data from two text boxes.

Marks: 5

Year: 2022 Final TU FOHSS

Server-Side Script to Calculate x Using Two Text Boxes Server-side scripting processes user input on the server and returns the calculated result to the client. --- 1. HTML Form (input.html) html <!D

Given an XML document that contains a list of products with the following elements: productname, category, price, and quantity, write an XSLT stylesheet that: - a) Filters out any products that have a

Marks: 10

Year: 2022 Final TU FOHSS

Problem Overview Given an XML document containing a list of products with the elements: - productname - category - price - quantity Write an XSLT stylesheet that performs the following tasks: a) Filt

Make a script for the server site to display the following data by reading from adatabase and saving any new values that the user has updated. Think about the specifications of your own database, if a

Marks: 10

Year: 2022 Final TU FOHSS

Unit 4: The Server Tier Server-Side Script to Display and Update User Data from Database (10 Marks) 1. Problem Definition The objective is to: - Retrieve user details from a database using a selecte

Critically analysis the pitfall of the 3-tier technology in comparison with n-tier technology.

Marks: 5

Year: 2020 Final TU FOHSS

1. Overview - 3-Tier Architecture: Divides an application into three layers: 1. Presentation Layer – User interface (UI) 2. Logic/Business Layer – Processes business rules 3. Data Layer – Databa

Define Session. Explain its use with example.

Marks: 5

Year: 2021 Final TU FOHSS

Definition of Session A Session is a way to store information about a user across multiple requests in a web application. It allows the server to remember the user’s state, preferences, or login infor

Write an example of server side script to insert data in database.

Marks: 5

Year: 2021 Final TU FOHSS

Example: PHP Script to Insert Data into Database Scenario: Insert user information (name, email, phone) into a MySQL database called store and table information. php <?php // Database connection detai

Explain the key component of XML file. Write an XML to describe "address" as an element and "state, city, municipality and house-no" as its attributes. Also define XSD for the XML file.

Marks: 10

Year: 2021 Final TU FOHSS

1. Key Components of an XML File (2 Marks) An XML file consists of the following key components: XML Declaration Specifies XML version and encoding. Example: <?xml version="1.0" encoding="UTF-

Write a server side script for implementing login. Your program should take username and password as input and redirect to home page if validated otherwise prints an error "try again".

Marks: 10

Year: 2021 Final TU FOHSS

1. Concept of Server-Side Login (1 Mark) - Server-side scripts process user input securely on the server. - Login validation checks credentials before allowing access. - Common server-side languages:

About Unit 4: The Server Tier (8Hrs) Questions

This page contains comprehensive questions from the Unit 4: The Server Tier (8Hrs) chapter of Web Technology, part of the BCA Semester 3 curriculum. All questions include detailed model answers from past TU exam papers.

Study Tips

  • Review concepts before attempting questions
  • Practice writing complete answers
  • Compare your answers with model solutions
  • Focus on questions from recent years
  • Use direct links (#question-ID) to bookmark and share specific questions

Related Resources

← Back to Web Technology Chapters

Unit 4: The Server Tier (8Hrs) chapter questions with answers for Web Technology (BCA Semester 3). Prepare for TU exams with our comprehensive question bank and model answers.

H
Hami IT

Empowering IT students with quality education resources and comprehensive exam preparation materials.

Programs

  • Flutter
  • Java
  • DevOps

Company

  • About Us
  • Contact

Contact

  • 📧hamiit.dev@gmail.com
  • 📞+977 9813706443
  • 📍Kathmandu, Nepal

© 2026 Hami IT. All rights reserved.