0% found this document useful (0 votes)
2 views

Assignment 3A

The document outlines Assignment 3 for the BCSE203E Web Programming course, focusing on HTML forms, CSS, and JavaScript. It includes tasks such as writing functions to determine maximum values, check if numbers are odd or even, solve quadratic equations, and evaluate driving speed against a speed limit with penalty points. Each task requires the implementation of specific programming logic in JavaScript.

Uploaded by

Shreya Khadekar
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views

Assignment 3A

The document outlines Assignment 3 for the BCSE203E Web Programming course, focusing on HTML forms, CSS, and JavaScript. It includes tasks such as writing functions to determine maximum values, check if numbers are odd or even, solve quadratic equations, and evaluate driving speed against a speed limit with penalty points. Each task requires the implementation of specific programming logic in JavaScript.

Uploaded by

Shreya Khadekar
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

BCSE203E- Web Programming

Assignment 3

Topics: HTML- Forms, CSS and JavaScript

Task 1

Write a function which returns the maximum, ascending and descending of three number

Task 2

Write a function which checks number till given input/parameter is odd or even

Task 3

Write a JavaScript program to solve quadratic equation in the form ax2 + bx + c, (Only the
values of a, b and c are provided) the task is to find the roots of the equation.

Task 4

Write a function which checks given input/parameter:

• If input/parameter is below speedlimit of 70 print => 'Good Safe Driving'


• If input/parameter is above speedlimit of 70, every 5 kilometers is Penalty Point, print
=> 'Speed Limit Crossed by Penalty Point' + Point

If Driver gets more than 10 penalty points ie. above the speed limit 120, print => 'License
Suspended'

You might also like