Substring
The bounds of "the" in "eat the food"
What is [5, 7]?
The output when "Mr." and "Darcy" are joined
What is "Mr.Darcy"?
The length of "gram"
What is 4?
y <- y + x
What is the appending of x to y?
1
What is a number?
What is x gets LENGTH y?
y <- "hi"
What is y gets "hi"?
"hi"
What is a string?
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.
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?