Skip to content

Commit

Permalink
prettier auto formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Ebazhanov committed Jun 18, 2022
1 parent bcffd10 commit cba0b1e
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 13 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,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-942-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 aws-lambda/aws-lambda-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@
- [ ] CloudFormation templates are a superset of SAM templates. CloudFormation templates include additional resource types.
- [ ] SAM templates are a different name for CloudFormation templates. Both template types include the same resource types.

#### Q44. What service deploys Lambdas regionally?
#### Q44. What service deploys Lambdas regionally?

- [ ] `EdgeCloud`
- [ ] `CloudEdge`
Expand Down
2 changes: 1 addition & 1 deletion dotnet-framework/dotnet-framework-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@

Reference: [Compilation by the JIT compiler](https://docs.microsoft.com/en-us/dotnet/standard/managed-execution-process#compilation-by-the-jit-compiler)

#### Q70. Which statement about a constant variable is not *true*?
#### Q70. Which statement about a constant variable is not `true`?

- [x] At run time, its value is evaluated.
- [ ] It cannot be static.
Expand Down
2 changes: 1 addition & 1 deletion git/git-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -980,4 +980,4 @@ remote repository, named origin, to point to the new remote repository at this l
- [ ] - when a commit from one branch needs to be copied into another branch
- [ ] - when the HEAD needs to be reset to a specific commit
- [ ] - when a specific commit needs to be pulled down from the remote repository
- [ ] - when a hook script needs to be invoked
- [ ] - when a hook script needs to be invoked
24 changes: 14 additions & 10 deletions vba/vba-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ Sub Example()
ReDim MyArr(3, 4)
'some code
ReDim Preserve MyArr(4, 4)
End Sub
End Sub
```

- [ ] Arrays cannot be resized more than once.
Expand Down Expand Up @@ -586,27 +586,31 @@ End Sub

#### Q42. Which procedure declaration is syntactically correct?

- [ ]
- [ ]

```
Sub MySub(VarA As String, Optional VarB _
Sub MySub(VarA As String, Optional VarB _
As Variant, Optional VarC As Long)
```

- [ ]
- [ ]

```
Sub MySub(VarA As String, Optional VarB _
Sub MySub(VarA As String, Optional VarB _
As Variant, VarC As Long)
```

- [ ]
- [ ]

```
Sub MySub(Optional VarA As String, Optional VarB _
Sub MySub(Optional VarA As String, Optional VarB _
As Variant, VarC as Long)
```

- [ ]
- [ ]

```
Sub MySub(OPtional VarA As String, VarB _
Sub MySub(OPtional VarA As String, VarB _
As Variant, Optional VarC as Long)
```

Expand All @@ -615,4 +619,4 @@ As Variant, Optional VarC as Long)
- [ ] Set Module Level Scope at the top of Module1.
- [ ] Set Option Global at the top of Module1.
- [ ] Set Option Private Module at the top of Module1.
- [ ] Declare module-level variables as Private.
- [ ] Declare module-level variables as Private.

0 comments on commit cba0b1e

Please sign in to comment.