Answer:
1. sum(B2,B3) , OR =B3+B2
2. =C4*C5
3. =F2/F3
Explanation:
Use the = operator to do any basic math using numbers or the respective cells. each also have respective functions as shown first in problem 1.
Answer:
<em>Plasma display panel </em>(PDP)
Explanation:
<em>Plasma display panel </em>(PDP) is a type of flat panel display that uses small cells containing electrically charged ionized gases or plasmas, to produce an image. PDP consists of millions of tiny gas-filled compartments, or cells, between two panels of glass with parallel electrodes deposited on their surfaces.
Queries are used to retrieve data from the database
The correct clause to retrieve only data about the supplier with identification number 85317 is WHERE supplier_id = 85317
<h3>How to determine the query</h3>
The clause is given as:
identification number = 85317
To retrieve data from the database, we make use of the WHERE clause followed by the column name, and the column value
In this case,
supplier_id represents the column name, while 85317 represents the value
Hence, the required clause is
WHERE supplier_id = 85317
Read more about database at:
brainly.com/question/1538272
Ctrl + Alt + Delete is the keys used by some PCs to reboot frozen computers by using task manager to kill any nonresponding applications. Another way to do this on some other is Ctrl + Shift + Esc.
Answer:
```
file = open("trips.txt","r")
file = file.split("\n")
trip_date = []
fuel_used = []
miles_traveled = []
for i in file:
trip_date.append(i.split(", ")[0])
for i in file:
fuel_used.append(i.split(", ")[1])
for i in file:
miles_traveled.append(i.split(", ")[2])
```
This should put the data in their own lists (i didn't test it) but im not going to solve everything for you. The rest is for you to tinker with. You shouldn't throw your question at us and expect an answer. This is the most that I will give you.
Explanation: