``` with the class .child be positioned within its container?
+
+#### Q133. How would the `
` with the class .child be positioned within its container?
+
```html
```
@@ -2115,7 +2116,7 @@ height: 100px;
[Reference](https://codepen.io/harsh1x4/pen/poVaQVz)
-#### Q134. By default, a CSS transition is __
+#### Q134. By default, a CSS transition is \_\_
- [ ] asymmetric, so that the transition going from the initial state to the end state is different from the transition going from the end state back to the initial state.
- [ ] one sided, so that there is only one transition and it goes from the initial state to the end state.
@@ -2123,57 +2124,71 @@ height: 100px;
- [ ] one-sided, so that there is only one transition and it goes from the end state to the initial state.
[Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Transitions/Using_CSS_transitions)
-
+
#### Q135. Which style rule will extend the header element across an entire grid row from the first column through the last column?
-
+
- [ ] A
+
```css
header {
- grid-column: 1/auto;
+ grid-column: 1 / auto;
}
```
+
- [x] B
+
```css
header {
grid-column: 1/-1;
}
```
+
- [ ] C
+
```css
header {
grid-column: -1/1;
}
```
+
- [ ] D
+
```css
header {
grid-column: 1/100%;
}
```
-
- [Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column)
-
+
+[Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column)
+
#### Q136. What rule should you apply to the img element to display the element in grayscale with no color?
-
+
- [ ] A
+
```css
img {
transform: grayscale(1);
}
```
+
- [ ] B
+
```css
img {
filter: grayscale(0);
}
```
+
- [ ] C
+
```css
img {
transform: grayscale(0);
}
```
+
- [x] D
+
```css
img {
filter: grayscale(1);
@@ -2183,52 +2198,65 @@ img {
[Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/filter-function/grayscale)
#### Q137. To center the content of a grid cell horizontally and vertically within the cell, which style rule should you apply?
-
+
- [ ] A
+
```css
align-items: start;
justify-items: end;
```
+
- [x] B
+
```css
align--items: center;
justify-items: center;
-
```
+
- [ ] C
+
```css
align-items: middle;
justify-items: middle;
```
+
- [ ] D
+
```css
align-items: stretch;
-justify-items: stretch
+justify-items: stretch;
```
[Reference for align-items](https://developer.mozilla.org/en-US/docs/Web/CSS/align-items) [Reference for justify-items](https://developer.mozilla.org/en-US/docs/Web/CSS/justify-items)
-
+
#### Q138. What style rule should you use to display all input elements that have failed the validation test with a red font?
-
+
- [ ] A
+
```css
input.valid[false] {
color: red;
}
```
+
- [x] B
+
```css
input:invalid {
color: red;
}
```
+
- [ ] C
+
```css
input.not(valid) {
color: red;
}
```
+
- [ ] D
+
```css
input.invalid {
color: red;
diff --git a/eclipse/eclipse-quiz.md b/eclipse/eclipse-quiz.md
index 126d35ccdf..f8b5d41af4 100644
--- a/eclipse/eclipse-quiz.md
+++ b/eclipse/eclipse-quiz.md
@@ -265,7 +265,7 @@
#### Q38. When an assert fails where can you view the expected value as compared with the actual value?
-- [x] in the Failure Trace section of the JUnit view
-- [ ] in the Debug view
+- [x] in the Failure Trace section of the JUnit view
+- [ ] in the Debug view
- [ ] in the console
- [ ] in the Outline view
diff --git a/git/git-quiz.md b/git/git-quiz.md
index 83c3d30ef7..eb1d3b38e5 100755
--- a/git/git-quiz.md
+++ b/git/git-quiz.md
@@ -1053,7 +1053,7 @@ Untracked files:
- [ ] `git clean -f`
- [ ] `git clean`
- [ ] `git remove .`
-
+
#### Q130. What command can you use to remove untracked files from the working directory?
- [ ] `git rm -all`
@@ -1083,13 +1083,15 @@ Untracked files:
git commit --patch --no-edit
```
- #### Q132. Which command would remove a file named wrongfile from the current branch of a repository, the index, and working files?
+#### Q132. Which command would remove a file named wrongfile from the current branch of a repository, the index, and working files?
+
+- [ ] ⠀
+
+```bash
+git rm wrongfile
+git commit -m "Removed file"
+```
- - [ ] ⠀
- ```bash
- git rm wrongfile
- git commit -m "Removed file"
- ```
- [ ] ⠀
```bash
git forget -rf wrongfile
diff --git a/html/html-quiz.md b/html/html-quiz.md
index 49fce9baea..25e0805b2a 100755
--- a/html/html-quiz.md
+++ b/html/html-quiz.md
@@ -1919,4 +1919,4 @@ A disabled fieldset is unusable and un-clickable. [Source](https://www.w3schools
- [ ] `
` is used for major divisions on a page, while `
` is used to span across columns.
- [x] `` is used where a generic block-level tag is needed, while `
` is used where a generic inline tag is needed.
- [] `` is the industry standard default tag, but you could use `
` if you prefer.
-- [ ] `` is used where a generic inline tag is needed, while `
` is used where a generic block-level tag is needed.
\ No newline at end of file
+- [ ] `` is used where a generic inline tag is needed, while `` is used where a generic block-level tag is needed.
diff --git a/java/java-quiz.md b/java/java-quiz.md
index 6bfdc7a6ca..c20107b759 100644
--- a/java/java-quiz.md
+++ b/java/java-quiz.md
@@ -2051,4 +2051,3 @@ Queue
- [ ] java.io time
- [ ] java.io.timestamp
- [ ] java.sql.time
-
diff --git a/matlab/matlab-quiz.md b/matlab/matlab-quiz.md
index a807268ff1..72b4a76273 100755
--- a/matlab/matlab-quiz.md
+++ b/matlab/matlab-quiz.md
@@ -1028,10 +1028,9 @@ s="abcd"; s(3)='x'
- [x] a 1x 3 string array
- [ ] a run-time error
-
#### Q71. In which case would you use varargin in a function you write?
- [ ] You want to count the number of input arguments.
- [x] You want to include optional input arguments.
- [ ] You want the workspace variable names of the input arguments.
-- [ ] You want the data types of the input arguments.
\ No newline at end of file
+- [ ] You want the data types of the input arguments.
diff --git a/microsoft-word/microsoft-word-quiz.md b/microsoft-word/microsoft-word-quiz.md
index 8b0af5c9ae..b777c7cbed 100755
--- a/microsoft-word/microsoft-word-quiz.md
+++ b/microsoft-word/microsoft-word-quiz.md
@@ -732,7 +732,7 @@ D. Inserts and Deletions and Formatting are turned off in Show Markup.
- [ ] In paragraph settings, click Line and Page Break > pagination and select keep lines together
- [ ] In paragraph settings, click Line and Page Break > pagination and select Widow/Orphan control
-#### Q94. Double clicking in the left margin will _____________ the paragraph to the right.
+#### Q94. Double clicking in the left margin will *\_* the paragraph to the right.
- [ ] double indent
- [x] select
diff --git a/python/python-quiz.md b/python/python-quiz.md
index 3be10097bd..5df3df81f3 100755
--- a/python/python-quiz.md
+++ b/python/python-quiz.md
@@ -2057,10 +2057,11 @@ print(animals['d'])
```
[x*2 for x in range(1,n)]
```
-- [x] a list with all the even numbers less than 2*n
-- [ ] a dictionary with all the even numbers less than 2*n
-- [ ] a list with all the odd numbers less than 2*n
-- [ ] a list with all the even numbers less than or equal to 2*n
+
+- [x] a list with all the even numbers less than 2\*n
+- [ ] a dictionary with all the even numbers less than 2\*n
+- [ ] a list with all the odd numbers less than 2\*n
+- [ ] a list with all the even numbers less than or equal to 2\*n
[Reference](https://www.w3schools.com/python/ref_func_range.asp)
@@ -2078,16 +2079,16 @@ else:
print('C')
```
+
- [ ] C
-- [ ] A B
+- [ ] A B
- [ ] B
- [x] A
-
#### Q151. Suppose you have a variable named vector of type np.array with 10.000 elements. How can you turn vector into a variable named matrix with dimensions 100x100?
- [ ] matrix = matrix(vector,100,100)
- [ ] matrix = vector.to_matrix(100,100)
- [ ] matrix = (vector.shape = (100,100))
- [x] matrix = vector.reshape(100,100)
-Exa
+ Exa
diff --git a/react/reactjs-quiz.md b/react/reactjs-quiz.md
index d0cd84c16f..36249015e8 100755
--- a/react/reactjs-quiz.md
+++ b/react/reactjs-quiz.md
@@ -1210,16 +1210,17 @@ ReactDom.render(, document.getElementById('root'));
```javascript
ReactDom.render(, document.getElementById('root'));
```
+
#### Q102. This code is part of an app that collects Pokemon. The useState hook below is a piece of state holding onto the names of the Pokemon collected so far. How would you access the collected Pokemon in state?
```javascript
const PokeDex = (props) => {
const [pokeDex, setPokeDex] = useState([]);
/// ...
-}
+};
```
- [ ] props.pokeDex
- [ ] this.props.pokeDex
- [ ] setPokeDex()
-- [x] pokeDex
\ No newline at end of file
+- [x] pokeDex
diff --git a/seo/search-engine-optimization-quiz.md b/seo/search-engine-optimization-quiz.md
index 89d29bf6dd..257922c0db 100755
--- a/seo/search-engine-optimization-quiz.md
+++ b/seo/search-engine-optimization-quiz.md
@@ -591,10 +591,10 @@
- [ ] to bundle meta tags
- [ ] to describe images
- [ ] to assign schema markup
-
+
#### Q73. Which tool would be best to use to research how many searches per month a term gets?
- [ ] Google Search Console
- [ ] Google Suggest
-- [X] Google Keyword Planner
+- [x] Google Keyword Planner
- [ ] Google Tag Manager
diff --git a/visio/visio-quiz.md b/visio/visio-quiz.md
index 2160452329..7c13a45493 100644
--- a/visio/visio-quiz.md
+++ b/visio/visio-quiz.md
@@ -337,7 +337,7 @@
#### Q39. Which is not an example of a reason that a shape designer might use sets of shapes grouped together to create a more sophisticated appearance or behavior?
- [x] to display text in multiple places on the shape
-- [ ] to protect the alignment of subshapes within the group
+- [ ] to protect the alignment of subshapes within the group
- [ ] to prevent different parts of the shape from responding differently to external changes
- [ ] to display different colors on different parts of the grouped shape