0
0
GCPcloud~10 mins

Load balancer types comparison in GCP - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to select the GCP load balancer type that operates at the HTTP/HTTPS layer.

GCP
load_balancer_type = "[1]"
Drag options to blanks, or click blank then click option'
ATCP Proxy Load Balancer
BInternal Load Balancer
CHTTP(S) Load Balancer
DNetwork Load Balancer
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing Network Load Balancer which works at Layer 4, not Layer 7.
2fill in blank
medium

Complete the code to select the GCP load balancer type best suited for TCP traffic at Layer 4.

GCP
load_balancer_type = "[1]"
Drag options to blanks, or click blank then click option'
AInternal HTTP(S) Load Balancer
BTCP Proxy Load Balancer
CHTTP(S) Load Balancer
DNetwork Load Balancer
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing TCP Proxy Load Balancer which is for TCP but operates differently.
3fill in blank
hard

Fix the error in the code to select the load balancer type that supports SSL offloading for TCP traffic.

GCP
load_balancer_type = "[1]"
Drag options to blanks, or click blank then click option'
ANetwork Load Balancer
BTCP Proxy Load Balancer
CInternal Load Balancer
DHTTP(S) Load Balancer
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing Network Load Balancer which does not support SSL offloading.
4fill in blank
hard

Fill both blanks to complete the code that selects the load balancer types for internal and external traffic respectively.

GCP
internal_lb = "[1]"
external_lb = "[2]"
Drag options to blanks, or click blank then click option'
AInternal Load Balancer
BHTTP(S) Load Balancer
CNetwork Load Balancer
DTCP Proxy Load Balancer
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing internal and external load balancer types.
5fill in blank
hard

Fill all three blanks to complete the code that assigns load balancer types for HTTP, TCP with SSL offload, and internal traffic respectively.

GCP
http_lb = "[1]"
tcp_ssl_lb = "[2]"
internal_lb = "[3]"
Drag options to blanks, or click blank then click option'
AHTTP(S) Load Balancer
BTCP Proxy Load Balancer
CInternal Load Balancer
DNetwork Load Balancer
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing Network Load Balancer with TCP Proxy Load Balancer.