PHP Interview Questions and Answers for freshers and experienced – 04
Questions : 61 | What are the other commands to know the structure of table using MySQL commands except explain command? |
Answer : 61 | describe Table-Name; |
Questions : 62 | How many tables will create when we create table, what are they? |
Answer : 62 | The ‘.frm’ file stores the table definition. The data file has a ‘.MYD’ (MYData) extension. The index file has a ‘.MYI’ (MYIndex) extension, |
Questions : 63 | What is the purpose of the following files having extensions 1) .frm 2) .myd 3) .myi? What do these files contain? |
Answer : 63 | In MySql, the default table type is MyISAM. Each MyISAM table is stored on disk in three files. The files have names that begin with the table name and have an extension to indicate the file type. The ‘.frm’ file stores the table definition. The data file has a ‘.MYD’ (MYData) extension. The index file has a ‘.MYI’ (MYIndex) extension, |
Questions : 64 | What is maximum size of a database in MySQL? |
Answer : 64 | If the operating system or filesystem places a limit on the number of files in a directory, MySQL is bound by that constraint.The efficiency of the operating system in handling large numbers of files in a directory can place a practical limit on the number of tables in a database. If the time required to open a file in the directory increases significantly as the number of files increases, database performance can be adversely affected. The amount of available disk space limits the number of tables. MySQL 3.22 had a 4GB (4 gigabyte) limit on table size. With the MyISAM storage engine in MySQL 3.23, the maximum table size was increased to 65536 terabytes (2567 – 1 bytes). With this larger allowed table size, the maximum effective table size for MySQL databases is usually determined by operating system constraints on file sizes, not by MySQL internal limits.The InnoDB storage engine maintains InnoDB tables within a tablespace that can be created from several files. This allows a table to exceed the maximum individual file size. The tablespace can include raw disk partitions, which allows extremely large tables. The maximum tablespace size is 64TB. The following table lists some examples of operating system file-size limits. This is only a rough guide and is not intended to be definitive. For the most up-to-date information, be sure to check the documentation specific to your operating system. Operating System File-size LimitLinux 2.2-Intel 32-bit 2GB (LFS: 4GB) Linux 2.4+ (using ext3 filesystem) 4TB Solaris 9/10 16TB NetWare w/NSS filesystem 8TB Win32 w/ FAT/FAT32 2GB/4GB Win32 w/ NTFS 2TB (possibly larger) MacOS X w/ HFS+ 2TB |
Questions : 65 | Give the syntax of Grant and Revoke commands? |
Answer : 65 | The generic syntax for grant is as following > GRANT [rights] on [database/s] TO [username@hostname] IDENTIFIED BY [password] now rights can be a) All privileges b) combination of create, drop, select, insert, update and delete etc.We can grant rights on all databse by using *.* or some specific database by database.* or a specific table by database.table_name username@hotsname can be either username@localhost, username@hostname and username@% where hostname is any valid hostname and % represents any name, the *.* any condition password is simply the password of userThe generic syntax for revoke is as following > REVOKE [rights] on [database/s] FROM [username@hostname] now rights can be as explained above a) All privileges b) combination of create, drop, select, insert, update and delete etc. username@hotsname can be either username@localhost, username@hostname and username@% where hostname is any valid hostname and % represents any name, the *.* any condition |
Questions : 66 | Explain Normalization concept? |
Answer : 66 | The normalization process involves getting our data to conform to three progressive normal forms, and a higher level of normalization cannot be achieved until the previous levels have been achieved (there are actually five normal forms, but the last two are mainly academic and will not be discussed).First Normal FormThe First Normal Form (or 1NF) involves removal of redundant data from horizontal rows. We want to ensure that there is no duplication of data in a given row, and that every column stores the least amount of information possible (making the field atomic).Second Normal FormWhere the First Normal Form deals with redundancy of data across a horizontal row, Second Normal Form (or 2NF) deals with redundancy of data in vertical columns. As stated earlier, the normal forms are progressive, so to achieve Second Normal Form, your tables must already be in First Normal Form.Third Normal FormI have a confession to make; I do not often use Third Normal Form. In Third Normal Form we are looking for data in our tables that is not fully dependant on the primary key, but dependant on another value in the table |
Questions : 67 | How can we find the number of rows in a table using MySQL? |
Answer : 67 | Use this for mysql >SELECT COUNT(*) FROM table_name; |
Questions : 68 | How can we find the number of rows in a result set using PHP? |
Answer : 68 | $result = mysql_query($sql, $db_link); |
Questions : 69 | How many ways we can we find the current date using MySQL? |
Answer : 69 | SELECT CURDATE(); CURRENT_DATE() = CURDATE() for time use SELECT CURTIME(); CURRENT_TIME() = CURTIME() |
Questions : 70 | What are the advantages and disadvantages of Cascading Style Sheets? |
Answer : 70 | External Style SheetsAdvantagesCan control styles for multiple documents at once. Classes can be created for use on multiple HTML element types in many documents. Selector and grouping methods can be used to apply styles under complex contextsDisadvantagesAn extra download is required to import style information for each document The rendering of the document may be delayed until the external style sheet is loaded Becomes slightly unwieldy for small quantities of style definitionsEmbedded Style SheetsAdvantages Classes can be created for use on multiple tag types in the document. Disadvantages This method can not control styles for multiple documents at once Inline Styles Advantages Useful for small quantities of style definitions. Can override other Disadvantages Does not distance style information from content (a main goal of |
Questions : 71 | What type of inheritance that PHP supports? |
Answer : 71 | In PHP an extended class is always dependent on a single base class, that is, multiple inheritance is not supported. Classes are extended using the keyword ‘extends’. |
Questions : 72 | What is the difference between Primary Key and Unique key? |
Answer : 72 | Primary Key: A column in a table whose values uniquely identify the rows in the table. A primary key value cannot be NULL.Unique Key: Unique Keys are used to uniquely identify each row in the table. There can be one and only one row for each unique key value. So NULL can be a unique key.There can be only one primary key for a table but there can be more than one unique for a table. |
Question : 73 |
what is garbage collection? default time ? refresh time? |
Answer : 73 | Garbage Collection is an automated part of PHP , If the Garbage Collection process runs, it then analyzes any files in the /tmp for any session files that have not been accessed in a certain amount of time and physically deletes them. Garbage Collection process only runs in the default session save directory, which is /tmp. If you opt to save your sessions in a different directory, the Garbage Collection process will ignore it. the Garbage Collection process does not differentiate between which sessions belong to whom when run. This is especially important note on shared web servers. If the process is run, it deletes ALL files that have not been accessed in the directory. There are 3 PHP.ini variables, which deal with the garbage collector: PHP ini value name default session.gc_maxlifetime 1440 seconds or 24 minutes session.gc_probability 1 session.gc_divisor 100 |
Questions : 74 | What are the advantages/disadvantages of MySQL and PHP? |
Answer : 74 | Both of them are open source software (so free of cost), support cross platform. php is faster then ASP and JSP. |
Questions : 75 | What is the difference between GROUP BY and ORDER BY in Sql? |
Answer : 75 | ORDER BY [col1],[col2],…,[coln]; Tels DBMS according to what columns it should sort the result. If two rows will hawe the same value in col1 it will try to sort them according to col2 and so on.GROUP BY [col1],[col2],…,[coln]; Tels DBMS to group results with same value of column col1. You can use COUNT(col1), SUM(col1), AVG(col1) with it, if you want to count all items in group, sum all values or view average |
Questions : 76 | What is the difference between char and varchar data types? |
Answer : 76 | Set char to occupy n bytes and it will take n bytes even if u r storing a value of n-m bytes Set varchar to occupy n bytes and it will take only the required space and will not use the n bytes eg. name char(15) will waste 10 bytes if we store ‘romharshan’, if each char takes a byte eg. name varchar(15) will just use 5 bytes if we store ‘romharshan’, if each char takes a byte. rest 10 bytes will be free. |
Questions : 77 | What is the functionality of md5 function in PHP? |
Answer : 77 | Calculate the md5 hash of a string. The hash is a 32-character hexadecimal number. I use it to generate keys which I use to identify users etc. If I add random no techniques to it the md5 generated now will be totally different for the same string I am using. |
Questions : 78 | How can I load data from a text file into a table? |
Answer : 78 | you can use LOAD DATA INFILE file_name; syntax to load data from a text file. but you have to make sure thata) data is delimited b) columns and data matched correctly |
Questions : 79 | How can we know the number of days between two given dates using MySQL? |
Answer : 79 | SELECT DATEDIFF(“2007-03-07″,”2005-01-01”); |
Questions : 80 | How can we know the number of days between two given dates using PHP? |
Answer : 80 | $date1 = date(“Y-m-d”); $date2 = “2006-08-15”; $days = (strtotime($date1) – strtotime($date2)) / (60 * 60 * 24); |