Name Forms

A name is a string of characters used to identify some entity in a program.
👁 314
statistics
calculate
Questions #: 12
Time:
Pass Score: 80.0%
Style
Mode

The use of underscores and mixed case in names is a programming style issue, not a language design issue.

POINTS (1)

Correct Answer

Explanation

Case sensitive names

It is a concept that considers uppercase and lowercase letters in names are distinct.

POINTS (1)

Correct Answer

Explanation

The int type in Java specifies a value range of

POINTS (1)

Correct Answer

Explanation

Names in Java have no length limit

POINTS (1)

Correct Answer

Explanation

C99 has no length limitation on its internal names, but only the first 63 are significant

POINTS (1)

Correct Answer

Explanation

External names in C99

(those defined outside functions, which must be handled by the linker) are restricted to _____ characters

POINTS (1)

Correct Answer

Explanation

C++ does not specify a length limit on names, although implementers sometimes do

POINTS (1)

Correct Answer

Explanation

In C++,

variable sun is same as variable Sun

POINTS (1)

Correct Answer

Explanation

Names in C# have no limit

POINTS (1)

Correct Answer

Explanation

In C#, variable drive is not same as variable DRIVE

POINTS (1)

Correct Answer

Explanation

Fortran 95+ allows up to 31 characters in its names

POINTS (1)

Correct Answer

Explanation

Names in Ada have no length limit, and all characters in them are significant

POINTS (1)

Correct Answer

Explanation

Views:
Trials:
Avg score:
0
sin cos tan
sin-1 cos-1 tan-1 π e
xy x3 x2 ex 10x
y√x 3√x √x ln log
( ) 1/x % n!
7 8 9 + MS
4 5 6 M+
1 2 3 × M-
0 . EXP ÷ MR
± RND C = MC

Document Actions