HamiIT
Sign inGet started
Home
ADD CONTENT

Sign in Required

Please sign in to add content

Sign In
ProgramsBCASemester 4Scripting LanguageUnit 1: Client Side Scripting (15Hrs.)
Chapter Study

BCA Semester 4 – Scripting Language – Unit 1: Client Side Scripting (15Hrs.)

Comprehensive questions and detailed answers for Unit 1: Client Side Scripting (15Hrs.). Perfect for exam preparation and concept clarity.

20
Questions
120
Marks
Back to All Chapters
1

Explain the concept structure and importance of DOM.

MediumTHEORY5 marks2020(TU FOHSS Final)
2

What is dialog box? Explain different dialog boxes with suitable example in JavaScript.

MediumTHEORY5 marks2020(TU FOHSS Final)
3

What is the use of jQuery? Write the sample program to show and hide the certain div with the use of jQuery.

MediumTHEORY5 marks2020(TU FOHSS Final)
4

Why Ajax is required in web development? Write a sample program to synchronize data between JavaScript and PHP.

MediumTHEORY5 marks2020(TU FOHSS Final)
5

Design following form in HTML and display the value in the result box after calculating basic arithmetic operation based on the use input with the use of JavaScript.

MediumTHEORY10 marks2020(TU FOHSS Final)
6

What is JavaScript? What are the potential platforms where JavaScript can be used?

MediumTHEORY5 marks2021(TU FOHSS Final)
7

Define JavaScript event. Illustrate how an event handler response particular event in web page.

MediumTHEORY5 marks2021(TU FOHSS Final)
8

What is an Immediately Invoked Function in JavaScript? Explain with suitable example.

MediumTHEORY5 marks2021(TU FOHSS Final)
9

What is jQuery? illustrate different types of selectors in jQuery with appropriate example?

MediumTHEORY5 marks2021(TU FOHSS Final)
10

What is the benefit of using AJAX? Discuss major methods that communicate with server-side scripting.

MediumTHEORY5 marks2021(TU FOHSS Final)
11

a) Write a program which includes a function sum(). This function sum() should be designed to add an arbitrary list of parameters. (For e.g ., if you call the function sum() as sum (1, 2) it should return the result 3 and if again you call the function sum() as sum(1,3,4) it should return the result 8).b) Write a program that displays the continuous time in the web page. The time should be in the format of HH:MM:SS.

MediumTHEORY10 marks2021(TU FOHSS Final)
12

Explain the Features of Javascript?

MediumTHEORY5 marks2022(TU FOHSS Final)
13

What is need for client side scripting? Write a JavaScript which accept user's first and last name and print them in reverse order with space between them.

MediumTHEORY5 marks2023(TU FOHSS Final)
14

Write JS program to highlight all of the words over eight characters long in the paragraph text (with a red background).

MediumTHEORY5 marks2024(TU FOHSS Final)
15

Write a HTML code to design a form with three radio button green, red, blue and black. Write a JavaScript code that will change the background color of the page when user clicks on particular button.

MediumTHEORY5 marks2023(TU FOHSS Final)
16

What is syntax to create AJAX object? Design and develop dynamic web application using HTML, AJAX and PHP.

MediumTHEORY5 marks2023(TU FOHSS Final)
17

What are different way to include JavaScript in HTML document? Create a HTML page containing a division with image and its description in paragraph. Write a JavaScript function to change the value of description in the paragraph during onmouseover and onmouseout on the image.

MediumTHEORY10 marks2023(TU FOHSS Final)
18

How jQuery is differing from JavaScript? Discuss different types of jQuery selectors with example.

MediumTHEORY10 marks2023(TU FOHSS Final)
19

What is JavaScript? Explain different types of JavaScript with proper example.

MediumTHEORY5 marks2024(TU FOHSS Final)
20

What is jQuery? Explain XMLHttpRequest object with it's properties and methods with relevant example.

MediumTHEORY5 marks2024(TU FOHSS Final)
Showing 20 questions (more available)

Exam Years

Past question papers

2024
TU FOHSS Final•5 questions
2023
TU FOHSS Final•5 questions
2022
TU FOHSS Final•6 questions
2021
TU FOHSS Final•6 questions
2020
TU FOHSS Final•5 questions

Questions in Unit 1: Client Side Scripting (15Hrs.)

Explain the concept structure and importance of DOM.

Marks: 5

Year: 2020 Final TU FOHSS

What is dialog box? Explain different dialog boxes with suitable example in JavaScript.

Marks: 5

Year: 2020 Final TU FOHSS

1. Definition of Dialog Box: A dialog box is a small pop-up window displayed by the browser to communicate with the user. It is used to show messages, get user input, or ask for confirmation. ---

What is the use of jQuery? Write the sample program to show and hide the certain div with the use of jQuery.

Marks: 5

Year: 2020 Final TU FOHSS

1. Use of jQuery jQuery is a fast and lightweight JavaScript library used to simplify HTML DOM manipulation, event handling, animations, and AJAX. Uses of jQuery - Simplifies JavaScript coding - Easy

Why Ajax is required in web development? Write a sample program to synchronize data between JavaScript and PHP.

Marks: 5

Year: 2020 Final TU FOHSS

1. Why AJAX is Required AJAX allows asynchronous communication between the browser (client) and server without reloading the web page. Key Points / Uses - Improves user experience by avoiding full

Design following form in HTML and display the value in the result box after calculating basic arithmetic operation based on the use input with the use of JavaScript.

Marks: 10

Year: 2020 Final TU FOHSS

