Add a couple of AWS exercises and questions

MORE! :)
This commit is contained in:
abregman
2021-11-28 22:17:06 +02:00
parent abe451f0a6
commit 580379556a
12 changed files with 548 additions and 35 deletions

View File

@ -3065,6 +3065,27 @@ True
</b></details>
#### Python - Loops
<details>
<summary>What is the result of the following block of code?
```
x = ['a', 'b', 'c']
for i in x:
if i == 'b':
x = ['z', 'y']
print(i)
```
</summary><br><b>
```
a
b
c
```
</b></details>
#### Python - OOP
<details>
@ -6987,6 +7008,12 @@ The server didn't receive a response from another server it communicates with in
<summary>When you publish a project, you usually publish it with a license. What types of licenses are you familiar with and which one do you prefer to use?</summary><br><b>
</b></details>
<details>
<summary>Explain what is "X-Forwarded-For"</summary><br><b>
[Wikipedia](https://en.wikipedia.org/wiki/X-Forwarded-For): "The X-Forwarded-For (XFF) HTTP header field is a common method for identifying the originating IP address of a client connecting to a web server through an HTTP proxy or load balancer."
</b></details>
#### Load Balancers
<details>