1. Question: Which of the following multithreaded servers allow PHP as a plug-in?

    A
    Netscape FastTrack

    B
    Microsoft's Internet Information Server

    C
    O'Reilly's WebSite Pro

    D
    All

    Note: Not available
    1. Report
  2. Question: Which of the following variable declarations within a class is invalid in PHP5?

    A
    private $type = 'moderate';

    B
    internal $term =3;

    C
    public $amnt = '500';

    D
    protected $name = 'Quantas Private Limited';

    Note: Not available
    1. Report
  3. Question: Which of the following is not a predefined constant?

    A
    TRUE

    B
    FALSE

    C
    NULL

    D
    __FILE__

    E
    CONSTANT

    Note: Not available
    1. Report
  4. Question: The following php variables are declared:
    <?php
    $company = 'ABS Ltd';
    $$company = ',Sydney';
    ?>
    Which of the following is not a correct way of printing 'ABS Ltd, Sydney'?

    A
    echo "$company $$company";

    B
    echo "$company ${$company}";

    C
    echo "$company ${'ABS Led'}";

    D
    echo "$company {$$company}";

    Note: Not available
    1. Report
  5. Question: Which of the following is not true regarding XF orms?

    A
    PHP provides support for XF orm

    B
    It can be used on PDF documents

    C
    The data is sent in XML format

    D
    The action and method parameters are defined in the body

    Note: Not available
    1. Report
  6. Question: You have two strings, which you want to concatenate. $str1 = 'Have a'; $str2 = 'Nice Day'; The fastest way would be:

    A
    $str1.Concat($str2);

    B
    $str1.$str2;

    C
    "$str1$str2";

    D
    None

    Note: Not available
    1. Report
  7. Question: Which of the following variable declarations within a class is invalid in PHP5?

    A
    private $type = 'moderate';

    B
    internal $term =3;

    C
    public $amnt = '500';

    D
    protected $name = 'Quantas Private Limited';

    Note: Not available
    1. Report
  8. Question: What PHP stands for?

    A
    Hypertext Preprocessor

    B
    Pre Hypertext Processor

    C
    Pre Hyper Processor

    D
    Pre Hypertext Process

    Note: Not available
    1. Report
  9. Question: How does the identity operator === compare two values?

    A
    It converts them to a common compatible data type and then compares the resulting values<br /><br />

    B
    It returns True only if they are both of the same type and value

    C
    If the two values are strings, it performs a lexical comparison

    D
    It converts both values to strings and compares them

    Note: Not available
    1. Report
  10. Question: Which of the following tags are an acceptable way to begin a PHP Code block?

    A
    <SCRIPT LANGUAGE="php">

    B
    <!

    C
    <%

    D
    <?php

    E
    <?

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