QC: Take the last letters of the words in "Augusta Ada King" and concatenate them using a space.
QS: The last letter of "Augusta" is "a". The last letter of "Ada" is "a". The last letter of "King" is "g". Concatenating "a", "a", "g" using a space leads to "a a g". So, "Augusta Ada King" outputs "a a g".
A: "a a g"
QS: [EOQ]

QC: Take the letters at position 4 of the words in "Oren Etzioni AllenInstitute" and concatenate them.
QS: The letter at position 4 of "Oren" is "n". The letter at position 4 of "Etzioni" is "i". The letter at position 4 of "AllenInstitute" is "e". Concatenating "n", "i", "e" leads to "n i e". So, "Oren Etzioni AllenInstitute" outputs "n i e".
A: "n i e"
QS: [EOQ]

QC: Take the letters at position 1 of the words in "Alan Mathison Turing" and concatenate them using a space.
QS: The letter at position 1 of "Alan" is "A". The letter at position 1 of "Mathison" is "M". The letter at position 1 of "Turing" is "T". Concatenating "A", "M", "T" using a space leads to "A M T". So, "Alan Mathison Turing" outputs "A M T".
A: "A M T"
QS: [EOQ]