Loading [MathJax]/jax/output/HTML-CSS/fonts/TeX/fontdata.js

L-10 Create a matrix table multiplication exercise

Create a script that shows all the multiplication tables from numbers from 1 to 10 (and all the results by multiplying each number with each number from 1 to 10). Example follows:

1, 2, 3, 4, 5, 6, 7, 8, 9, 10

2, 4, 6, 8, 10, 12, 14,16, 18, 20,

3, 6, 9, 12, 15, 18, 21, 24, 27, 30

etc.

Estimated time: 20 Mins.

L-11 Prime Numbers exercise

Check all numbers from 1 to 100 and print to the console only the primes.

p.s. Primes are the numbers that are perfectly divisible ONLY by themselves and 1!

Estimated Time: 30 Minutes