Search⌘ K
AI Features

Test Your Knowledge!

Take this quiz to test what you've learned so far.

We'll cover the following...

Quiz on extending Elixir with metaprogramming

1.

Would the output of these two expressions yield the same result in our MathTest module?

assert (56 * 8) + (8 - (8 / 8)) == 8

and

assert 56 * 8 + 8 - 8 / 8 == 8
A.

Yes

B.

No

C.

Can’t be concluded from the given information.


1 / 7