>>> from cli import *
>>> import json
>>>
>>> cli('configure terminal ; interface loopback 5 ; no shut')
''
>>> intflist=json.loads(clid('show interface brief'))
>>> i=0
>>> while i < len (intflist['TABLE_interface']['ROW_interface']):
... intf=intflist['TABLE_interface'][ROW_interface][i]
... i=i+1
... if intf['state'] == 'up':
print intf['interface']
The Python interpreter and the Cisco Python SDK are available by default in the Cisco NX-OS Software. The SDK documentation shows how the clid() API can be used when working with JSON and XML. What are two effects of running the script? (Choose two.)