Skip to content

Commit

Permalink
prettier auto formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Ebazhanov committed Nov 18, 2021
1 parent ad84bd7 commit 5d25fb8
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
[![Hits](https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.com%2FEbazhanov%2Flinkedin-skill-assessments-quizzes&count_bg=%2379C83D&title_bg=%23555555&icon=&icon_color=%23E7E7E7&title=hits&edge_flat=false)](https://hits.seeyoufarm.com)

<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->

[![All Contributors](https://img.shields.io/badge/all_contributors-645-orange.svg?style=flat-square)](#contributors-)

<!-- ALL-CONTRIBUTORS-BADGE:END -->

> This repository is for those looking for answers to the LinkedIn assessment quiz questions or willing to help others by contributing to the tests. Or possibly you would like to create your first pull request and be added as a contributor. Whatever is your goal - you are always welcome here! Feel free to use [online grammar checker](https://www.grammarly.com/) when you contribute!
Expand Down
2 changes: 1 addition & 1 deletion agile-methodologies/agile-methodologies-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@

#### Q67. What is the name of the ceremony in which you inspect the work completed during the sprint?

- [ ] Sprint Retrospective
- [ ] Sprint Retrospective
- [x] Sprint Review
- [ ] Next-Sprint Planning
- [ ] Velocity Confirmation
Expand Down
3 changes: 1 addition & 2 deletions html/html-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -911,7 +911,6 @@ From [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/hr): The HT
#### Q59. Review the code below. How do you include subnavigation for Link 2 that includes a link?

```markdown

<nav><ul>
<li><a href="#">Link 1</a></li>
<li><a href="#">Link 2</a></li>
Expand Down Expand Up @@ -1517,7 +1516,7 @@ x<y&z>w
- [ ] `<img>` is not a valid HTML element. Instead, use `<image src="..."/>`.
- [ ] `<img>` should be nested within a `<figure>` tag.

#### Q97. The ______ tag is used for marking ub a short code snippet, while the ______ tag is used for marking up a longer
#### Q97. The **\_\_** tag is used for marking ub a short code snippet, while the **\_\_** tag is used for marking up a longer

- [ ] <code>; <pre>
- [ ] <kbd>; <mark>
Expand Down
1 change: 1 addition & 0 deletions mongodb/mongodb-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,7 @@
- [x] `db.vehicle.distinct("category").length`

Note: count() works with find(...) but length works with distinct

#### Q41. From the MongoDB shell, how do you create a new document in the customers collection?

- [ ] `db.customers.add({name: "Bob"})`
Expand Down
8 changes: 6 additions & 2 deletions python/python-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -1316,20 +1316,24 @@ num_list[len(num_list)//2]
- [ ] my_game = Game(self) my_game.roll_dice(self)

#### Q98. What is the output of this code? (NumPy has been imported as np.)?

```
a = np.array([1,2,3,4])
print(a[[False, True, False, False]])
```
- [ ] {0,2}

- [ ] {0,2}
- [x] [2]
- [ ] {2}
- [ ] [0,2,0,0]

#### Q99. Suppose you have a string variable defined as y=”stuff;thing;junk;”. What would be the output from this code?

```
Z = y.split(‘;’)
len(z)
```

- [ ] 17
- [x] 4
- [ ] 0
Expand All @@ -1343,4 +1347,4 @@ y=”stuff;thing;junk”
y=”stuff;thing;junk;”
len(z) ==> 4
```
```

0 comments on commit 5d25fb8

Please sign in to comment.