Skip to content

Commit

Permalink
add question- 64,65,66 with answer (#2748)
Browse files Browse the repository at this point in the history
  • Loading branch information
BHARGAVPATEL1244 committed Dec 7, 2021
1 parent 8dbd96f commit 159bdc1
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions php/php-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -816,3 +816,32 @@ Dog
- [ ] use myApp\myNamespace\ClassA, ClassB, ClassC;
- [ ] use myApp\myNamespace\[ClassA, ClassB, ClassC];
- [ ] use myApp\myNamespace\(ClassA, ClassB, ClassC);

##### Q64.Which is the most complete list of data types that PHP supports?

- [x] string, integer, float, boolean, array, object, NULL, resource
- [ ] string, integer, boolean, array, object, NULL, resource
- [ ] string, integer, float, array, object, NULL, resource
- [ ] string, integer, float, boolean, array, object, NULL

[reference](https://www.w3schools.com/php/php_datatypes.asp)

##### Q65. What type of computer language is PHP?

- [x] server-side scripting language
- [ ] compiled language
- [ ] machine language
- [ ] algorithmic language

[reference](https://www.quora.com/Which-programming-language-is-used-to-create-PHP)


##### Q66.Which superglobal variable holds information about headers, paths, and script locations?

- [x] $_SERVER
- [ ] $SERVER_VARIABLES
- [ ] $_ENV
- [ ] $GLOBALS

[reference](http://www-db.deis.unibo.it/courses/TW/DOCS/w3schools/php/php_superglobals.asp.html)

0 comments on commit 159bdc1

Please sign in to comment.