0% found this document useful (0 votes)
2 views1 page

Java Script Questions

The document outlines various JavaScript programming tasks including generating prime numbers, Fibonacci sequences, factorial calculations, and summing odd numbers in an array. It also describes the creation of a basic quiz app, a to-do list manager, a calculator project, and a number guessing game, each with specific features and functionalities. These tasks cover a range of JavaScript concepts and practical applications using HTML and CSS.

Uploaded by

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

Java Script Questions

The document outlines various JavaScript programming tasks including generating prime numbers, Fibonacci sequences, factorial calculations, and summing odd numbers in an array. It also describes the creation of a basic quiz app, a to-do list manager, a calculator project, and a number guessing game, each with specific features and functionalities. These tasks cover a range of JavaScript concepts and practical applications using HTML and CSS.

Uploaded by

outlooksinet
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

java script questions

1.Print all prime numbers between 1 and 200.

2.Generate the first n Fibonacci numbers using while loop

3.Create a function that returns the factorial using recursion.

4.Create a function that finds the sum of all odd numbers in an array.

5. Basic JavaScript Quiz App using plain HTML + CSS + JavaScript. It:

a. Shows one question at a time


b. Uses radio buttons for answers
c. Has a Next button
d.Displays the final score at the end

6.To-Do List Manager built with HTML + CSS + JavaScript, implementing:

a. Add tasks
b.Edit tasks
c.Delete tasks
d. Mark tasks as completed
e. Dynamic DOM updates using event handling and array
7. a complete JavaScript Calculator project that includes:

a. Basic operations: +, -, ×, ÷
b. Button-based UI (you can also extend to keyboard input)
c. Decimal support
d. Clear / Reset functionality
e. Simple and responsive layout

8.Number Guessing Game using HTML + JavaScript, covering:

a. Random number between 1–100


b. User inputs a guess
c. Gives hints ("Too high", "Too low")
d. Tracks number of attempts
e. Displays success message when guessed correctly

You might also like