Site icon Freshershome

PART-II – PHP interview questions

PHP interview questions PART-II, For Fresher Pass out graduates

  1. How can we repair a MySQL table?
  2. What are the advantages of stored procedures, triggers, indexes?
  3. What is maximum size of a database in MySQL?
  4. Give the syntax of Grant and Revoke commands?
  5. Explain Normalization concept?
  6. What is the maximum length of a table name, database name, and fieldname in MySQL?
  7. How many ways we can we find the current date using MySQL?
  8. What are the advantages and disadvantages of Cascading Style Sheets?
  9. What type of inheritance that PHP supports?
  10. How can increase the performance of MySQL select query?
  11. How many values can the SET function of MySQL take?
  12. What are the other commands to know the structure of table using MySQL commands except explain command?
  13. How many tables will create when we create table, what are they?
  14. What is the purpose of the following files having extensions 1) .frm 2) .myd 3) .myi? What do these files contain?
  15. How can we find the number of rows in a table using MySQL?
  16. How can we find the number of rows in a result set using PHP?
  17. The structure of table view buyers is as follows:
    +----------------+-------------+------+-----+---------+----------------+
    | Field | Type | Null | Key | Default | Extra |
    +----------------+-------------+------+-----+---------+----------------+
    | user_pri_id | int(15) | | PRI | NULL | auto_increment |
    | userid | varchar(10) | YES | | NULL | |
    +----------------+-------------+------+-----+---------+----------------+

    the value of user_pri_id the last row 2345 then What will happen in the following conditions?

    Condition1: Delete all the rows and insert another row then. What is the starting value for this auto incremented field user_pri_id ,
    Condition2: Delete the last row(having the field value 2345) and insert another row then. What is the value for this auto incremented field user_pri_id

  18. What are the advantages/disadvantages of MySQL and PHP?
  19. What is the difference between GROUP BY and ORDER BY in Sql?
  20. What is the difference between char and varchar data types?
  21. What is the functionality of md5 function in PHP?
  22. When viewing an HTML page in a Browser, the Browser often keeps this page in its cache. What can be possible advantages/disadvantages of page caching? How can you prevent caching of a certain page (please give several alternate solutions)?
  23. What are the different methods of passing data or information between two calls of a web page? What are the advantages/disadvantages of these methods?
  24. An Apache web server is running on a Linux system. Suddenly, the web server delivers the pages very slow. How could you find out possible reasons for that (when using system commands, please specify their names)?
  25. What are the different ways to login to a remote server? Explain the means, advantages and disadvantages?
  26. Please give a regular expression (preferably Perl/PREG style), which can be used to identify the URL from within a HTML link tag. Example: The regular expression should match the tag <A HREF=”http://www.freshershome.com/”> and give the URL (”http://www.freshershome.com /”) as a return result. Tags should also be matched if they contain other attributes than the HREF attribute.
  27. How can I load data from a text file into a table?
  28. How can we know the number of days between two given dates using MySQL?
  29. How can we know the number of days between two given dates using PHP?
  30. How can we change the name of a column of a table?
  31. How can we change the name and data type of a column of a table?
  32. What are the differences between drop a table and truncate a table?
  33. When you want to show some part of a text displayed on an HTML page in red font color, what different possibilities are there to do this? What are the advantages/disadvantages of these methods?
  34. A select query over a large table runs very slow because of the growing number of entries in that table. What different measures could be taken to improve speed?
  35. A company wants to store their invoices in a database. They already have their customers and articles in that database. Both customer and article are each identified by an unique integer value. Please create the SQL statements for creating the necessary table(s) for storing the invoices in a MySQL database. An invoice should hold information like invoice number, customer, date, article(s) and quantity etc.
  36. For the database from the previous question, please give an SQL query which returns the invoice number of all invoices which contain the article with the number “1234?. The query should be able to run under a MySQL 4.0 database.
  37. How would you backup and restore a big MySQL database? What are the advantages of the approach which you have taken over the others?
  38. How can I find what type of images that the PHP version supports?
  39. The table tbl_sites contains the following data:
    -----------------------------------------------------
    Userid sitename country
    ------------------------------------------------------
    1 Ilyas indian
    2 thewalkin KarnaTaka
    3 PHP.net usa
    4 PHPtalk.com germany
    5 MySQL.com usa
    6 sureshbabu canada
    7 PHPbuddy.com pakistan
    8. PHPtalk.com austria
    9. PHPfreaks.com sourthafrica
    10. PHPsupport.net russia
    11. sureshbabu australia
    12. sureshbabu nepal
    13. PHPtalk.com italy

    Write a select query that will displayed the duplicated site name and how many times it is duplicated? …
  40. Create a PHP web script with the following attributes: on start, three HTML form elements are shown: an string input field, a checkbox field, a dropdown/pull down list with 5 elements and a submit button. On submission, the form should be redisplayed (while remaining all options/inputs as the user has selected/entered them). Additionally, the selections/inputs of the user should be displayed in text. Please solve this without the use of any external libraries.
  41. What is MIME?
  42. What is PEAR in PHP?
  43. How can I use the COM components in PHP?
  44. How can I load the DLLs dynamically?
  45. How many ways we can give the output to a browser?
  46. How can we know that a session is started or not?
  47. What is the default session time in PHP and how can I change it?
  48. What changes I have to done in PHP.ini file for file uploading?
  49. What are the differences between MySQL_fetch_array(), MySQL_fetch_object(), MySQL_fetch_row()?
  50. How can I set a cron and how can i execute it in Unix, Linux, and windows?
  51. Steps for the payment gateway processing?
  52. How many ways I can register the variables into session?
  53. Explain different types of errors in PHP (i.e. arguments in errorreporting function)?
  54. How many ways I can redirect a PHP page?
  55. List out different arguments in PHP header function?
  56. What type of headers have to add in the mail function in which file a attached?
  57. What is the difference between
  58. What are the differences between PHP3 and PHP4 versions?
  59. What are the differences between include() and include_once() functions?
  60. Describe the importance of DABA BASE ABSTRACTION LAYERS in PHP and database connection?
  61. Explain MySQL optimization?
  62. What is the difference between using copy() and move() function in PHP file uploading?
  63. What is the difference between Reply-to and Return-path in the headers of a mail function?
  64. Explain about Type Juggling in PHP?
  65. How can I get the only name of the current executing file?
  66. How can I embed a java programme in PHP file and what changes have to be done in PHP.ini file?

To Read Part – I Click here

Exit mobile version