Computer Science, asked by MattinBorang, 11 hours ago

Which of the following is wrong in reference to naming variable/Identifier?
Special symbols are not allowed
Underscore are not allowed for variable names
Spaces are not allowed for variable names.
Keywords are not allowed for variable names.
d. All of the above​

Answers

Answered by Varyanijia
0

Explanation:

I believe the answer is underscore

Answered by shilpa85475
1

Underscore are not allowed for variable names.

Explanation:

It is a false statement as underscores are allowed in naming the variables.

Spaces are not allowed for variable names.

Keywords are not allowed for variable names.

Variables can have letters, numbers, and underscores.

Variable names can start with a letter or an underscore, but can not start with a number.

Spaces are not allowed in variable names, so we use underscores instead of spaces.

For example, user_name instead of "user name"

Similar questions