Skip to content

Commit 5803795

Browse files
author
abregman
committed
Add a couple of AWS exercises and questions
MORE! :)
1 parent abe451f commit 5803795

File tree

12 files changed

+547
-34
lines changed

12 files changed

+547
-34
lines changed

README.md

+27
Original file line numberDiff line numberDiff line change
@@ -3065,6 +3065,27 @@ True
30653065

30663066
</b></details>
30673067

3068+
#### Python - Loops
3069+
3070+
<details>
3071+
<summary>What is the result of the following block of code?
3072+
3073+
```
3074+
x = ['a', 'b', 'c']
3075+
for i in x:
3076+
if i == 'b':
3077+
x = ['z', 'y']
3078+
print(i)
3079+
```
3080+
</summary><br><b>
3081+
3082+
```
3083+
a
3084+
b
3085+
c
3086+
```
3087+
</b></details>
3088+
30683089
#### Python - OOP
30693090

30703091
<details>
@@ -6987,6 +7008,12 @@ The server didn't receive a response from another server it communicates with in
69877008
<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>
69887009
</b></details>
69897010

7011+
<details>
7012+
<summary>Explain what is "X-Forwarded-For"</summary><br><b>
7013+
7014+
[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."
7015+
</b></details>
7016+
69907017
#### Load Balancers
69917018

69927019
<details>

0 commit comments

Comments
 (0)