Maggie Samson
Quiz por , criado more than 1 year ago

Geography Quiz sobre GEOM 73 - Python Quiz 9, criado por Maggie Samson em 14-04-2019.

39
1
0
Maggie Samson
Criado por Maggie Samson mais de 5 anos atrás
Fechar

GEOM 73 - Python Quiz 9

Questão 1 de 10

1

FTP stands for:

Selecione uma das seguintes:

  • File Transfer Protocol

  • File Translation Protocol

  • File Translation Procedure

  • File Transfer Procedure

Explicação

Questão 2 de 10

1

Which method of the ftp class of the ftplib module uses ASCII mode to transfer files?

Selecione uma das seguintes:

  • retrtxt()

  • retrbinary()

  • retrascii()

  • retrlines()

Explicação

Questão 3 de 10

1

When can you use urllib instead of ftplib to read and transfer files from an FTP server?

Selecione uma das seguintes:

  • anonymous FTP servers with a web interface

  • password protected FTP servers without a web interface

  • password protected FTP servers with a web interface

  • anonymous FTP servers without a web interface

Explicação

Questão 4 de 10

1

How do you set the current directory using ftplib on an FTP server so you can navigate to the files you need?

Selecione uma das seguintes:

  • ftp.cwd(pathname)

  • ftp.path(pathname)

  • ftp.dir(pathname)

  • ftp.setdir(pathname)

Explicação

Questão 5 de 10

1

When working with a ZIP file in Python using the zipfile module, how do you determine which files are present in the ZIP file without extracting them?

Selecione uma das seguintes:

  • open the file using something like zipfile.ZipFile("example.zip", "r"), then use the namelist method

  • open the file using something like zipfile.ZipFile("example.zip", "r"), then use the ziplist method

  • open the file using something like zipfile.ZipFile("example.zip", "r"), then use the read method

  • create a list of the files using something like zipfile.ListFiles("example.zip")

Explicação

Questão 6 de 10

1

Which compression method is the default employed by the zipfile module in Python?

Selecione uma das seguintes:

  • ZIP_STORED

  • TAR

  • GZIP

  • ZIP_COMPRESSED

  • ZIP_DEFLATED

Explicação

Questão 7 de 10

1

How would you extract all files in a ZIP file to the current working directory using the zipfile module in Python?

Selecione uma das seguintes:

  • ZipFile.openall()

  • ZipFile.extractall()

  • ZipFile.unzip()

  • ZipFile.extract("*")

Explicação

Questão 8 de 10

1

You should never use XML to store geospatial data since it is text-based and will therefore render your geospatial data useless.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 9 de 10

1

Which of the following module or libraries are used to work with XML data in Python? (check all that apply)

Selecione uma ou mais das seguintes:

  • xml.sax

  • xmlopen

  • xmlparser

  • xml.dom

  • xmllib

  • xml.etree.ElementTree

Explicação

Questão 10 de 10

1

XML files are notorious for missing or incorrect tags. Which module/library would you use in Python to parse XML files that contain tag errors?

Selecione uma das seguintes:

  • ElementTree

  • AlphabetSoup

  • BeautifulSoup

  • XMLfix

  • parseXML

Explicação