Programming Course for Beginners - ZedLX

The Easiest Online Computer Programming Course, for Free

Variables [11/14]

Names of variables must begin with a letter or an underscore (_) symbol. Other characters of a variable name must be letters, underscores or digits.
[Run the program]

A variable name cannot begin with a digit, but it can contain digits. A variable name cannot contain blanks, it must be a single word. Also, it cannot contain a minus (-) symbol.

Exercises 1-3:

Un-comment the erroneous lines one by one and correct the invalid variable names.
[Run the program]

Loading...