Please enter the following Common Lisp program before answering the questions below:
* (defun split-by-one-space (string) "Returns a list of substrings of string divided by ONE space each. Note: Two consecutive spaces will be seen as if there were an empty string between them." (loop for i = 0 then (1+ j) as j = (position #\Space string :start i) collect (subseq string i j) while j))
With your team, enter the output from the following Common Lisp statements:
(search "the" "the quick brown fox jumps over the lazy dog")
(search "the" "the quick brown fox jumps over the lazy dog" :from-end t)
(search "THE" "the quick brown fox jumps over the lazy dog")
(string-upcase "the quick brown fox jumps over the lazy dog")
(string-downcase "THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG")
(string-capitalize "the quick brown fox jumps over the lazy dog")
(string= "fox" "dog")
(string= "dog" "Dog")
(split-by-one-space "the quick brown fox jumps over the lazy dog")
(nreverse (split-by-one-space "the quick brown fox jumps over the lazy dog"))
(loop for char across "the quick brown fox jumps over the lazy dog" collect char)
(split-by-one-space "for (i = 0; i < 5; i = i + 1)")
Since this is a group assignment, please write the names of each member of your team on your assignment submission along with "Exercise 11b".