The programmer solves the problems of a user by expressing an algorithm in a programming language to make a program that can run on a computer.
CGI is the part of the Web server that can communicate with other programs running on the server.
<h3>What is The Common Gateway Interface? </h3>
The Common Gateway Interface (CGI) provides middleware between WWW servers and external databases and information sources. The World Wide Web Consortium (W3C) defined the Common Gateway Interface (CGI) and also defined how a program interacts with an HTTP (Hyper Text Transfer Protocol) server.
The body of the message is sent to the CGI program by the server through the stanard input pipe. Using the value of content_length, which indicates the length of the body, the CGI program can parse the input and obtain the values of the data entered by the user.
See more about CGI at brainly.com/question/12972374
#SPJ1
Answer:
Following are the code to this question:
for x in range(11, 21):#defining for loop that use range method that take two integer values
print(x," ")#print value
Output:
11
12
13
14
15
16
17
18
19
20
Explanation:
In the given question, it is not clear that what question is asked about and by search I show above so, I try to help you hope you like it.
In the above-given python code, a for loop is declared that use an x variable with the range method, that uses two integer value, in which first value will start the loop and last value ends the loop, inside the loop print method is used, that print the value of the loop variable x.