This test is run by .
Note that your final mark will not be saved in the system.
Note that your final mark will not be saved in the system.
7 - Context-free Languages GapFill
Target Level
C
Running Total
0
0%
Attempt
1 of 3
You must fill all the gaps before clicking ‘Check Answers!’
The following is a BNF definition for a decimal number, which...
- begins with either a minus sign or no sign...
- which is then followed by one or more digits...
- which is then followed by a decimal point...
- which is then followed by one or more digits.
<decimal> ::= <sign> <digits> <point>
::= - |
<digits> ::=
| <digit>
::= .
::= 0|1|2|3|4|5|6|7|8|9|0