Skip to content

Commit

Permalink
auto formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Ebazhanov committed Mar 8, 2022
1 parent 80ee36c commit dd3736a
Show file tree
Hide file tree
Showing 14 changed files with 43 additions and 32 deletions.
6 changes: 4 additions & 2 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-782-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 @@ -30,8 +32,8 @@ 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 them to review your PR. | Translation |
|------------------------------------------------------------------------------|-----------|---------|------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Linkedin-quiz-questions | Questions | Answers | Your resource for answers. In case you have doubts please contact this person or add them to review your PR. | Translation |
| ---------------------------------------------------------------------------- | --------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| [Accounting](accounting/accounting-quiz.md) | 31 | 21 | [@tujinwei](https://github.com/tujinwei) | |
| [Adobe-Acrobat](adobe-acrobat/adobe-acrobat-quiz.md) | 19 | 19 | | |
| [Adobe-Illustrator](adobe-illustrator/adobe-illustrator-quiz.md) | 76 | 61 | | |
Expand Down
1 change: 1 addition & 0 deletions after-effects/after-effects-quiz.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
## After Effects

> Topics: 3D, Effects, Export, Keyframes, Project and Composition Settings
#### Q1. What type of light never casts a shadow in a 3D scene?
Expand Down
12 changes: 6 additions & 6 deletions angular/angular-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -1115,19 +1115,19 @@ export class UsersComponent implements OnInit {
- [ ] It is configuring the `ngFor` iteration to support multiple lists of users at the same time.
- [x] It is subscribing to the observable returned from the `HttpClient.get` method and unwrapping the returned value so it can be iterated over in the `ngFor`.
- [ ] It is allowing all of the users in the `users` field to be rendered concurrently to the DOM.
#### Q57. How would you make use of this directive in markup based on its selector value
```ts
@Directive({
selector: '[appTruncate]'
selector: '[appTruncate]'
})
export class TruncateDirective{
. . .
}
```
- [ ] ```html <p data-directive="appTruncate">Some long text </p> ```
- [x] ```html <p appTruncate>Some long text</p> ```
- [ ] ```html <p app-truncate>Some long text</p> ```
- [ ] ```html <app-truncate>Some long text</app-truncate> ```
- [ ] `html <p data-directive="appTruncate">Some long text </p> `
- [x] `html <p appTruncate>Some long text</p> `
- [ ] `html <p app-truncate>Some long text</p> `
- [ ] `html <app-truncate>Some long text</app-truncate> `
2 changes: 1 addition & 1 deletion bash/bash-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -686,7 +686,7 @@ echo "${VAR//man/rolling}"
#### Q57. What statement would you use to print this in the console?
```Shall we play a game? yes\no```
`Shall we play a game? yes\no`
- [ ] `echo "Shall we play a game? yes/\no"`
- [ ] `echo "Shall we play a game\? yes\\no"`
Expand Down
2 changes: 1 addition & 1 deletion c++/c++quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -1277,4 +1277,4 @@ class my_class{
- [x] an integer number of at least 32 bits
- [ ] a string with more than 255 characters
- [ ] a pointer
- [ ] a 64-bit floating point number
- [ ] a 64-bit floating point number
2 changes: 1 addition & 1 deletion c-(programming-language)/c-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -781,7 +781,7 @@ int main()
}
```

#### Q48. Which is *not* a storage class specifier?
#### Q48. Which is _not_ a storage class specifier?

- [x] `intern`
- [ ] `extern`
Expand Down
4 changes: 3 additions & 1 deletion css/css-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -1768,7 +1768,9 @@ p + section {
#### Q121. Which style will horizontally center the inner &lt;div&gt; within the outer &lt;div&gt;?

```js
<div id="outer"><div id="inner">Center Me!</div></div>
<div id="outer">
<div id="inner">Center Me!</div>
</div>
```

- [ ]
Expand Down
5 changes: 2 additions & 3 deletions javascript/javascript-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -1072,8 +1072,7 @@ love
Javascript!
```
**Reference**
**Reference**
https://developer.mozilla.org/en-US/docs/Web/API/setTimeout#reasons_for_delays_longer_than_specified especially see the 'late timeouts' section.
#### Q83. What will this code log to the console?
Expand Down Expand Up @@ -1368,7 +1367,7 @@ console.log(x);
```js
var sound = 'grunt';
var bear = { sound: 'roar'};
var bear = { sound: 'roar' };
function roar() {
console.log(this.sound);
}
Expand Down
28 changes: 17 additions & 11 deletions jquery/jquery-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -1329,33 +1329,39 @@ $.fn.myTraverse = function() {
- [ ]

```js
$('#element').on('animationend', function() {
console.log('Finally, everything is done!')
$('#element').on('animationend', function () {
console.log('Finally, everything is done!');
});
```

- [ ]

```js
$('#element').on('promise').then(function() {
console.log('Finally, everything is done!')
});
$('#element')
.on('promise')
.then(function () {
console.log('Finally, everything is done!');
});
```

- [ ]

```js
$('#element').promise().catch(function() {
console.log('Finally, everything is done!')
});
$('#element')
.promise()
.catch(function () {
console.log('Finally, everything is done!');
});
```

- [ ]

```js
$('#element').promise().then(function() {
console.log('Finally, everything is done!')
});
$('#element')
.promise()
.then(function () {
console.log('Finally, everything is done!');
});
```

[Source: HTMLElement: animationend event | MDN ](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/animationend_event)
Expand Down
2 changes: 1 addition & 1 deletion microsoft-excel/microsoft-excel-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -917,4 +917,4 @@ https://support.microsoft.com/en-us/office/print-headings-or-titles-on-every-pag
- [ ] This is not possible-you can remove only all formatting from a cell.
- [x] Select the cell. On the Home tab, click Conditional Formatting > Clear Rules > Clear Rules from Selected Cells.
- [ ] Right-click the cell and select Delete Conditional Formatting.
- [ ] Right-click the cell and select Remove Conditional Formatting.
- [ ] Right-click the cell and select Remove Conditional Formatting.
4 changes: 3 additions & 1 deletion microsoft-word/microsoft-word-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,8 @@ D. A flag icon with the colleague's name appears where their edit is being made.
- [ ] Bar

#### Q67. What is the difference between a footnote and an endnote?
Duplicated with Q33.

Duplicated with Q33.

- [ ] An endnote always appears on the bottom of the same page that it references
- [ ] Footnote use Arabic numerals and endnotes use letters.
Expand Down Expand Up @@ -611,6 +612,7 @@ Duplicated with Q33.
- [ ] Insert Table of Figures

#### Q78. In this image, what do the red lines next to the text indicate?

Duplicated with Q50.

![image](https://i.imgur.com/JUbaoyO.png)
Expand Down
1 change: 0 additions & 1 deletion python/python-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -1511,4 +1511,3 @@ x.add(6)
- [x] `{1, 2, 3, 4, 5, 6}`

**Explanation:** The `.add()` method adds the element to the set only if it doesnt exist.

5 changes: 3 additions & 2 deletions react/reactjs-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -1114,7 +1114,7 @@ From official docs: https://reactjs.org/tutorial/tutorial.html#making-an-interac

#### Q98. In this function, which is the best way to describe the Dish component?

````
```
function Dish() {
return (
<>
Expand All @@ -1123,7 +1123,8 @@ function Dish() {
</>
);
}
````
```

- [ ] child component
- [x] parent component
- [ ] nested component
Expand Down
1 change: 0 additions & 1 deletion spring-framework/spring-framework-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -710,7 +710,6 @@ Reason: By default, all the endpoints are enabled in Spring Boot Application exc
- [ ] File
- [ ] MvcFile


#### Q69. What is the purpose of this endpoint?

```java
Expand Down

0 comments on commit dd3736a

Please sign in to comment.