1. Question: To use the mysqli extension which line is need to add?

    A
    extension = php_mysql.dll

    B
    extension = php_mysqli.dll

    C
    with.mysql[= DIR]

    D
    php.info()

    Note: Not available
    1. Report
  2. Question: The mysql function in php are ______.

    A
    Case sensitive

    B
    Case insensitive

    C
    variable

    D
    constant

    Note: Not available
    1. Report
  3. Question: Which of the following is the correct way to creating instance of class mysqli?

    A
    $mysql=new mysqli('localhost','user','password','database_name');

    B
    $mysql=new mysqli('localhost','user','password'); $mysqli->select_db('database_name');

    C
    $mysql= new mysqli(); $mysqli->connect('localhost','user','password','database_name');

    D
    All

    Note: Not available
    1. Report
  4. Question: State whether true or false: Transactions and commit/rollback are supported by MySQL using the MyISAM engine

    A
    True

    B
    False

    Note: Not available
    1. Report
  5. Question: What will happen if  you write the following statement on the MySQL prompt? SELECT NOW();

    A
    It will display the current date

    B
    It will display the error message as now does not exist.

    C
    It will display a syntax error near ‘()

    Note: Not available
    1. Report
Copyright © 2024. Powered by Intellect Software Ltd