Sangeeta is a Python programmer working in a computer hardware company. She has to maintain the records of the peripheral devices. She created a csv file named Peripheral.csv to store the details. Structure of Peripheral.csv:
\begin{tabular}{|c|c|c|} \hline \textbf{P\_id} & \textbf{P\_name} & \textbf{Price} \\ \hline \end{tabular}
P\_id is the Peripheral device ID (integer).P\_name is the Peripheral device name (string).Price is the Peripheral device price (integer).Sangeeta wants to write the following user-defined functions:
Add\_Device(): To accept a record from the user and add it to the CSV file, Peripheral.csv.Count\_Device(): To count and display the number of peripheral devices whose price is less than 1000.Use csv.writer to write data to a CSV file and csv.reader to read data from a CSV file. Handle exceptions for invalid or header rows when processing numeric values.
The Add_Device() function:
Peripheral.csv in append mode.csv.writer().
The Count_Device() function:
Peripheral.csv in read mode.
The SELECT statement when combined with \(\_\_\_\_\_\_\) clause, returns records without repetition.
print(16 * 5 / 4 * 2 / 5 - 8)
myStr[:4] extracts the first 4 characters, which are "MISS".myStr[-5:] extracts the last 5 characters, which are "SIPPI"."#" in between, resulting in "MISS#SIPPI".In SQL, the aggregate function which will display the cardinality of the table is \(\_\_\_\_\_\).
print(16 * 5 / 4 * 2 / 5 - 8)
a = 20
def convert(a):
b = 20
a = a + b
convert(10)
print(a)
Select the correct output from the given options:
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.