Multiple choice php Variables always start with a ........ in PHP Pond-sign Yen-sign Dollar-sign Euro-sign Reveal answer Fill a bubble to check yourself C Correct answer Explanation In PHP, all variables must begin with a dollar sign ($). This distinguishes variables from language constructs and functions. AI explanation AI 1 To answer this question, you need to understand how variables are declared in PHP. In PHP, variables always start with a dollar sign ($) followed by the variable name. Therefore, the correct answer is C) Dollar-sign. Thanks Wrong explanation