Substring
Join
Length
Assignment
λPω
100

The bounds of "the" in "eat the food"

What is [5, 7]?

100

The output when "Mr." and "Darcy" are joined

What is "Mr.Darcy"?

100

The length of "gram"

What is 4?

100

y <- y + x

What is the appending of x to y?

100

1

What is a number?

200
x <- the length of y

What is x gets LENGTH y?

200

y <- "hi"

What is y gets "hi"?

200

"hi"

What is a string?

300

What is the value of y if x is a defined variable after y + x <- y

Invalid syntax; assignment goes from right to left not from left to right.

300

What is the data type of x after the following code?

q <- "Hello World"

f <- 10
x <- LENGTH(JOIN(JOIN("A", "B"), q SUBSTRING(0,f)))

What is number or integer?