Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Ebazhanov committed Feb 19, 2022
1 parent 1bcb34e commit 6107996
Show file tree
Hide file tree
Showing 14 changed files with 41 additions and 37 deletions.
4 changes: 3 additions & 1 deletion 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-764-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 All @@ -31,7 +33,7 @@ want to contribute? here is the source code https://github.com/linkedin-faq
### Table of Contents

| Linkedin-quiz-questions | Questions | Answers | Your resource for answers. In case you have doubts please contact this person or add him to review your PR. | Translation |
|------------------------------------------------------------------------------|-----------|---------|------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| ---------------------------------------------------------------------------- | --------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| [Accounting](accounting/accounting-quiz.md) | 21 | 31 | [@tujinwei](https://github.com/tujinwei) | |
| [Adobe-Acrobat](adobe-acrobat/adobe-acrobat-quiz.md) | 19 | 19 | | |
| [Adobe-Illustrator](adobe-illustrator/adobe-illustrator-quiz.md) | 51 | 0 | | |
Expand Down
1 change: 0 additions & 1 deletion android/android-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -986,7 +986,6 @@ override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanc
1. [Reference](https://youtu.be/QdfStuj-MuA?t=86)
2. [Reference](https://developer.android.com/guide/playcore/feature-delivery/on-demand)


#### Q65. Which approach is not recommended for providing a useful offline state in your app?

- [ ] caching data
Expand Down
8 changes: 4 additions & 4 deletions css/css-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -1828,12 +1828,12 @@ p + section {
```

```html
<div class="pen">
<span id="puppy">🐶</span>
</div>
<div class="pen">
<span id="puppy">🐶</span>
</div>
```

- [ ] top-right corner
- [ ] bottom-right corner
- [ ] top-left corner
- [x] bottom-left corner
- [x] bottom-left corner
2 changes: 1 addition & 1 deletion dotnet-framework/dotnet-framework-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -475,4 +475,4 @@
- [ ] Decorator
- [ ] Singleton
- [x] Abstract Factory
- [ ] Bridge
- [ ] Bridge
2 changes: 1 addition & 1 deletion front-end-development/front-end-development-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -585,4 +585,4 @@ console.log(currencies);
- [ ] The screen reader will announce all changes immediately.
- [ ] The screen reader will use a polite voice when announcing changes.

[Source: MDN Docs](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-live)
[Source: MDN Docs](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-live)
2 changes: 1 addition & 1 deletion git/git-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -826,7 +826,7 @@ Which of the following options is correct ?
- [ ] The branch has not been pushed to the remote repository.

[reference here](https://www.git-tower.com/learn/git/faq/detached-head-when-checkout-commit)

#### Q101. After accidentally deleting a branch in your local repository, how can you recover it?

- [ ] It cannot be recovered.
Expand Down
15 changes: 8 additions & 7 deletions html/html-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -1635,7 +1635,7 @@ As Steve Krug once said, happy talk must die.
`The <article> HTML element represents a self-contained composition in a document, page, application, or site, which is intended to be independently distributable or reusable (e.g., in syndication). Example:a user-submitted comment.`
[Source](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/article)

#### Q104. To make something editable by the user, you need to set the _____ attribute to _____.
#### Q104. To make something editable by the user, you need to set the **\_** attribute to **\_**.

- [ ] `access`; allow
- [ ] `designMode`; true
Expand Down Expand Up @@ -1666,7 +1666,12 @@ As Steve Krug once said, happy talk must die.
#### Q107. Which image file referenced in this `img` element's `srcset` attribute should a browser on a small mobile phone load?

```html
<img srcset="medium.jpg 320w, large.jpg 1280w" src="small.jpg" alt="Our favorite image" sizes="(min-width: 1200px) 640px, 100vw">
<img
srcset="medium.jpg 320w, large.jpg 1280w"
src="small.jpg"
alt="Our favorite image"
sizes="(min-width: 1200px) 640px, 100vw"
/>
```

- [ ] small.jpg
Expand Down Expand Up @@ -1712,7 +1717,6 @@ As Steve Krug once said, happy talk must die.

`formaction — The URL that processes the information submitted by the button. Overrides the action attribute of the button's form owner. Does nothing if there is no form owner.` [Source](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button#attr-formaction)


#### Q109. Which description is coded correctly?

- [ ] A
Expand Down Expand Up @@ -1770,11 +1774,8 @@ As Steve Krug once said, happy talk must die.
<li>Mocha</li>
</ul>
```

- [ ] Nothing is wrong.
- [ ] `<ul>` cannot contain a heading element as a direct child.
- [ ] An `<h1>` should be used here instead of an `<h2>` tag.
- [ ] Only `<ol>` allows direct descendants to contain elements other than an `<li>`, so use an `<ol>` here instead.




8 changes: 4 additions & 4 deletions javascript/javascript-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -1669,7 +1669,7 @@ const lion = 1;
let tiger = 2;
var bear;

++lion
++lion;
bear += lion + tiger;
tiger++;
```
Expand All @@ -1685,8 +1685,8 @@ tiger++;
#### Q122. What will be the value of `result` after running this code?
```js
const person = { name: "Dave", age: 40, hairColor: "blue" };
const result = Object.keys(person).map(x => x.toUpperCase());
const person = { name: 'Dave', age: 40, hairColor: 'blue' };
const result = Object.keys(person).map((x) => x.toUpperCase());
```
- [ ] It will throw a TypeError.
Expand All @@ -1696,4 +1696,4 @@ const result = Object.keys(person).map(x => x.toUpperCase());
1. [Object.keys() - JavaScript | MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/keys)
2. [Array.prototype.map() - JavaScript | MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map)
3. [String.prototype.toUpperCase() - JavaScript | MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/toUpperCase)
3. [String.prototype.toUpperCase() - JavaScript | MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/toUpperCase)
24 changes: 12 additions & 12 deletions json/json-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -907,28 +907,28 @@ variance: -0.0823

```js
myVehicleContents = {
"van": {
"inside": {
"glove box": "maps",
"passenger seat": "crumbs"
van: {
inside: {
'glove box': 'maps',
'passenger seat': 'crumbs',
},
"exterior": {
"trunk": "jack"
}
}
}
exterior: {
trunk: 'jack',
},
},
};
```

- [ ] A

```js
myVehicleContents.van.inside["glove box"] = gloveBoxContents;
myVehicleContents.van.inside['glove box'] = gloveBoxContents;
```

- [x] B

```js
var gloveBoxContents = myVehicleContents.van.inside["glove box"];
var gloveBoxContents = myVehicleContents.van.inside['glove box'];
gloveBoxContents;
```

Expand All @@ -942,7 +942,7 @@ gloveBoxContents;
- [ ] D

```js
myVehicleContents.van.inside["inside"] = gloveBoxContents;
myVehicleContents.van.inside['inside'] = gloveBoxContents;
```

[Source](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Working_with_Objects)
1 change: 1 addition & 0 deletions linux/linux-assesment.md
Original file line number Diff line number Diff line change
Expand Up @@ -671,6 +671,7 @@ if [[ $FILE == $GLOB ]] ;then
- [ ] `/proc/partitions` is the kernel's list of partitions held in ram. `fdisk -l` reads the partition table from the drive itself.

### Q82. What would be in out.txt?

cat < in.txt > out.txt

- [x] the content of in.txt.
Expand Down
5 changes: 3 additions & 2 deletions microsoft-power-bi/microsoft-power-bi-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ D. They must have no duplicate data rows.
- [ ] Merge
- [ ] Group

#### Q63. Power BI Q&A chooses the best visualization based on data type - for example, a __ chart for date data and a __ for state/province data.
#### Q63. Power BI Q&A chooses the best visualization based on data type - for example, a ** chart for date data and a ** for state/province data.

- [ ] column; map
- [ ] line; map
Expand All @@ -509,9 +509,10 @@ D. They must have no duplicate data rows.
- [ ] A snowflake schema cannot be modeled in Power BI.
- [ ] A snowflake schema can be modeled only in Power BI service.
- [x] A snowflake schema is much less efficient for Power BI.
- [ ] A snowflake schema has more levels of lookup tables.
- [ ] A snowflake schema has more levels of lookup tables.

#### Q65. What are benefits of modifying your Excel data source in the Power Query Editor rather than in Excel?

A. You can track the changes you make.
B. It is less error prone than manual editing.
C. It will not affect other users of the spreadsheet.
Expand Down
2 changes: 1 addition & 1 deletion microsoft-power-point/microsoft-power-point-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ If your Word document contains no Heading 1 or Heading 2 styles, PowerPoint will
- [ ] Change both presentations to the same theme before copying and pasting.
- [ ] Select **Picture** when pasting the slides.

#### Q71. What happens when you press the Esc key while playing a **From Current Slide** or **From Beginning** slide show?
#### Q71. What happens when you press the Esc key while playing a **From Current Slide** or **From Beginning** slide show?

- [ ] The current slide is temporary hidden.
- [x] The slide show ends and you return to your previous view.
Expand Down
2 changes: 1 addition & 1 deletion microsoft-word/microsoft-word-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -616,4 +616,4 @@ D. A flag icon with the colleague's name appears where their edit is being made.
- [x] Changes were made to these areas.
- [ ] Draw tools were used in these areas.
- [ ] Track Changes has been disabled.
- [ ] Comments were added to these areas.
- [ ] Comments were added to these areas.
2 changes: 1 addition & 1 deletion python/python-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -1507,7 +1507,7 @@ letters4 = list(my_dictionary)
- [ ] You use `try/except` blocks inside of unit tests so that the unit testes will always pass.
- [ ] You use `try/except` blocks so that you can demonstrate to your code reviewers that you tried a new approach, but if the new approach is not what they were looking for, they can leave comments under the `except` keyword.
- [ ] You use `try/except` blocks so that none of your functions or methods return `None`.

[Reference](https://runestone.academy/ns/books/published/fopp/Exceptions/using-exceptions.html#:~:text=The%20reason%20to%20use%20try,you're%20writing%20the%20code)

#### Q113. In Python, how can the compiler identify the inner block of a for loop?
Expand Down

0 comments on commit 6107996

Please sign in to comment.