Ask Question
11 January, 22:15

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. 11 January, 22:39
    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 and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers