certificationy / symfony-pack

A series of questions to prepare for the Symfony certification
https://certification.symfony.com/
MIT License
328 stars 132 forks source link

some aquestions added #67

Closed ismail1432 closed 6 years ago

ismail1432 commented 6 years ago

Thank you for this magic tool ! I just added few questions, fell free to give me your feedback

20uf commented 6 years ago

Thank you for your contribution @ismail1432 .

I would like you to add help, on the one hand it helps to confirm your answers and on the second hand to help the user who is doing the test.

Example:

category: PHP
questions:
    -
        question: 'Which of the following tags are an acceptable way to begin a PHP 5 Code block?'
        answers:
            - {value: '<SCRIPT LANGUAGE="php">',                              correct: true}
            - {value: '<!',                                                   correct: false}
            - {value: '<%',                                                   correct: true}
            - {value: '<?',                                                   correct: true}
        help: |
            http://php.net/manual/en/language.basic-syntax.phptags.php

If you want more information about this feature: https://github.com/certificationy/certificationy-cli/pull/33

Regards