Add security questions
This commit is contained in:
parent
0727d50480
commit
a7fd333b4e
49
README.md
49
README.md
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
:information_source: This repository contains interview questions on various DevOps related topics
|
:information_source: This repository contains interview questions on various DevOps related topics
|
||||||
|
|
||||||
:bar_chart: There are currently **324** questions
|
:bar_chart: There are currently **330** questions
|
||||||
|
|
||||||
:warning: You don't need to know how to answer all the questions in this repo. DevOps is not about knowing all :)
|
:warning: You don't need to know how to answer all the questions in this repo. DevOps is not about knowing all :)
|
||||||
|
|
||||||
@ -42,6 +42,7 @@
|
|||||||
<td align="center"><a href="#sql"><img src="images/sql.png" width="75px;" height="75px;" alt="sql"/><br /><b>SQL</b></a><br /><sub><a href="#sql-beginner">Beginner :baby:</a></sub><br><sub><a href="#sql-advanced">Advanced :star:</a></sub></td>
|
<td align="center"><a href="#sql"><img src="images/sql.png" width="75px;" height="75px;" alt="sql"/><br /><b>SQL</b></a><br /><sub><a href="#sql-beginner">Beginner :baby:</a></sub><br><sub><a href="#sql-advanced">Advanced :star:</a></sub></td>
|
||||||
<td align="center"><a href="#azure"><img src="images/azure.png" width="75px;" height="75px;" alt="azure"/><br /><b>Azure</b></a><br /><sub><a href="#azure-beginner">Beginner :baby:</a></sub><br><sub></td>
|
<td align="center"><a href="#azure"><img src="images/azure.png" width="75px;" height="75px;" alt="azure"/><br /><b>Azure</b></a><br /><sub><a href="#azure-beginner">Beginner :baby:</a></sub><br><sub></td>
|
||||||
<td align="center"><a href="#openstack"><img src="images/openstack.png" width="75px;" height="75px;" alt="openstack"/><br /><b>OpenStack</b></a><br /><sub><a href="#openstack-beginner">Beginner :baby:</a></sub><br><sub></td>
|
<td align="center"><a href="#openstack"><img src="images/openstack.png" width="75px;" height="75px;" alt="openstack"/><br /><b>OpenStack</b></a><br /><sub><a href="#openstack-beginner">Beginner :baby:</a></sub><br><sub></td>
|
||||||
|
<td align="center"><a href="#security"><img src="images/security.png" width="75px;" height="75px;" alt="security"/><br /><b>Security</b></a><br /><sub><a href="#security-beginner">Beginner :baby:</a></sub><br><sub></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</center>
|
</center>
|
||||||
@ -1834,7 +1835,7 @@ Go also has good community.
|
|||||||
<details>
|
<details>
|
||||||
<summary>What is the difference between <code>var x int = 2</code> and <code>x := 2</code>?</summary><br><b>
|
<summary>What is the difference between <code>var x int = 2</code> and <code>x := 2</code>?</summary><br><b>
|
||||||
|
|
||||||
The result is the same, a variable with the variable 2.
|
The result is the same, a variable with the value 2.
|
||||||
|
|
||||||
with <code>var x int = 2</code> we are setting the variable type to integer while with <code>x := 2</code> we are letting Go figure out by itself the type.
|
with <code>var x int = 2</code> we are setting the variable type to integer while with <code>x := 2</code> we are letting Go figure out by itself the type.
|
||||||
</b></details>
|
</b></details>
|
||||||
@ -1847,20 +1848,6 @@ This should be answered based on your usage but some examples are:
|
|||||||
* fmt - formatted I/O
|
* fmt - formatted I/O
|
||||||
</b></details>
|
</b></details>
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary>Write an "hello world" program?</summary><br><b>
|
|
||||||
|
|
||||||
```
|
|
||||||
package main
|
|
||||||
|
|
||||||
import "fmt"
|
|
||||||
|
|
||||||
func main() {
|
|
||||||
fmt.Println("Hello World")
|
|
||||||
}
|
|
||||||
```
|
|
||||||
</b></details>
|
|
||||||
|
|
||||||
## Mongo
|
## Mongo
|
||||||
|
|
||||||
<a name="mongo-beginner"></a>
|
<a name="mongo-beginner"></a>
|
||||||
@ -2259,6 +2246,36 @@ the pseudo table to retrieve the sum of the prices spent by each customer, then
|
|||||||
<summary>Are you familiar with TripleO? What benefits it has?</summary><br><b>
|
<summary>Are you familiar with TripleO? What benefits it has?</summary><br><b>
|
||||||
</b></details>
|
</b></details>
|
||||||
|
|
||||||
|
## Security
|
||||||
|
|
||||||
|
<a name="security-beginner"></a>
|
||||||
|
#### :baby: Beginner
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>Can you describe the DevSecOps core principals?</summary><br><b>
|
||||||
|
</b></details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>What DevOps security best practices are you familiar with?</summary><br><b>
|
||||||
|
</b></details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>What security techniques are you familiar with?</summary><br><b>
|
||||||
|
</b></details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>How do you manage passwords in different tools and platforms?</summary><br><b>
|
||||||
|
</b></details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>How do you identify and manage vulnerabilities?</summary><br><b>
|
||||||
|
</b></details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>What is Privilege Restriction?</summary><br><b>
|
||||||
|
</b></details>
|
||||||
|
|
||||||
|
|
||||||
## Scenarios
|
## Scenarios
|
||||||
|
|
||||||
Scenarios are questions which don't have verbal answer and require you one of the following:
|
Scenarios are questions which don't have verbal answer and require you one of the following:
|
||||||
|
BIN
images/security.png
Normal file
BIN
images/security.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 22 KiB |
BIN
images/sql.png
BIN
images/sql.png
Binary file not shown.
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 14 KiB |
Loading…
Reference in New Issue
Block a user