1. Question:Which programming language does PHP resemble to? 

    Answer
    PHP syntax resembles Perl and C






    1. Report
  2. Question:What is the main difference between PHP 4 and PHP 5? 

    Answer
    PHP 5 presents many additional OOP (Object Oriented Programming) features.






    1. Report
  3. Question:Discuss five predefined subscript of $_FILES super global variable? 

    Answer

    a. $_FILES['file']['name']: The name of the file as uploaded from the client to the server. b. $_FILES['file']['type']: The MIME type of the uploaded file. Whether this variable is assigned depends on the browser capabilities. c. $_FILES['file']['size']: The byte size of the uploaded file. d. $_FILES['file']['tmp_name']: Once uploaded, the file will be assigned a temporary name before it is moved to its final location. e. $_FILES['file']['error']: An upload status code.






    1. Report
  4. Question:Why explode() is used?

     

    Answer
    The explode() function splits a string into a series of substrings, with each string boundary determined by a specific separator.

    Its prototype: explode(string separator, string string [, int limit]).







    1. Report
  5. Question:What are passing arguments by reference and passing arguments by value?

     

    Answer
    Passing arguments by value: 
    Means any changes made to those values within the scope of the function are ignored outside of the function.
    Passing arguments by reference:
    Means any changes made to those values within the scope of the function are reflected outside of the function.






    1. Report
Copyright © 2025. Powered by Intellect Software Ltd