Skip to content
This repository has been archived by the owner on Dec 29, 2022. It is now read-only.

Commit

Permalink
- prettier formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Ebazhanov committed Oct 3, 2021
1 parent 2570670 commit d66d436
Show file tree
Hide file tree
Showing 12 changed files with 78 additions and 73 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
## Linkedin Quiz Answers, Skill Assessments Test

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

[![All Contributors](https://img.shields.io/badge/all_contributors-562-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 Expand Up @@ -40,6 +42,7 @@ if you want to meet each other or discuss quiz related problems join the `Discor
| [C++](c%2B%2B/c%2B%2Bquiz.md) | <kbd>[<img title="Deutsch" alt="Deutsch" src="https://cdn.staticaly.com/gh/hjnilsson/country-flags/master/svg/de.svg" width="22">](c%2B%2B/c%2B%2Bquiz-de.md)</kbd> | => 64 questions | => 64 answers | |
| [C (Programming Language)](<c-(programming-language)/c-quiz.md>) | | => 34 questions | => 34 answers | [@makifay](https://github.com/makifay) |
| [CSS](css/css-quiz.md) | | => 94 questions | => 94 answers | |
| [Cybersecurity](cybersecurity/cybersecurity-quiz.md) | | => 14 questions | => 10 answers | |
| [Django](django/django-quiz.md) | | => 51 questions | => 51 answers | |
| [.NET Framework](dotnet-framework/dotnet-framework-quiz.md) | | => 37 questions | => 37 answers | |
| [Eclipse](eclipse/eclipse-quiz.md) | | => 22 questions | => 15 answers | |
Expand Down Expand Up @@ -90,7 +93,7 @@ if you want to meet each other or discuss quiz related problems join the `Discor
| [Transact-SQL (T-SQL)](t-sql/t-sql-quiz.md) | | => 28 questions | => 28 answers | [@beefydog](https://github.com/beefydog) |
| [Unity](unity/unity-quiz.md) | | => 38 questions | => 0 answers | [@uno-sebastian](https://github.com/uno-sebastian) |
| [Visual Basic for Applications (VBA)](vba/vba-quiz.md) | | => 36 questions | => 34 answers | [@AdamKaczor6250](https://github.com/AdamKaczor6250) |
| [Visio](visio/visio-quiz.md) | | => 34 questions | => 34 answers | |
| [Visio](visio/visio-quiz.md) | | => 34 questions | => 34 answers | |
| [Windows Server](windows-server/windows-server-quiz.md) | | => 46 questions | => 44 answers | |
| [WordPress](wordpress/wordpress-quiz.md) | | => 55 questions | => 39 answers | [@ruslanbes](https://github.com/ruslanbes) |
| [XML](xml/xml-quiz.md) | | => 40 questions | => 39 answers | [@ruslanbes](https://github.com/ruslanbes) |
Expand Down
17 changes: 8 additions & 9 deletions android/android-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -905,19 +905,18 @@ override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanc
- [ ] LinearLayout
- [ ] Scrollview


#### Q58. You have created an AboutActivity class that displays details about your app. Which code snippet allows you to launch your activity?

- [ ] Intent(this, AboutActivity::class).also { intent ->
startService(intent)
}
startService(intent)
}
- [ ] Intent(this, AboutActivity::class.java).also { intent ->
startActivity(intent)
}
startActivity(intent)
}

- [ ] Intent(this, AboutActivity::class).also { intent ->
activity(intent)
}
activity(intent)
}
- [x] Intent(this, AboutActivity::class).also { intent ->
startActivity(intent)
}
startActivity(intent)
}
17 changes: 13 additions & 4 deletions c-(programming-language)/c-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,8 @@ printf("%d", f1(5));
#### Q35. Which choice is an include guard for the header file mylib.h?
- [ ]
- [ ]
```c
#ifdef MYLIB_H
#undef MYLIB_H
Expand All @@ -463,7 +464,9 @@ printf("%d", f1(5));
#endif /* MYLIB_H */
```
- [ ]

- [ ]

```c
#ifndef MYLIB_H
#define MYLIB_H
Expand All @@ -472,14 +475,18 @@ printf("%d", f1(5));

#endif /* MYLIB_H */
```
- [ ]

- [ ]

```c
#define MYLIB_H
#include "mylib.h"

#undef MYLIB_H
```
- [ ]

- [ ]

```c
#ifdef MYLIB_H
#define MYLIB_H
Expand All @@ -488,7 +495,9 @@ printf("%d", f1(5));

#endif /* MYLIB_H */
```

#### Q36. How many times does the code inside the while loop get executed in this program?

```c
main(){
int x=1;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
- [ ] Hybrid Cloud
- [ ] Software as a Service (SaaS)
- [x] Platform as a Service (PaaS)
- [ ] Infrastructure as a Service (IaaS)
- [ ] Infrastructure as a Service (IaaS)

#### Q2. Which option removes the risk of multitenancy in cloud computing?

Expand All @@ -28,23 +28,20 @@
- [ ] intrusion detection system (IDS)
- [ ] next generation firewall


#### Q5. Packet sniffer is also called ______.
#### Q5. Packet sniffer is also called **\_**.

- [ ] SIEM
- [ ] UTM
- [x] protocol analyzer
- [ ] data sink


#### Q6. Which option tests code while it is in operation?

- [ ] code review
- [ ] code analysis
- [ ] static analysis
- [x] dynamic analysis


#### Q7. Which option describes testing that individual software developers can conduct on their own code?

- [ ] gray box testing
Expand All @@ -59,7 +56,6 @@
- [ ] all information
- [ ] limited details of server infrastructure


#### Q9. Which security control can best protect against shadow IT by identifying and preventing use of unsanctioned cloud apps and services?

- [ ] intrusion prevention system (IPS)
Expand All @@ -82,6 +78,7 @@
- [x] brute force attack

#### Q12. Which area is DMZ?

![image](https://user-images.githubusercontent.com/45083490/135709069-68011c48-7eaf-4635-bece-32fa1037b6c0.png)

- [ ] 4
Expand All @@ -96,7 +93,6 @@
- [ ] digital signature
- [ ] symmetric encryption


#### Q14. What is the difference between DRP and BCP

- [x] DRP works to keep a business up and running despite a disaster. BCP works to restore the original business capabilities.
Expand Down
21 changes: 10 additions & 11 deletions dotnet-framework/dotnet-framework-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -440,19 +440,18 @@

**Explanation**: [Globalize and localize .NET applications](https://docs.microsoft.com/en-us/dotnet/core/extensions/globalization-and-localization)

#### Q59. What does CIL stand for?
#### Q59. What does CIL stand for?

- [ ] C# Interpreted Language
- [x] Common Intermediate Language
- [ ] Commonly Interpreted Language
- [ ] C# Intermediate Language
- [ ] C# Interpreted Language
- [x] Common Intermediate Language
- [ ] Commonly Interpreted Language
- [ ] C# Intermediate Language

**Explanation**: [What is the full form of CIL?](https://ythi.net/abbreviations/english/what-does-cil-mean-what-is-the-full-form-of-cil/)

#### Q60. Which choice best describes the difference between a namespace and an assembly?

- [ ] Namespace contains code to form MSIL (Microsoft Intermediate Language). An assembly contains a set of unique names.
- [ ] Namespace is the logical naming decided at design time by the developer. Scope for a particular type is defined at run time using an assembly.
- [ ] A namespace has logical units that are physically grouped together. An assembly does not have any classification.
- [ ] A namespace has logical units that are physically grouped together for assemblies. Assembly classes are available in your program and will be logically grouped.
#### Q60. Which choice best describes the difference between a namespace and an assembly?

- [ ] Namespace contains code to form MSIL (Microsoft Intermediate Language). An assembly contains a set of unique names.
- [ ] Namespace is the logical naming decided at design time by the developer. Scope for a particular type is defined at run time using an assembly.
- [ ] A namespace has logical units that are physically grouped together. An assembly does not have any classification.
- [ ] A namespace has logical units that are physically grouped together for assemblies. Assembly classes are available in your program and will be logically grouped.
1 change: 0 additions & 1 deletion git/git-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -766,7 +766,6 @@ Which of the following options is correct ?
- [ ] Use git checkout -b.
- [ ] Run git stash branch <branch name>.


#### Q94. You is the difference between git branch -d and git branch -D?

- [ ] -D deletes the local branch, while -d deletes the branch regardless of push and merge status.
Expand Down
20 changes: 10 additions & 10 deletions google-analytics/google-analytics-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -528,16 +528,16 @@
- [x] calculated metrics
- [ ] custom metrics

#### Q74. You are managing analytics for a recipe website that has the following categories: Appetizers, Main Dishes, and Desserts. What do you create in order to compare aggregated data of all recipes in the Appetizer category vs. all recipes in the Desserts category?
#### Q74. You are managing analytics for a recipe website that has the following categories: Appetizers, Main Dishes, and Desserts. What do you create in order to compare aggregated data of all recipes in the Appetizer category vs. all recipes in the Desserts category?

- [ ] custom channels
- [ ] advanced filters
- [x] content grouping <= [not sure](https://support.google.com/analytics/answer/2853423?hl=en)
- [ ] custom segments
- [ ] custom channels
- [ ] advanced filters
- [x] content grouping <= [not sure](https://support.google.com/analytics/answer/2853423?hl=en)
- [ ] custom segments

#### Q75. How would you add a secondary dimension to a report?
#### Q75. How would you add a secondary dimension to a report?

- [ ] from the Insights panel
- [ ] from the Secondary dimension menu
- [ ] all of these answers
- [ ] with a table filter
- [ ] from the Insights panel
- [ ] from the Secondary dimension menu
- [ ] all of these answers
- [ ] with a table filter
6 changes: 4 additions & 2 deletions java/java-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -1344,6 +1344,7 @@ class Main {

#### Q95. What is the output?

```java
import java.util.*;

public class Main {
Expand All @@ -1354,14 +1355,15 @@ public class Main {
queue.add(3);
queue.add(2);
queue.add(1);

while (queue.isEmpty() == false) {
System.out.printf("%d", queue.remove());
}
}
}
```

- [ ] 1 3 2 4
- [ ] 4 2 3 1
- [X] 1 2 3 4
- [x] 1 2 3 4
- [ ] 4 3 2 1
4 changes: 2 additions & 2 deletions json/json-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -841,9 +841,9 @@ Note: None of the above options appear to be correct. A correct answer would be
- [ ] two
- [ ] three

#### Q79. In JSON, a set of brackets ([]) is used to denote _____, whereas curly braces ({}) denote _____.
#### Q79. In JSON, a set of brackets ([]) is used to denote **\_**, whereas curly braces ({}) denote **\_**.

- [x] arrays; objects
- [ ] objects; functions
- [ ] objects; functions
- [ ] arrays; functions
- [ ] key/value pairs; arrays
20 changes: 10 additions & 10 deletions microsoft-azure/microsoft-azure-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -408,18 +408,18 @@

As described in [Microsoft Docs: Hosting a Restful-API with CORS in AAS](https://docs.microsoft.com/en-us/azure/app-service/app-service-web-tutorial-rest-api): The Answer should be CORS (Cross Origin Ressource Sharing)

#### Q54. Bindings in Azure Function triggers have a direction property that is always __.
#### Q54. Bindings in Azure Function triggers have a direction property that is always \_.

- [ ] parallel
- [ ] out
- [ ] asynchronous
- [x] in
- [ ] parallel
- [ ] out
- [ ] asynchronous
- [x] in

[Source: LinkedIn practice mode](https://i.imgur.com/tn3RrVW.png)

#### Q55. You are selecting a cloud messaging solution for your multimedia news app. The app routes news items to the appropriate services for processing and delivery to subscribers. Requirements for the solution are as follows: Events should be routed to the appropriate service to process event; events must be routed to multiple services when necessary; and only relevant events should be routed to a service for processing. Which solution should you use?
#### Q55. You are selecting a cloud messaging solution for your multimedia news app. The app routes news items to the appropriate services for processing and delivery to subscribers. Requirements for the solution are as follows: Events should be routed to the appropriate service to process event; events must be routed to multiple services when necessary; and only relevant events should be routed to a service for processing. Which solution should you use?

- [ ] Event Grid
- [ ] Service Bus
- [ ] Event Hub
- [ ] Queue Storage
- [ ] Event Grid
- [ ] Service Bus
- [ ] Event Hub
- [ ] Queue Storage
22 changes: 10 additions & 12 deletions seo/search-engine-optimization-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -491,18 +491,16 @@

**Explanation:** From article: [Types of redirects](https://moz.com/learn/seo/redirection)

#### Q56. What would contribute to a low bounce rate?

- [ ] Content does not match search intent.
- [ ] Page returns 404 error.
- [ ] Content reflects search intent.
- [ ] URL uses parameters.

#### Q57. What should be as consistent as possible across the web when developing a local SEO strategy?
#### Q56. What would contribute to a low bounce rate?

- [ ] backlinks
- [ ] NAP
- [ ] LRP
- [ ] inbound links
- [ ] Content does not match search intent.
- [ ] Page returns 404 error.
- [ ] Content reflects search intent.
- [ ] URL uses parameters.

#### Q57. What should be as consistent as possible across the web when developing a local SEO strategy?

- [ ] backlinks
- [ ] NAP
- [ ] LRP
- [ ] inbound links
8 changes: 4 additions & 4 deletions spring-framework/spring-framework-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ class TestService {}

**@target(com.linkedin.annotation.Loggable)**

- [X] any join point where the target object has a @Loggable annotation
- [x] any join point where the target object has a @Loggable annotation
- [ ] any join point where the executing method has a @Loggable annotation
- [ ] any method that implements Loggable
- [ ] any method that extends Loggable
Expand Down Expand Up @@ -536,12 +536,12 @@ class TestConfig2 {

- [ ] Aspect-Oriented Programming allows you to define different cross-cutting aspects that isolate beans to be available only in certain environments and profiles.
- [ ] Aspect-Oriented Programming enables you to perform profiling, which lets you develop different cross-cutting JVM performance-tuning profiles for different aspects of your applications.
- [X] Aspect-Oriented Programming enables the modularization of cross-cutting concerns so that repeated boilerplate logic, such as logging code, does not pollute business logic.
- [x] Aspect-Oriented Programming enables the modularization of cross-cutting concerns so that repeated boilerplate logic, such as logging code, does not pollute business logic.
- [ ] Aspect-Oriented Programming enables you to persist cross-cutting data across modularized shards of your database.

#### Q57. Assuming username and password authentication is in place, what method on the Authentication object can be used to obtain the username?

- [X] getPrincipal
- [x] getPrincipal
- [ ] getUsername
- [ ] getUser
- [ ] getDn
Expand All @@ -551,4 +551,4 @@ class TestConfig2 {
- [ ] none of these answers
- [ ] bean type
- [ ] bean size
- [X] bean name
- [x] bean name

0 comments on commit d66d436

Please sign in to comment.