Ask 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 d. is case-sensitive

+3
Answers (1)
  1. 7 January, 22:20
    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?
Find 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 the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers