- 1. What does PHP stand for?
A) Private Hosting Protocol B) Personal Home Page C) Hypertext Preprocessor D) Programming Hypertext Pages
- 2. When was PHP developed?
A) 1999 B) 1991 C) 2000 D) 1994
- 3. Is one of the most popular server side scripting languages used for web development
A) JavaScript B) PHP C) HTML D) Python
- 4. A PHP script starts with <?php and ends with ________.
A) </script> B) ?> C) --> D) >
- 5. Which of the following are PHP development tools? Except.
A) XAMPP B) PhpStorm C) NetBeans D) Notepad
- 6. It is the command used to display statements in PHP
A) display statement B) write statement C) print statement D) show statement
- 7. The default file extension for PHP files is ________.
A) .php B) .js C) .txt D) .html
- 8. What symbol is used to terminate PHP statements?
A) comma(,) B) colon(:) C) semicolon (;) D) dot(.)
- 9. Which folder is commonly used to store PHP files in XAMPP?
A) public_html B) www C) htdocs D) php_root
- 10. This is the software used to run the program and see the output of every PHP file ______.
A) xampp B) Ide C) notepad D) MySql
- 11. How do PHP variables begin?
A) # B) . C) $ D) ;
- 12. What symbol is used to concatenate strings in PHP?
A) , B) + C) & D) .
- 13. Which function counts elements in an array?
A) sum() B) total() C) size() D) count()
- 14. A ___________ is a means of storing value, such as text string or the integer value.
A) constant B) character C) variable D) container
- 15. What was the original name of PHP?
A) Personal Home Page B) Pre-HTML Processor C) Private Hosting Project D) Personal Hypertext Pages
A) Tim Berners-Lee B) Brendan Eich C) Rasmus Lerdorf D) Dennis Ritchie
- 17. Can PHP run on different platforms?
A) Yes B) No
- 18. Is PHP case-sensitive in variable names?
A) Yes B) No
- 19. Can PHP run on multiple operating systems?
A) No B) Yes
- 20. Which are NOT valid rules for naming PHP variables?
A) Must start with $ B) Must start with a letter or underscore C) variables are case sensitive D) Can contain spaces
- 21. Which tools can NOT be used to build PHP applications?
A) Visual Studio Code B) PhpStorm C) XAMPP D) MS Paint
- 22. Which are NOT a valid variable types in PHP?
A) Char B) Object C) String D) Boolean
- 23. Which of the following is used to add single line of comments in PHP?
A) // comment B) ## comment C) <!-- comment --> D) /* comment */
- 24. Which of the following is used to add multiple lines of comments in PHP?
A) ## comment B) // comment C) /* comment */ D) <!-- comment -->
- 25. Indicates a list of data with a consistent structure that can be searched and sorted.
A) Database B) Graph C) Flowchart D) Algorithm
- 26. Indicates when the program, process, or interrupt program begins and ends.
A) Process B) Terminal C) Document D) Off Page Connector
- 27. Used to indicate that the flow is continuing on a separate page in the flowchart. As labels, capital letters are usually utilized in the symbol
A) On Page Connector B) Process C) Terminal D) Off Page Connector
- 28. The term "readable data" refers to information that can be read by humans, such as printed output.
A) Process B) Document C) Off Page Connector D) Terminal
- 29. Any form of internal operation within the processor or memory is indicated by this symbol.
A) Terminal B) Process C) input/output D) Document
- 30. A diagram that depicts the actions and decisions required to complete a process. A diagram shape is used to represent each step in the sequence. Connecting lines and directional arrows connect the steps.
A) Flowchart B) Database C) Graph D) Algorithm
- 31. An operation can be performed with this symbol. This indicates that the computer will get data
A) Process B) Terminal C) On Page Connector D) input/output
- 32. On a flowchart page, it's used to substitute long lines.
A) On Page Connector B) Process C) input/output D) Terminal
- 33. AS INDICATED BY THE NAME, THIS FUNCTION WILL RETURN THE VALUE OF THE CONSTANT
A) variable B) count() C) Constant D) Object
- 34. Variables passed to a page or file on the query string
A) $_COOKIE B) $_POST C) $_FILES D) $_GET
- 35. Variables passed to a page or file through a form using the POST method Cookie variables
A) $_GET B) $_FILES C) $_COOKIE D) $_POST
A) $_GET B) $_POST C) $_COOKIE D) $_FILES
- 37. Variables containing information about the uploaded files
A) $_GET B) $_COOKIE C) $_FILES D) $_POST
- 38. PHP environment variable that returns the name of the host server.
A) $_ENV B) $_SESSION C) $_GET D) $_REQUEST
- 39. Variable passed into page or file through forms using string and cookie
A) $_REQUEST B) $_SESSION C) $_ENV D) $_GET
- 40. Server environment variables that returns the URL of the referring page Session variables
A) $_REQUEST B) $_SESSION C) $_ENV D) $_GET
- 41. This function returns true if the variable exists and is not NULL, otherwise it returns false.
A) isset() B) return() C) constant() D) count()
- 42. compare two values and returns a Boolean value depending on whether the test condition is true or false
A) Logical Operators B) Relational Operators
|