Fill in the blank:
\(\_\_\_\_\_\_\_\_\) is a set of rules that needs to be followed by the communicating parties in order to have a successful and reliable data communication over a network.
Familiarize yourself with common protocols like HTTP (web communication), FTP (file transfer), and SMTP (email).
A protocol is a set of rules that defines how data is transmitted and received over a network. It ensures that communication between devices is reliable and successful. Examples of protocols include HTTP, FTP, and SMTP.
Assertion (A): The expression "HELLO".sort() in Python will give an error.
Reason (R): sort() does not exist as a method/function for strings in Python.
Mark the correct choice:
The code given below accepts five numbers and displays whether they are even or odd:
Observe the following code carefully and rewrite it after removing all syntax and logical errors.
Underline all the corrections made.
LS = ["HIMALAYA", "NILGIRI", "ALASKA", "ALPS"] D = {} for S in LS: if len(S) % 4 == 0: D[S] = len(S) for K in D: print(K, D[K], sep = "#")
Write the SQL commands to perform the following tasks:
(i) View the list of tables in the database Exam
(ii) View the structure of the table Term1
Consider the following Python statement:
F = open('CONTENT.TXT')
Which of the following is an invalid statement in Python?
Assertion (A): CSV file is a human-readable text file where each line has a number of fields, separated by a comma or some other delimiter.
Reason (R): writerow() method is used to write a single row in a CSV file.
Mark the correct choice:
Define the term web hosting.
Name any two web browsers.