Multiple choice technology web technology When defining identifier in PHP you should remember that Identifier are case sensitive. So $result is different than $ result Identifiers can be any length Both of above None of above Reveal answer Fill a bubble to check yourself C Correct answer Explanation PHP identifiers (variables) are case-sensitive (e.g., \$result is different from \$Result), and they can be of any length. Thus, both statements are correct.