1. Definition and Concept - HTML Form: A structure in HTML used to accept input from users, such as numbers, text, or options. - JavaScript Calculation: JavaScript can process user input, perform a

What is JavaScript? What are the potential platforms where JavaScript can be used?

Marks: 5

Year: 2021 Final TU FOHSS

1. Definition of JavaScript JavaScript is a high-level, interpreted, client-side scripting language that is primarily used to make web pages interactive and dynamic. Key Points: - Runs in the web

Define JavaScript event. Illustrate how an event handler response particular event in web page.

Marks: 5

Year: 2021 Final TU FOHSS

1. Definition of JavaScript Event A JavaScript event is an action or occurrence that happens in the browser, usually caused by the user or the browser itself. - Examples: Clicking a button, moving t

What is an Immediately Invoked Function in JavaScript? Explain with suitable example.

Marks: 5

Year: 2021 Final TU FOHSS

1. Definition of Immediately Invoked Function An Immediately Invoked Function Expression (IIFE) is a JavaScript function that runs automatically as soon as it is defined. Key Points: - Defined and

What is jQuery? illustrate different types of selectors in jQuery with appropriate example?

Marks: 5

Year: 2021 Final TU FOHSS

1. Definition of jQuery jQuery is a fast, small, and feature-rich JavaScript library that simplifies tasks such as: - HTML document traversal and manipulation - Event handling - Animations - AJAX inte

What is the benefit of using AJAX? Discuss major methods that communicate with server-side scripting.

Marks: 5

Year: 2021 Final TU FOHSS

1. Benefits of Using AJAX AJAX allows asynchronous communication between the client (browser) and server without reloading the web page. Key Benefits: - Faster User Experience: Updates parts of the

a) Write a program which includes a function sum(). This function sum() should be designed to add an arbitrary list of parameters. (For e.g ., if you call the function sum() as sum (1, 2) it should re

Marks: 10

Year: 2021 Final TU FOHSS

1. Part (a) – Arbitrary Parameters Sum Function JavaScript Function Using Rest Parameters html <!DOCTYPE html> <html> <head> <title>Sum Function</title> <script> // Function to add arbitrary

Explain the Features of Javascript?

Marks: 5

Year: 2022 Final TU FOHSS

1. Definition JavaScript is a high-level, interpreted scripting language used primarily for creating interactive and dynamic web pages. --- 2. Features of JavaScript | Feature | Description | |-----

What is need for client side scripting? Write a JavaScript which accept user's first and last name and print them in reverse order with space between them.

Marks: 5

Year: 2023 Final TU FOHSS

1. Need for Client-Side Scripting Definition Client-side scripting refers to scripts that run in the user's browser rather than on the server. Key Points / Need: - Immediate Feedback: Validates u

Write JS program to highlight all of the words over eight characters long in the paragraph text (with a red background).

Marks: 5

Year: 2024 Final TU FOHSS

1. HTML + JavaScript Code html <!DOCTYPE html> <html> <head> <title>Highlight Long Words</title> <style> .highlight { background-color: red; color: white; } </style> <scrip

Write a HTML code to design a form with three radio button green, red, blue and black. Write a JavaScript code that will change the background color of the page when user clicks on particular button.

Marks: 5

Year: 2023 Final TU FOHSS

1. HTML + JavaScript Code html <!DOCTYPE html> <html> <head> <title>Change Background Color</title> <script> function changeColor(color) { document.body.style.backgroundColor = color;

What is syntax to create AJAX object? Design and develop dynamic web application using HTML, AJAX and PHP.

Marks: 5

Year: 2023 Final TU FOHSS

1. Syntax to Create AJAX Object In JavaScript, an AJAX object is created using the XMLHttpRequest object: javascript var xhr = new XMLHttpRequest(); Key Points: - xhr.open("METHOD", "URL", true) – Ini

What are different way to include JavaScript in HTML document? Create a HTML page containing a division with image and its description in paragraph. Write a JavaScript function to change the value of

Marks: 10

Year: 2023 Final TU FOHSS

1. Ways to Include JavaScript in HTML (2 Marks) 1. Inline JavaScript - JavaScript code is written directly inside an HTML element using the onclick, onmouseover, etc. html <button onclick="

How jQuery is differing from JavaScript? Discuss different types of jQuery selectors with example.

Marks: 10

Year: 2023 Final TU FOHSS

1. Difference Between jQuery and JavaScript | Feature | JavaScript | jQuery | |---------|-----------|--------| | Definition | A programming language for web development | A fast, small, and feature-r

What is JavaScript? Explain different types of JavaScript with proper example.

Marks: 5

Year: 2024 Final TU FOHSS

1. Definition of JavaScript JavaScript is a high-level, interpreted scripting language primarily used to make web pages interactive and dynamic. - Runs on the client-side (browser) but can also run

What is jQuery? Explain XMLHttpRequest object with it's properties and methods with relevant example.

Marks: 5

Year: 2024 Final TU FOHSS

1. Definition of jQuery jQuery is a fast, small, and feature-rich JavaScript library designed to simplify: - DOM manipulation - Event handling - Animations - AJAX calls - Cross-browser compatibility

About Unit 1: Client Side Scripting (15Hrs.) Questions

This page contains comprehensive questions from the Unit 1: Client Side Scripting (15Hrs.) chapter of Scripting Language, part of the BCA Semester 4 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 Scripting Language Chapters

Unit 1: Client Side Scripting (15Hrs.) chapter questions with answers for Scripting Language (BCA Semester 4). 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.