1. Question: What is password salting?

    A
    Adding a function to a password.

    B
    Adding a string to a password to change its end hash.

    C
    Deleting previous string and adding new string to password.

    D
    None

    Note: Not available
    1. Report
  2. Question: How can you make complex password salting?

    A
    Adding the salt at the beginning of the password.

    B
    Replacing some string from password with salt.

    C
    None

    D
    Split the password up somewhere, and add the salt in the middle.

    Note: Not available
    1. Report
  3. Question: What is dynamic salting?

    A
    Salt is changed in every login

    B
    Salt is different for every user

    C
    Salt is loaded from database but same for all user

    D
    None

    Note: Not available
    1. Report
  4. Question: Which library is needed to call encode() and decode() functions to convert password encode or decode?

    A
    $this->load->library("encryption");

    B
    $this->load->library("encrypt");

    C
    $this->load->library("security");

    D
    None

    Note: Not available
    1. Report
  5. Question: What is the correct way to rename application as app and system as core folder in codeIgniter?

    A
    First open up confing/config.php for codeIgniter base folder and set as follows: $system_path = 'core'; $application_folder = 'app'; and finally change both folders name as above.

    B
    First open up index.php from codeIgniter base directory and set as follows: $system_path = 'core'; $application_folder = 'app'; and finally change both folders name as above.

    C
    First open up confing/constants.php for codeIgniter base folder and set as follows: $system_path = 'core'; $application_folder = 'app'; and finally change both folders name as above.

    D
    None

    Note: Not available
    1. Report
  6. Question: Which of the following functions related to the escaping queries in codeIgniter?

    A
    $this->db->escape()

    B
    $this->escape_str()

    C
    $this->escape_like_str()

    D
    $this->escape_string()

    Note: Not available
    1. Report
  7. Question: How function is used to turn on query caching in CodeIgniter?

    A
    $this->cache->on();

    B
    $this->db->cache_on()

    C
    $this->db->cache()

    D
    None

    Note: Not available
    1. Report
  8. Question: Which function is used to delete query cache?

    A
    $this->db->cache_delete()

    B
    $this->db->delete_cache()

    C
    $this->cache->delete()

    D
    None

    Note: Not available
    1. Report
  9. Question: Which hook point is called very early during system execution?

    A
    pre_system hook

    B
    pre_controller hook

    C
    post_controller hook

    D
    None

    Note: Not available
    1. Report
  10. Question: Which hook is called immediately before your Controller is called?

    A
    pre_system

    B
    pre_controller

    C
    post_controller_constructor

    D
    post_controller

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