show/hide this revision's text 2 We dont use the numbers here.

a)

  1. None. Level 1 includes Level 2. Maybe I misunderstood you, so to be complete:

    • Regular Languages are used within Regular Expression ParsingMatching. Colloquial: DFAs can not count. And you need to count if you want to match brackets. [Level 3]
    • Language Syntax is normally a Context Free LanguagesLanguage.

    bSee 2) [Level 2]

  2. Context Sensitive Language are used only theoretically. See 3) [Level 1]
  3. It helps in designing lexers and parsers. I do not know if the creators of C thought about that, but Java, certainly.

    c) Parser Generator

  4. Turing Machines calculate anything that can be calculated. "Can be calculated" is even defined as: Can be accepted by a Turing Machine. This includes, of course, natural language processing. Anything above Level 2 is not very useful for language generation, because a program reading such inputs may not stop (Word Problem can no longer be solved).

show/hide this revision's text 1

a) None. Level 1 includes Level 2. Maybe I misunderstood you, so to be complete:

  • Regular Languages are used within Regular Expression Parsing.
  • Language Syntax is normally a Context Free Languages.

b) It helps in designing lexers and parsers. I do not know if the creators of C thought about that, but Java, certainly.

c) Turing Machines calculate anything that can be calculated. "Can be calculated" is even defined as: Can be accepted by a Turing Machine. This includes, of course, natural language processing.