- Fork the gist with the button in the top right corner
- Make your changes (able to do so in browser, using the edit tool)
- Add a bullet point to
changes.md
with a note about what you're adding - Make a comment on this main gist with a link to your gist.
As soon as I can, I will merge your changes into this main gist!
Files are formated using markdown. See here.
Each file contains the questions and answers for one quiz. Unanswered questions are bolded. Questions have the following format:
- What is the color of the sky?
- Blue
Don't include wrong answers, except for choose all that apply, in that case, incorrect and correct answers should be listed, with [ ]
for incorrect answers and [X]
for correct ones. The question should be followed by (Check all)
. Example:
- Which classes at UF make me want to die? (Check all)
- - [X] OS
- [ ] All other classes
- [ ] Any other class
For questions with blanks, use _____
to denote blanks. Example:
- In Linux and Unix, the type of disk is determined by the `_____` device number, while the particular volume is identified by the `_____` device number.
- major, minor
For questions with matching, make a list of answers, with their matches being in italics. Example:
- What type of deadlock handling method is each of the following?
- Banker's Algorithm: *Deadlock avoidance*
- Total ordering of resource types: *Deadlock prevention*
- Preemption, rollback, or killing blocked process(es): *Deadlock detection and recovery*
- Full speed ahead an hope for the best: *Ostrich algorithm*
To avoid getting the files too cluttered, add you explanation as a collabsable section after the answer for the question you want to explain. Example:
- What is the color of the sky?
- Blue
<details>
<summary>6XAM's Explanation</summary>
This is due to the properties of light. Checkout this wikepedia article: https://en.wikipedia.org/wiki/Diffuse_sky_radiation
</details>
This will display as below:
- What is the color of the sky?
- Blue
6XAM's Explanation
This is due to the properties of light. Checkout this wikepedia article: https://en.wikipedia.org/wiki/Diffuse_sky_radiation
Modified