Quiz on Expressions

Test your understanding of expressions.

Expressions in functional programming and OCaml

1

(Select all that apply) Which of the following typical language elements of imperative programming languages do not exist in functional programming languages?

A)

Functions such as

square x = x * x
B)

Variable assignments such as

c = c + 1
C)

for/while loops such as

for (int i = 0; i < n; i++) {
   c = c + 1
}

while (i < n) {
   c = c + 1
}
Question 1 of 80 attempted

Get hands-on with 1200+ tech skills courses.