Multiple choice .net

The standard prefix to signify a class is:

  1. B

  2. C

  3. L

  4. S

  5. T

Reveal answer Fill a bubble to check yourself
E Correct answer
Explanation

In standard Hungarian notation and many naming conventions, 'T' is the prefix used to signify a type or class (e.g., TForm, TButton). 'C' is typically for controls or constants, 'B' for boolean, 'L' for local variables, and 'S' for strings or structures. The T-prefix convention is particularly common in Delphi, VCL, and some older Microsoft frameworks.

AI explanation

To answer this question, we need to understand the standard prefix used to signify a class.

Option A) B - This option is incorrect because "B" is not a standard prefix used to signify a class.

Option B) C - This option is incorrect because "C" is not a standard prefix used to signify a class.

Option C) L - This option is incorrect because "L" is not a standard prefix used to signify a class.

Option D) S - This option is incorrect because "S" is not a standard prefix used to signify a class.

Option E) T - This option is correct because "T" is the standard prefix used to signify a class.

The correct answer is E) T. This option is correct because "T" is the standard prefix commonly used to signify a class.