1. Question: The URl is built on segments.

    A
    true

    B
    false

    Note: Not available
    1. Report
  2. Question: http://mywebsite.ext/index.php/controller/method/parameters The above link is typically

    A
    URL

    B
    Query

    C
    Link

    Note: Not available
    1. Report
  3. Question: Which one will control all the segments?

    A
    index.php

    B
    parameters

    C
    method

    Note: Not available
    1. Report
  4. Question: http://mywebsite.ext/index.php/controller/method/parameters how many segments are used here?

    A
    3

    B
    5

    C
    6

    Note: Not available
    1. Report
  5. Question: http://mywebsite.ext/index.php/controller/method/parameters What’s the name of the first segment?

    A
    Controller

    B
    Index.php

    C
    Mywebsite

    Note: Not available
    1. Report
  6. Question: Which one will be treated as method in that URI?

    A
    Method

    B
    Controller

    C
    Index.php

    Note: Not available
    1. Report
  7. Question: Which provide extra functionality that can be used across multiple projects?

    A
    Classes

    B
    Libraries

    C
    Helpers

    D
    Plugins

    Note: Not available
    1. Report
  8. Question: When utilizing CodeIgniter resources we could use $CI in place of which super object?

    A
    $Ci

    B
    $THIS

    C
    $this

    D
    None

    Note: Not available
    1. Report
  9. Question: Which is not a Benchmark step?

    A
    Mark the ending point.

    B
    Run the function to show the current time.

    C
    Mark the starting point.

    D
    Run the function to show the elapsed time.

    Note: Not available
    1. Report
  10. Question: Which is the correct syntax for benchmark?

    A
    $this->benchmark->mark('end'); // something happens here $this->benchmark->mark('start'); echo $this->benchmark->elapsed_time('start', 'end');

    B
    $this->benchmark->mark('start'); // something happens here $this->benchmark->mark('end'); echo $this->benchmark->elapsed_time('start', 'end');

    C
    $this->benchmark->mark('end'); // something happens here $this->benchmark->mark('start'); echo $this->benchmark->current_time('start', 'end');

    D
    $this->benchmark->mark('start'); // something happens here $this->benchmark->mark('end'); echo $this->benchmark->elapsed_time('end', 'start');

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