troubleshooting_Quiz.md - brainchildservices/curriculum GitHub Wiki

Quiz Session

1. What is Troubleshooting?

  • A: Troubleshooting is a form of problem solving, often applied to repair failed products or processes on a machine or a system. It is a logical, systematic search for the source of a problem in order to solve it, and make the product or process operational again. Troubleshooting is needed to identify the symptoms.

2. What is the use of HTML Validator?

  • A: To validate HTML File. Can easily check to find your code is in proper way. For Validating a CSS, you Have 3 Options, Check By Address, Check By File Upload, Check By Text Input

3. What is box model?

  • A: In CSS, the term box model is used when talking about design and layout. The CSS box model is essentially a box that wraps around every HTML element. It consists of: margins, borders, padding, and the actual content.

4. How many parts a box model have? which are they?

  • A: box Model is Majorly Divided by 4 Parts. Content Area, Padding Area, Border Area, Margin Area

5. Explain any 22 parts of a Box model?

  • A:
    • Content Area: The content area, bounded by the content edge, contains the "real" content of the element, such as text, an image, or a video player.
    • Padding Area - Clears an area around the content. The padding is transparent.
    • Border Area - A border that goes around the padding and content
    • Margin Area - Clears an area outside the border. Extends the border area to include an empty area used to separate the element from its neighbors.

6. What is Linting?

  • A: Analyze and format given code for syntax errors, and flag up warnings about bad practices in your CSS, and other points besides. Linters can generally be customized to be stricter or more relaxed in their error/warning reporting.

7. Name any of the 2 best Linter Application?

  • A: Dirty Markup (HTML, CSS, JavaScript) and CSS Lint (CSS only).