Search⌘ K

Quiz

Practice using loops in ReasonML through a series of coding challenges that help solidify your understanding of repeated operations and iterative processes. This lesson prepares you for more advanced concepts by strengthening your loop skills in an interactive way.

We'll cover the following...
Technical Quiz
1.

What are values printed by this loop?

for (i in 10 to 16) {
	Js.log(i * 2);
};
A.

20

22

24

26

28

30

B.

22

24

26

28

30

32

C.

22

24

26

28

30

D.

20

22

24

26

28

30

32


1 / 3

The following lessons contain coding ...