<< Chapter < Page Chapter >> Page >

Question 8

True or False? Assuming that the connection to the file named index.html at " www.dickbaldwin.com " is successful, the code in the top panel of Figure 2 produces the output shown in the bottom panel of Figure 2 with minor variations that change from one run to the next.

Figure 2 . Question 8.
import http.client connection = http.client.HTTPConnection("www.dickbaldwin.com")connection.request("GET", "/index.html") response = connection.getresponse()print("Status:",response.status, "Reason:", response.reason) print()print(response.getheaders()) connection.close()=============================================================================== Status: 200 Reason: OKServer: Apache/2.2 Content-Type: text/html; charset=iso-8859-1Date: Sat, 08 Nov 2014 22:08:37 GMT Content-Language: en-USAccept-Ranges: bytes Connection: Keep-AliveSet-Cookie: X-Mapping-bffmijpk=2C686CCC2A6865C34A535895FE033586; path=/ Content-Length: 3285

Go to answer 8

Question 9

True or False? Assuming that the connection to the file named index.html at " www.dickbaldwin.com " is successful, the code in the top panel of Figure 4 produces the output shown in the bottom panel of Figure 4 with minor variations that change from one run to the next.

Figure 4 . Question 9.
import http.client connection = http.client.HTTPConnection("www.dickbaldwin.com")connection.request("GET", "/index.html") response = connection.getresponse()print("Status:",response.status, "Reason:", response.reason) print()print(response.msg) connection.close()=============================================================================== Status: 200 Reason: OKServer: Apache/2.2 Content-Type: text/html; charset=iso-8859-1Date: Sat, 08 Nov 2014 22:15:55 GMT Content-Language: en-USAccept-Ranges: bytes Connection: Keep-AliveSet-Cookie: X-Mapping-bffmijpk=A6FAC0A1A16DBD577D9763B0D6D7684E; path=/ Content-Length: 3285

Go to answer 9

Question 10

True or False? Assuming that the connection to the file named index.html at " www.dickbaldwin.com " is successful, the code in the top panel of Figure 5 produces the output shown in the bottom panel of Figure 5 except that the actual date and time will change from one run to the next.

Figure 5 . Question 10.
import http.client connection = http.client.HTTPConnection("www.dickbaldwin.com")connection.request("GET", "/index.html") response = connection.getresponse()print("Status:",response.status, "Reason:", response.reason) print()print(response.getheader('Date')) connection.close()=============================================================================== Status: 200 Reason: OKSat, 08 Nov 2014 22:25:58 GMT

Go to answer 10

Question 11

True or False? Assuming that the connection to the file named index.html at " www.dickbaldwin.com " is successful, the code in the top panel of Figure 6 produces the output shown in the bottom panel of Figure 6 except that the contents of the file named index.html may change over time.

Figure 6 . Question 11.
import http.client connection = http.client.HTTPConnection("www.dickbaldwin.com")connection.request("GET", "/index.html") response = connection.getresponse()print("Status:",response.status, "Reason:", response.reason) print()print(response.read(410)) connection.close()=============================================================================== Status: 200 Reason: OKb'<?xml version="1.0" encoding="iso-8859-1"?>\r\n<!DOCTYPE html PUBLIC "-//W3C// DTD XHTML 1.0 Transitional//EN"\r\n "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\r\n<html xmlns="http://www.w3.org/1999/xhtml">\r\n<head>\r\n<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />\r\n<title>Flex/ActionScript/C++/Scratch/Alice/C#/Java/JavaScript/XML\r\n Program ming, by Richard G Baldwin'

Questions & Answers

what is phylogeny
Odigie Reply
evolutionary history and relationship of an organism or group of organisms
AI-Robot
ok
Deng
what is biology
Hajah Reply
the study of living organisms and their interactions with one another and their environments
AI-Robot
what is biology
Victoria Reply
HOW CAN MAN ORGAN FUNCTION
Alfred Reply
the diagram of the digestive system
Assiatu Reply
allimentary cannel
Ogenrwot
How does twins formed
William Reply
They formed in two ways first when one sperm and one egg are splited by mitosis or two sperm and two eggs join together
Oluwatobi
what is genetics
Josephine Reply
Genetics is the study of heredity
Misack
how does twins formed?
Misack
What is manual
Hassan Reply
discuss biological phenomenon and provide pieces of evidence to show that it was responsible for the formation of eukaryotic organelles
Joseph Reply
what is biology
Yousuf Reply
the study of living organisms and their interactions with one another and their environment.
Wine
discuss the biological phenomenon and provide pieces of evidence to show that it was responsible for the formation of eukaryotic organelles in an essay form
Joseph Reply
what is the blood cells
Shaker Reply
list any five characteristics of the blood cells
Shaker
lack electricity and its more savely than electronic microscope because its naturally by using of light
Abdullahi Reply
advantage of electronic microscope is easily and clearly while disadvantage is dangerous because its electronic. advantage of light microscope is savely and naturally by sun while disadvantage is not easily,means its not sharp and not clear
Abdullahi
cell theory state that every organisms composed of one or more cell,cell is the basic unit of life
Abdullahi
is like gone fail us
DENG
cells is the basic structure and functions of all living things
Ramadan
What is classification
ISCONT Reply
is organisms that are similar into groups called tara
Yamosa
in what situation (s) would be the use of a scanning electron microscope be ideal and why?
Kenna Reply
A scanning electron microscope (SEM) is ideal for situations requiring high-resolution imaging of surfaces. It is commonly used in materials science, biology, and geology to examine the topography and composition of samples at a nanoscale level. SEM is particularly useful for studying fine details,
Hilary
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Itse 1359 introduction to scripting languages: python. OpenStax CNX. Jan 22, 2016 Download for free at https://legacy.cnx.org/content/col11713/1.32
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Itse 1359 introduction to scripting languages: python' conversation and receive update notifications?

Ask