You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<summary>What is the difference between <code>var x int = 2</code> and <code>x := 2</code>?</summary><br><b>
1836
1837
1837
-
The result is the same, a variable with the variable 2.
1838
+
The result is the same, a variable with the value 2.
1838
1839
1839
1840
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.
1840
1841
</b></details>
@@ -1847,20 +1848,6 @@ This should be answered based on your usage but some examples are:
1847
1848
* fmt - formatted I/O
1848
1849
</b></details>
1849
1850
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
-
1864
1851
## Mongo
1865
1852
1866
1853
<aname="mongo-beginner"></a>
@@ -2259,6 +2246,36 @@ the pseudo table to retrieve the sum of the prices spent by each customer, then
2259
2246
<summary>Are you familiar with TripleO? What benefits it has?</summary><br><b>
2260
2247
</b></details>
2261
2248
2249
+
## Security
2250
+
2251
+
<aname="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
+
2262
2279
## Scenarios
2263
2280
2264
2281
Scenarios are questions which don't have verbal answer and require you one of the following:
0 commit comments