Skip to content

Commit

Permalink
Add a couple of AWS exercises and questions
Browse files Browse the repository at this point in the history
MORE! :)
  • Loading branch information
abregman committed Nov 28, 2021
1 parent abe451f commit 5803795
Show file tree
Hide file tree
Showing 12 changed files with 547 additions and 34 deletions.
27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -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>
Expand Down
Loading

0 comments on commit 5803795

Please sign in to comment.