We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1
1. A variable declared outside the function has a …. Scope.
2. A variable declared within the function has a …. Scope.
3. …. Are statement in PHP that are not visible in output. 4. …. Loop works only on array. 5. The … statement allows programmer to make decision based on condition which results to true only. 6. A …. Is the series of characters. 7. A …. Is the block of statement that can be used repeatedly in a program. 8. An … is the special variable which can hold more than 1 value at a time. 9. An …. Store multiple values in single variable. 10. The …. PHP function is used to create an array variable. 11. There are …. Types of array in PHP. 12. The…. Array has numeric index. 13. The…. Array are the array with named index. 14. The …. Array are the arrays with one or more arrays. 15. The…. Function is used to return the length of array. 16. Information can be passed to a function through …. 17. …. Are specified after the function name, inside the parentheses. 18. The … statement is used to let a function return a value. 19. The form data is sent with the …… method. 20. …. Is an array of variable passed via the URL parameter. 21. … is an array of variable passed via the HTTP POST method. 22. Information send from a form with …. Method is visible to everyone. 23. ….. method may be used for sending non sensitive data. 24. Information send from a form with …. Method is invisible to everyone. 25. ….. method has no limits on the amount of information to be send. 26. A … function declaration start with the function keyWord. 27. In array,‘=>’ is used for …… and value. 28. PHP has many …. Functions that can be called directly to perform specific task. 29. In PHP form handling both GET and POST are treated as $_GET and $_POST ………. 30. In …. Method variables are visible in URL ,it possible to bookmark the page.