Practice Quiz #7: Debugging Processes and Testing Tools

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/19

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

20 Terms

1
New cards

What is debugging?

The process of finding, testing, and reducing bugs (errors) in computer code

2
New cards

What are the two main types of HTML errors you will encounter?

syntax and logic errors

3
New cards

What is the W3C markup validation service?

a service that takes an HTML document as an input, goes through it, and gives you a report to tell you what is wrong with your HTML

4
New cards

How do you access browser devtools?

there are different ways to open devtools in different browsers and platforms

5
New cards

What is the rules view?

a devtools view where you should be able to see the CSS properties and values applied to an HTML element

6
New cards

How do you add a new property?

using rules view of devtools, you can click the closing curly brace in the rule to start entering a new declaration into it

7
New cards

What are the three (3) components of the debugging process?

find it
fix it
identify it

8
New cards

What are the Chrome devtools?

similar to a full-blown IDE for debugging available within the Chrome browser

9
New cards

What languages can the Chrome devtools help debug?

CSS
HTML
JavaScript

10
New cards

What is the easiest method for opening the Chrome devtools?

pressing the f12 key on your keyboard while using Chrome

11
New cards

How can you open the Chrome devtools commandment menu?

by clicking the menu button on the top right of the devtools window

12
New cards

What is a difference between HTML and the DOM?

when the DOM is manipulated using devtools, the HTML source code does not change

13
New cards

Which devtools panel shows how the DOM currently looks in the web page?

the Elements panel

14
New cards

What does the elements panel represent on the website?

a textual representation of the DOM for the selected webpage

15
New cards

Which pane displays where CSS styles are being applied to an element?

the Styles pane

16
New cards

What is a root folder for a website?

the folder where the website files are stored

17
New cards

Which indicator is used to signify that files are successfully mapped to files on a disk?

green circle next to file name

18
New cards

Which keyboard shortcut can you use to save changes in workspaces?

control + s

19
New cards

What is CSS cascading?

how a style applied to a parent element will also apply to all children elements within the parent

20
New cards

What is the difference between viewing HTML via the page source versus the inspector?

the inspector displays HTML as represented by the rendered DOM