diff --git a/README.md b/README.md
index 6c33c97..c983cc5 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@
: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 :)
@@ -42,6 +42,7 @@
SQL Beginner :baby: Advanced :star: |
Azure Beginner :baby:
|
OpenStack Beginner :baby:
|
+ Security Beginner :baby:
|
@@ -1834,7 +1835,7 @@ Go also has good community.
What is the difference between var x int = 2
and x := 2
?
-The result is the same, a variable with the variable 2.
+The result is the same, a variable with the value 2.
with var x int = 2
we are setting the variable type to integer while with x := 2
we are letting Go figure out by itself the type.
@@ -1847,20 +1848,6 @@ This should be answered based on your usage but some examples are:
* fmt - formatted I/O
-
-Write an "hello world" program?
-
-```
-package main
-
-import "fmt"
-
-func main() {
- fmt.Println("Hello World")
-}
-```
-
-
## Mongo
@@ -2259,6 +2246,36 @@ the pseudo table to retrieve the sum of the prices spent by each customer, then
Are you familiar with TripleO? What benefits it has?
+## Security
+
+
+#### :baby: Beginner
+
+
+Can you describe the DevSecOps core principals?
+
+
+
+What DevOps security best practices are you familiar with?
+
+
+
+What security techniques are you familiar with?
+
+
+
+How do you manage passwords in different tools and platforms?
+
+
+
+How do you identify and manage vulnerabilities?
+
+
+
+What is Privilege Restriction?
+
+
+
## Scenarios
Scenarios are questions which don't have verbal answer and require you one of the following:
diff --git a/images/security.png b/images/security.png
new file mode 100644
index 0000000..f2c3732
Binary files /dev/null and b/images/security.png differ
diff --git a/images/sql.png b/images/sql.png
index 45b2826..29caec7 100644
Binary files a/images/sql.png and b/images/sql.png differ