Multiple choice technology

"---------" Converts the parameter to a string and encodes it in a URL-encoded format, where all nonalphanumeric characters are replaced with % hexadecimal sequences.

  1. eval

  2. getProperty

  3. escape

  4. call

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

The escape() function in ActionScript converts a parameter to a string and encodes it in URL-encoded format. All non-alphanumeric characters (except some like * @ - _ . +) are replaced with %XX hexadecimal sequences. For example, a space becomes %20. This is essential for passing data safely in URLs.