2:13 PM ksuweb.kennesaw.edu ooo AT&T; LTE Question #1 (5 points): HTTP Request F
ID: 3671331 • Letter: 2
Question
2:13 PM ksuweb.kennesaw.edu ooo AT&T; LTE Question #1 (5 points): HTTP Request First Line A user wishes to access a web page given by the URL http://acme.com/zinc/copper.html. Give the first line of the request Question #2 (5 points): HTTP Response A web server is sending a JSON document back to a client as a successful response to a request. Give the entire header line that would specify the content type Question #3 (5 points): REST A client is sending an REST request to a server. The request is to update an existing product entry in the database. What method will be used in the request? Question #4 (5 points): REST Constraints Explain an advantage conferred by HTTP being a stateless protocol. Question 5 (20 points): Python The value of the variable los is a list of strings. Write the Python code that will print the strings in a column 15 characters wide and also print the lengths of the strings next to them in a column 5 characters wide. So, the list los = [-arthur", . beverly", "caroline" ] might print as arthur beverly caroline NOTE: this is only an example, your code should work for any values in los Question #6 (20 points): DB Access The following SQI command will create a table holding data about U S. states. The database is an SQLite database in the file named atlas.sglite create table state state id int primary key, nane varchar (50) code char (2), area integer): Write python code that would be part of a script. Assume that the file atlas.sglite is in the same directory as the script. Write the python code that will make a connection to the database and fetch all the columns in all the rows of the table. You may assume any necessary imports have already been provided.Explanation / Answer
here I have did for 7 and 8 qestions only
7) Index.html:
<html>
<head>
<title>TODO supply a title</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div>Linking</div>
<a href="next.html">next link</a>
</body>
</html>
next.html:
<html>
<head>
<title>TODO supply a title</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="newcss.css">
</head>
<body>
<div>I am the next one...</div>
<p>Cascading Style Sheets (CSS) is a style sheet language used for describing the presentation of
a document written in a markup language. Although most often used to set the visual style
of web pages and user interfaces written in HTML and XHTML, the language can be applied to
any XML document, including plain XML, SVG and XUL, and is applicable to rendering in speech,
or on other media. Along with HTML and JavaScript, CSS is a cornerstone technology used by most
websites to create visually engaging webpages,
user interfaces for web applications, and user interfaces for many mobile applications.</p>
</body>
</html>
8) css applying
<html>
<head>
<title>TODO supply a title</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div>Linking</div>
<a href="next.html">next link</a>
</body>
</html>
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.