0
0
Computer Networksknowledge~10 mins

Zero trust network architecture in Computer Networks - Interactive Code Practice

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

Complete the sentence to define Zero Trust Network Architecture.

Computer Networks
Zero Trust Network Architecture means never trust, always [1].
Drag options to blanks, or click blank then click option'
Aallow
Bverify
Cassume
Dignore
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing 'allow' because it sounds positive.
Choosing 'assume' which means trusting without checking.
2fill in blank
medium

Complete the sentence about the main principle of Zero Trust.

Computer Networks
In Zero Trust, access is granted based on [1] rather than network location.
Drag options to blanks, or click blank then click option'
Adevice speed
Bconnection type
CIP address
Duser identity
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing 'IP address' because traditional networks trust based on location.
Choosing 'device speed' which is unrelated.
3fill in blank
hard

Fix the error in the Zero Trust description.

Computer Networks
Zero Trust means trusting all devices inside the network by default and [1] verification.
Drag options to blanks, or click blank then click option'
Askipping
Benforcing
Cdelaying
Dignoring
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing 'enforcing' which is the opposite of the intended meaning.
Choosing 'ignoring' which is similar but less precise.
4fill in blank
hard

Fill both blanks to complete the Zero Trust access control rule.

Computer Networks
Access is granted only if the user [1] authenticated and the device [2] compliant.
Drag options to blanks, or click blank then click option'
Ais
Bwas
Attempts:
3 left
💡 Hint
Common Mistakes
Using past tense 'was' which implies outdated status.
Mixing tenses between blanks.
5fill in blank
hard

Fill both blanks to complete the Zero Trust policy example.

Computer Networks
Policy = [ [1] for user in users if user.role [2] 'admin']
Drag options to blanks, or click blank then click option'
A{
Buser
C==
D[
Attempts:
3 left
💡 Hint
Common Mistakes
Using '{' instead of '[' for list comprehension.
Using '=' instead of '==' for comparison.
Using wrong variable name.