Complete the sentence to define NFV.
Network Function Virtualization (NFV) is a technology that [1] network functions from dedicated hardware to software running on standard servers.
NFV moves network functions from special hardware devices to software that runs on common servers.
Complete the sentence about NFV benefits.
One key benefit of NFV is that it [1] the deployment time of network services.NFV reduces the time needed to deploy network services by using software instead of hardware.
Fix the error in the NFV description.
NFV replaces software network functions with physical hardware devices called [1].
The statement is incorrect because NFV replaces hardware with software, often running as virtual machines.
Fill both blanks to complete the NFV architecture components.
The NFV architecture includes the [1] which manages virtual resources, and the [2] which orchestrates network services.
The NFV Infrastructure (NFVI) manages virtual resources, while the NFV Orchestrator (NFVO) handles the orchestration of network services.
Fill all three blanks to complete the NFV service deployment code snippet.
services = { [1]: [2] for [3] in network_functions if network_functions[[3]] == 'active' }This dictionary comprehension creates a new dictionary with keys as uppercase function names (func.upper()), values as their status, iterating over function names (func) that are active.