A language, with string manipulation facilities, uses the following operations: head (s): First character of a string tail (s): All, but the first character of a string concat (s1, s2) : s1 s2 For the string acbc, what will be the output of concat (head (s), head (tail (tail(s))))?
Reveal answer
Fill a bubble to check yourself