Skip to content

Commit a7fd333

Browse files
author
abregman
committed
Add security questions
1 parent 0727d50 commit a7fd333

File tree

3 files changed

+33
-16
lines changed

3 files changed

+33
-16
lines changed

README.md

Lines changed: 33 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
:information_source:  This repository contains interview questions on various DevOps related topics
55

6-
:bar_chart:  There are currently **324** questions
6+
:bar_chart:  There are currently **330** questions
77

88
:warning:  You don't need to know how to answer all the questions in this repo. DevOps is not about knowing all :)
99

@@ -42,6 +42,7 @@
4242
<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>
4343
<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>
4444
<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>
45+
<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>
4546
</tr>
4647
</table>
4748
</center>
@@ -1834,7 +1835,7 @@ Go also has good community.
18341835
<details>
18351836
<summary>What is the difference between <code>var x int = 2</code> and <code>x := 2</code>?</summary><br><b>
18361837

1837-
The result is the same, a variable with the variable 2.
1838+
The result is the same, a variable with the value 2.
18381839

18391840
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.
18401841
</b></details>
@@ -1847,20 +1848,6 @@ This should be answered based on your usage but some examples are:
18471848
* fmt - formatted I/O
18481849
</b></details>
18491850

1850-
<details>
1851-
<summary>Write an "hello world" program?</summary><br><b>
1852-
1853-
```
1854-
package main
1855-
1856-
import "fmt"
1857-
1858-
func main() {
1859-
fmt.Println("Hello World")
1860-
}
1861-
```
1862-
</b></details>
1863-
18641851
## Mongo
18651852

18661853
<a name="mongo-beginner"></a>
@@ -2259,6 +2246,36 @@ the pseudo table to retrieve the sum of the prices spent by each customer, then
22592246
<summary>Are you familiar with TripleO? What benefits it has?</summary><br><b>
22602247
</b></details>
22612248

2249+
## Security
2250+
2251+
<a name="security-beginner"></a>
2252+
#### :baby: Beginner
2253+
2254+
<details>
2255+
<summary>Can you describe the DevSecOps core principals?</summary><br><b>
2256+
</b></details>
2257+
2258+
<details>
2259+
<summary>What DevOps security best practices are you familiar with?</summary><br><b>
2260+
</b></details>
2261+
2262+
<details>
2263+
<summary>What security techniques are you familiar with?</summary><br><b>
2264+
</b></details>
2265+
2266+
<details>
2267+
<summary>How do you manage passwords in different tools and platforms?</summary><br><b>
2268+
</b></details>
2269+
2270+
<details>
2271+
<summary>How do you identify and manage vulnerabilities?</summary><br><b>
2272+
</b></details>
2273+
2274+
<details>
2275+
<summary>What is Privilege Restriction?</summary><br><b>
2276+
</b></details>
2277+
2278+
22622279
## Scenarios
22632280

22642281
Scenarios are questions which don't have verbal answer and require you one of the following:

images/security.png

21.8 KB
Loading

images/sql.png

-9.61 KB
Loading

0 commit comments

Comments
 (0)