Topics

13. Alert
25. Array
26. Array Sorting
23. Classes
19. Concat
21. Do While
16. Event Handlers
8. For
17. Form
9. Function
20. Hello World
4. HTML
11. If Else
22. Letter to Number
14. Loop
24. Madlib
3. Math
7. Modulus
15. Popups
6. Prime
5. Random
18. String
10. Switch
12. Textfield
1. User Input
2. While

Topic: For

10. Fill an array with random numbers. Display the array. Output the average of all the numbers. See more

21. You can determine where a year is a leap year if the year is divisible by 4. However, years that are also divisible by 100 are not leap years unless they are also divisible by 400, in which they are leap years. Write the psuedocode to determine for a year entered to be a standard year or a leap year. You should be able to repeat the entering of years as long as 0000 is not entered. See more

41. Create a for loop to run 35 times, but display the counter variable in front of the numbers. Generate 3 random numbers 1-25 in each iteration of the for loop. See more

47. Create a program that accepts information from the user about bugs in the system. Think of the system as a generic software program and this is an overly simple process to report bugs. See more