Question

Proving Kleene’s (“KLAY-nee’s”) theorem involves developing an algorithm to convert these strings into DFAs. For 10 points each:
[10m] Name these strings used for pattern matching in text with tools like Python’s “re” module. A textbook application of these strings is to check whether an email address is valid.
ANSWER: regular expressions [or regex] (“DFA” stands for “deterministic finite automaton.”)
[10h] This Ken Thompson–developed command line tool, which is commonly used alongside sed and awk, prints lines that match a given regular expression. This tool’s “c” flag makes it return only the number of matches in each queried file.
ANSWER: grep [or global regular expression print or global slash regular expression search slash and print]
[10e] A regular expression can define a “regular” one of these sets. ChatGPT relies on an LLM, or “large” model of these sets.
ANSWER: formal languages [accept regular languages; accept large language model]
<David Bass, Science - Computer Science&gt; ~23206~ &lt;Editor: David Bass>

Back to bonuses