431,201 views
44 votes
44 votes
What can be the maximum possible length of an identifier 3163 79 can be of any length​

User Rokive
by
3.0k points

1 Answer

10 votes
10 votes

Answer:

79 characters

Step-by-step explanation:

The programming language is not stated, but a little search online shows the question is about python programming language

Literally, identifiers are the names given to variables, arrays and functions.

In most programming languages (e.g. python), identifiers are case-sensitive.

i.e. Abc is a different identifier when compared to abc.

Having said that, python allows up to 79 characters to name an identifier.

Meaning that, the length of a variable name (or array, or function, etc.) can be up to 79 characters, and it cannot exceed 79 characters.

User Andrew  Nexintong
by
2.5k points