Ask Question
11 March, 13:29

A PHP variable name a. can contain special characters b. can start with a letter, a digit, or two underscores c. can be a PHP reserved word d. is case-sensitive

+1
Answers (1)
  1. 11 March, 16:49
    0
    D) is case sensitive

    Explanation:

    All the other given options (A-C) are false about naming variables in PHP programming language. As a matter of fact PHP like other major programming languages have strict rules for naming variables to used in a program. Summarily for a variable to be valid.

    Can't be a special or reserved word. It's name must start with a letter or underscore (single underscore) followed others (letters, numbers or underscores), letters refer to the alphabet A-Z, a-z, numbers are 0-9. Cannot contain special characters
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “A PHP variable name a. can contain special characters b. can start with a letter, a digit, or two underscores c. can be a PHP reserved word ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers