PHP MCQ Question and Answer
PHP MCQ Question and Answer
3. In php string data are
- delimited by single quote
- delimited by double quote
- delimited by <<< identifier
- All of above
4. Which of the following delimiting method is known as string Interpolation
- delimited by single quote
- delimited by double quote
- delimited by <<< identifier
- All of above
7. Casting operator introduced in PHP 6 is
- (array)
- (int64)
- (real) or (double) or (float)
- (object)
8. 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
10. Which of folowiing variable assignment is 'by value' assignment in PHP
- $value1= $value?
- $value1= & $value?
- $value1= & $value?
- None