<< 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

if three forces F1.f2 .f3 act at a point on a Cartesian plane in the daigram .....so if the question says write down the x and y components ..... I really don't understand
Syamthanda Reply
hey , can you please explain oxidation reaction & redox ?
Boitumelo Reply
hey , can you please explain oxidation reaction and redox ?
Boitumelo
for grade 12 or grade 11?
Sibulele
the value of V1 and V2
Tumelo Reply
advantages of electrons in a circuit
Rethabile Reply
we're do you find electromagnetism past papers
Ntombifuthi
what a normal force
Tholulwazi Reply
it is the force or component of the force that the surface exert on an object incontact with it and which acts perpendicular to the surface
Sihle
what is physics?
Petrus Reply
what is the half reaction of Potassium and chlorine
Anna Reply
how to calculate coefficient of static friction
Lisa Reply
how to calculate static friction
Lisa
How to calculate a current
Tumelo
how to calculate the magnitude of horizontal component of the applied force
Mogano
How to calculate force
Monambi
a structure of a thermocouple used to measure inner temperature
Anna Reply
a fixed gas of a mass is held at standard pressure temperature of 15 degrees Celsius .Calculate the temperature of the gas in Celsius if the pressure is changed to 2×10 to the power 4
Amahle Reply
How is energy being used in bonding?
Raymond Reply
what is acceleration
Syamthanda Reply
a rate of change in velocity of an object whith respect to time
Khuthadzo
how can we find the moment of torque of a circular object
Kidist
Acceleration is a rate of change in velocity.
Justice
t =r×f
Khuthadzo
how to calculate tension by substitution
Precious Reply
hi
Shongi
hi
Leago
use fnet method. how many obects are being calculated ?
Khuthadzo
khuthadzo hii
Hulisani
how to calculate acceleration and tension force
Lungile Reply
you use Fnet equals ma , newtoms second law formula
Masego
please help me with vectors in two dimensions
Mulaudzi Reply
how to calculate normal force
Mulaudzi
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