DAD220 Mod4-3 Major Activity Database Documentation
docx
keyboard_arrow_up
School
Southern New Hampshire University *
*We aren’t endorsed by this school
Course
220
Subject
Chemistry
Date
Feb 20, 2024
Type
docx
Pages
7
Uploaded by AmbassadorFlowerCapybara40
DAD 220 Module Four Major Activity Database Documentation
Follow Steps 1 through 4 from the Module Three Major Activity only to generate tables for this assignment.
1.
Import the
data from each file
into tables. A.
Use the import utility of your database program to load the data from each file into the table of the same name. You’ll perform this step three times, once for each table.
B.
Provide the SQL commands you ran against MySQL to complete this successfully in your answer.
Commands:
LOAD DATA INFILE '/home/codio/workspace/rma.csv'
INTO TABLE RMA FIELDS TERMINATED BY ',' LINES TERMINATED BY '\r\n';
LOAD DATA INFILE '/home/codio/workspace/customers.csv'
INTO TABLE Customers FIELDS TERMINATED BY ',' LINES TERMINATED BY '\r\n';
LOAD DATA INFILE '/home/codio/workspace/orders.csv'
INTO TABLE Orders FIELDS TERMINATED BY ',' LINES TERMINATED BY '\r\n';
2.
Write basic queries against imported tables to organize and analyze targeted data
. 3.
For each query, include a screenshot of the query and its output. You should also include a 1- to 3-sentence description of the output.
A.
Write an SQL query that returns the count of orders for customers located only in the city of Framingham, Massachusetts. Commands:
SELECT COUNT(*) FROM Customers INNER JOIN Orders on Customers.CustomerID = Orders.CustomerID WHERE UPPER(Customers.city) = 'FRAMINGHAM' AND UPPER(Customers.state) = 'MASSACHUSETTS';
Explanation:
The reason for this query was to find all customers located in Framingham, Massachusetts. I found that
505 orders populate with the provided command. An INNER JOIN ensures only customers with orders in
the provided city and state are in the result.
B.
Write an SQL query to select all of the customers located in the state of Massachusetts.
i.
Use a WHERE clause to limit the number of records in the Customers table to only those that are located in Massachusetts.
Commands:
SELECT COUNT(*) FROM Customers WHERE UPPER(Customers.state) = 'Massachusetts';
ii.
Record an answer to the following question: How many records were returned? 982 records were returned.
Explanation: This query required me to select all the customers from Massachusetts. The UPPER function
changes all state names to upper case eliminating upper/lower case issues. Utilizing a WHERE clause I
was able to limit the number of records from the table Customers to those only located in Massachusetts.
C.
Write an SQL query to insert four new records into the Orders and Customers tables using the following data:
INSERT INTO Customers (CustomerID, FirstName, LastName, Street, City, State, ZipCode, Telephone) Values
(100004,'Luke','Skywalker','17 Maiden Lane','New York','NY','1022','212-555-1234'),
(100005,'Winston','Smith','128 Sycamore Street','Greensboro','NC','27401','919-555-6623'),
(100006,'MaryAnne','Jenkins','2 Coconut Way','Jupiter','FL','33458','321-555-8907'),
(100007,'Janet','Williams','58 Redondo Beach Blvd','Torrance','CA','90501','310-555-5678');
SELECT * from Customers where CustomerID IN (100004, 100005, 100006, 100007);
Customer
ID
FirstNa
me
Lastna
me
StreetAddress
City
State
ZipCo
de
Telephone
100004
Luke
Skywalk
er
17 Maiden Lane
New York
NY
10222
212-555-
1234
100005
Winston
Smith
128 Sycamore Street
Greensbor
o
NC
27401
919-555-
6623
100006
MaryAn
ne
Jenkins
2 Coconut Way
Jupiter
FL
33458
321-555-
8907
100007
Janet
Williams
58 Redondo Beach Blvd
Torrence
CA
90501
310-555-
5678
Explanation: Per the previous assignment I learned that StreetAddress is not a column in the table
Customers. I utilized ‘street’ in my command and was able to add four new customers records to the
table.
Orders Table
OrderID
CustomerID
SKU
Description
1204305
100004
ADV-24-10C
Advanced Switch 10GigE Copper 24 port
1204306
100005
ADV-48-10F
Advanced Switch 10GigE Copper/Fiber 44 port copper 4 port fiber
1204307
100006
ENT-24-10F
Enterprise Switch 10GigE SFP+ 24 Port
1204308
100007
ENT-48-10F
Enterprise Switch 10GigE SFP+ 48 port
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
- Access to all documents
- Unlimited textbook solutions
- 24/7 expert homework help
INSERT INTO Orders (OrderID, CustomerID, SKU, Description) VALUES
(1204305, 100004, 'ADV-24-10C','Advanced Switch 10GigE Copper 24 port'),
(1204306, 100005, 'ADV-48-10F','Advanced Switch 10GigE Copper/Fiber 44 port copper 4 port fiber'),
(1204307, 100006, 'ENT-24-10F','Enterprise Switch 10GigE SFP+ 24 port'),
(1204308, 100007, 'ENT-48-10F','Enterprise Switch 10GigE SFP= 48 port');
SELECT * from Orders where OrderID IN (1204305, 1204306, 1204307, 1204308);
Explanation: In this question I was asked to add four Orders to the Orders table.
D.
In the Customers table, perform a query to count all records where the city is Woonsocket, Rhode
Island.
Explanation: Utilizing SELECT COUNT from the table Customers and the WHERE clause for city and state helped me achieve my solution. i.
There are 7 records in the customers table where the field “city” equals “Woonsocket”.
E.
In the RMA database, update a customer’s records.
SQL statement to select the current fields of status
and step
for the record in the rma
table with an orderid
value of “5175.”
1.
What are the current status and step?
The status is Pending and the step is Awaiting customer Documentation.
Explanation: The results from order 5175 show that progression of the process is dependent on the
customer providing the required Documentation. the customer must provide the required information.
Command: SELECT * FROM RMA WHERE OrderID = 5175;
ii.
Write an SQL statement to update the
status
and step
for the OrderID
, 5175 to status
= “Complete” and step
= “Credit Customer Account.”
Command: UPDATE RMA SET Status = 'Complete', Step = 'Credit Customer Account'
WHERE OrderID = 5175;
1.
What are the updated status
and step
values for this record? The updated status is now Complete, and the Step is Credit Customer Account.
Commands:
UPDATE RMA SET Status = 'Complete', Step = 'Credit Customer Account'
WHERE OrderID = 5175;
SELECT * FROM RMA WHERE OrderID = 5175;
Explanation: To update the status and step of record 5175 an UPDATE statement was used. ‘Credit
Customer Account’ and ‘Complete’ are the new step and status. This is verified with a SELECT
command from the RMA table WHERE OrderID is 5175.
Commands:
UPDATE RMA SET Status = 'Complete'
F.
Delete RMA records.
i.
Write an SQL statement to delete all records with a reason of “Rejected.”
1.
How many records were deleted? Provide a screenshot of your work.
The total number of records deleted is 596. Explanation: The DELETE command deletes all records from the RMA table WHERE ‘Rejected’ is the
Reason. This deleted 596 records. My second command verifies deletion of the records by searching for
records whose Reason is ‘Rejected’ returning with zero records.
Commands:
DELETE FROM RMA WHERE Reason = ‘Rejected’;
SELECT COUNT(*) FROM RMA WHERE Reason = 'Rejected';
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
- Access to all documents
- Unlimited textbook solutions
- 24/7 expert homework help
4.
Create an output file of the required query results
. 5.
Write an SQL statement to list the contents of the orders table and send the output to a file with a .csv extension.
Command:
SELECT * INTO OUTFILE '/home/codio/workspace/quantigrationrma-data.csv'
FIELDS TERMINATED BY ','
LINES TERMINATED BY '\r\n'
FROM Orders;
Explanation: With this command I was able to create a file where this data will have structured data with
easier to lien breaks. This is for use in applications such as Excel. The quantigrationrma-data.csv is now
in the filetree.
Related Documents
Related Questions
ZnCl2 (ag) + NAOH (aq)
Edit View Insert
Format Tools
Tab
12pt v
Paragraph
BI
arrow_forward
What is the purpose of a database schema?
A) To manage the database operations
B) To define the structure and relationships of
database objects
C) To store user data
D) To perform queries
arrow_forward
Help
arrow_forward
rsity o...
ingsbo...
kboard...
ARED4
ethod? 7...
F2
Remaining Time: 1 hour, 22 minutes, 23 seconds.
Question Completion Status:
A Moving to the next question prevents changes to this answer.
Question 1
#
The angle of the water molecule (H₂O) is
180 degrees
120 degrees
100 degrees
90 degrees
109 degree
A Moving to the next question prevents changes to this answer.
MAR
14
80
F3
SA
$
000
F4
tv
%
F5
NA
MacBook Air
22
F6
∞r
F7
45.113
arrow_forward
Please help
arrow_forward
Help
100%
Public Health Ch X
HSC 258 - Major Projec X
Mind Tap - Cengage Lea X
C The Illustra
d%3D55750828934189288909969212&elSBN=9781305657571&id%3D1061392007&nbld%3D21...
References
Use the References to access important values if needed for this question.
For the following reaction, 66.8 grams of silver nitrate are allowed to react with 24.6 grams of
copper(II) chloride.
silver nitrate(aq) + copper(II) chloride(s) silver chloride(s) + copper(II) nitrate(aq)
grams
What is the maximum amount of silver chloride that can be formed?
What is the FORMULA for the limiting reagent?
grams
What amount of the excess reagent remains after the reaction is complete?
Submit Answer
arrow_forward
nin x
UNIT_8_PROGRESS_CHECK (Protected View)
- Word (Unlicensed Product)
Mailings
Review
View
Help
Tell me what you want to do
ontain viruses. Unless you need to edit, it's safer to stay in Protected View.
Enable Editing
Office product is inactive. To use for free, sign in and use the Web version.
Activate
Use free at Office.com
the questions.
Acid
Ka
HF
6.7 x 10 4
НС-Н3О2
1.8 x 10-5
[H+][A-]
a. Using the expression Ka=
explain how to determine which solution has the lower pH, 0.10 M HF(aq)
[HA]
or 0.10 MHC,H3O2(aq). Do not perform any numerical calculations.
b. Which solution has a higher percent ionization of the acid, a 0.10 M solution of HC,H;O2(ag) or a 0.010 M
solution of HC,H;O2(aq)? Justify your answer including the calculation of percent ionization for each solution.
14T
13+
12+
11+
10+
9+
8-
6-
5+
4-
hp
arrow_forward
please solve part a and b explaining why is it that way. show your work on a piece of paper please.
arrow_forward
Carla is using a fertilizer that contains nitric acid. How is nitric acid classified?
strong acid
weak acid
strong base
weak base
Save and Exit
Next
Mark this and return
ContentViewers/AssessmentViewer/Activit.
arrow_forward
3
E
D
20
F3
[Review Topics]
[References]
Use the References to access important values if needed for th
a. When 52.70 and 44.375 are divided, the answer should be based on 4
Enter the answer with the correct number of digits.
52.70 44.375= 1.188
An error has been détected in your answer. Check for typos,
miscalculations etc. before submitting your answer.
C
b. When 44.375 is subtracted from 52.70, the answer should be based on 2 decimal place(s).
Enter the answer with the correct number of digits.
52.70 44.375= 8.32
Submit Answer
$
4
888
R
F
Retry Entire Group
V
%
5
Cengage Learning Cengage Technical Support
F5
T
G
6
4 more group attempts remaining
B
MacBook Air
F6
Y
H
&
7
F7
U
N
* 00
8
J
DII
FB
-
M
(
9
K
F9
O
)
[
V
1
F12
11
21
?
1
arrow_forward
I need help understanding how to do this, can you please show me how you get the CFU/mL
arrow_forward
5
MODEL#3: Understanding How SFs Propagate in Calculations.
C. 4.0000 cm²
136.8 mm
C. 3800. g
f. 1.70×104 g/cm³
a. Calculate the volume (length x width x height) in units of mm³ (mm × mm x mm) for the
large eraser shown below. Report your answer to as many digits as your calculator displays.
254.7 mm
fufc
25.3 mm
Jef
b. Estimated uncertainties in measurements are at least ±1 value in last reported digit.
Estimate the new volume if each of the above measurements were 0.1 mm larger (136.9 mm
x 254.8 mm x 25.4 mm).
2
c. Starting from the left, which digit is the 1st digit in the answers from a & b that differ? If you
report all the values that agree plus the 1st value where the answers disagree, how many SFs
should you report?
arrow_forward
Tab
Window Help
View
History Bookmarks Profiles
Chrome
File
Edit
A ALEKS - Iffat Khan - Learn
St. John's University - My Appl x
A www-awn.aleks.com/alekscgi/x/Isl.exe/1o_u-IgNslkr7j8P3jH-lijkPWvZoZLqKt1FLlq7wcPWKzBYGfE9IMFjfv2X=
O SIMPLE REACTIONS
Identifying precipitation, combustion and acid-base reactions
Classify each chemical reaction:
type of reaction
(check all that apply)
reaction
O precipitation
O combustion
O combination
кон (аq) + нсIо, (аq) - ксіо, (аg) + н, о()
O single replacement
O double replacement
O acid-base
decomposition
O combination
O precipitation
O single replacement
O double replacement
O decomposition
O combustion
Feso, (aq) + PbCL, (aq) →
FeCl, (aq) + PbSO,(s)
O acid-base
O combination
O precipitation
2K (s) + Br, (1) → 2K Br(s)
O single replacement
O combustion
double replacement
O acid-base
O decomposition
O combination
O precipitation
Baco, (s)
Ba0(s) + Co, (g)
O single replacement
O combustion
O double replacement
O acid-base
decomposition
Explanation…
arrow_forward
Run 1
Run 2
Run 3
Run 4
Run#
1
2
3
4
Na₂S₂O3
0.005M
1 drop
1 drop
1 drop
1 drop
Quantity.
[Na2S2O3] stock
[KI] stock
[H202] stock
k'
KI
0.1M
2 drops
KI
0.2M
2 drops
2 drops
2 drops
Trial 1 (s)
0:34
0:07
1:11
0:12
Value
5.00 * 10^-3
2.00 * 10^-1
1.00 * 10^-3
0.0289
H₂O2
0.05M
1 drop
H₂O2
0.1M
2 drops
2 drops
1 drop
Trial 1 (s)
0:32
0:06
1:01
0:10
Trial 1 (s)
0:32
0:05
0:59
0:17
Trial 1 (s)
0:23
0:04
1:06
0:09
Trial 1 (s)
0:14
0:3
01:13
0:13
For the results you have shown in the Summary tables, provide the following sample calculations.
Show your work in the space provided:
Calculate the average reaction time for Run #1:
For all Run #1 reaction times, use the Grubbs test to show whether you have an "outlier" in your
data set.
arrow_forward
One morning, you find it very difficult to wake up. Something was making a huge racket all night and kept you from sleeping. Immediately you go to warm up some water for coffee, but the coffee pot won’t turn on because there is no power. You look outside and it turns out the loud noises were caused by an alien invasion which has also knocked out the powerlines. Naturally, your mind starts to race with thoughts of how to make your coffee.
a. Determine how much heat you will need to get 0.472 L of 18.0 oC water to begin boiling (in other words, get it to 100.0 °C). The specific heat capacity of water is 4.18 J/g* oC.
b. Without electricity, you’ll have to be clever about where to get the heat from. Conveniently, you have a supply of Unknownium oxide (Uk2O3) that will react with hydrochloric acid (HCl) according to the equation below:
Uk2O3 (s) + 6 HCl (aq) → 2 UkCl3 (aq) + 3 H2O (g) Given that...
4 Uk + 3 O2 → 2 Uk2O34 HCl + O2 → 2 H2O + 2 Cl2 2 UkCl3 → 2 Uk + 3 Cl2
What is the…
arrow_forward
ms3.net/mod/quiz/attempt.php?attempt=3196148&cmid%3D2659383&page=1
The "down arrow" on the far left of the toolbar directly above the space for your answer will
take you to the subscript "x2" option. If you can't make it work, then write the subscript on
the same line: H20 or H20 will be accepted. Use--> (dash, dash, greater than) for your
arrow.
Write and balance the chemical equation for the reaction between solid calcium
bicarbonate (also called calcium hydrogen carbonate) and aqueous acetic acid to form
aqueous calcium acetate, water, and gaseous carbon dioxide. Include all physical states.
A -
В
I
U
arrow_forward
7. You can see an MSDS below. Please answer the following questions related to the MSDS.
a) What is the name of this chemical?
b) What should you do if someone drinks the chemical?
c) Would this chemical catch on fire if it was exposed to flames?
d) If this chemical gets in your eye what should you do?
e) What color is this chemical?
f) What should you do if someone spills a small amount of the chemical?
arrow_forward
4) __ H2 +
O2 0 H20
HCI O
Pb(OH)2 +
AIBR3 +
Al2(SO4)3
5)
H20 +
PbCl2
6).
K2SO4 O
KBr +
7)
CH4 +
O2 0
CO2 +
H2O
8)
_ C3H8 +
02
O2 0
СО2 +
H20
9).
C3H18 +
O2
CO2 +
H20
10).
FeCl3 +
NaOH
Fe(OH)3 +
Nac
arrow_forward
You work in a research organization that is looking for markers of various diseases that can be used as a diagnostic for the disease. It has been reported in the past that high levels of Cu are found in the sweat of people with cystic fibrosis. One of the research projects is focused on looking for high levels of Cu in samples that can be obtained non-invasively such as saliva, sweat, hair, nails, etc.
The lab will analyze large samples for Cu. What instrument would you recommend purchasing to support this work, Atomic absorption spectrophotometer or an inductively coupled plasma atomic spectrophotometer? Explain the basis for your decision.
arrow_forward
Sea X
Assignments: ANATO X Gi
0220907135028396%20(1).pdf
2
CD Page view
Human Anatomy X
A Read aloud
*20220907135028396 X
TAdd text
Draw
4 You prepare four solutions:
Solution 1: Reactants + enzyme at #0 (about 100°F) and pH 7
Chemistry
Check your recall lab. x
V
Highlight
UNIT 2 65
3 Decompression sickness (also known as the bends) is a condition that affects divers and others operating under
pressurized conditions. It occurs when gases such as nitrogen (N₂) come out of solution in the blood. This can
lead to symptoms including joint pain, shortness of breath, and paralysis. Severe cases may result in death.
a What type of molecule (ionic, polar covalent, nonpolar covalent) is nitrogen gas?
b The liquid medium of blood is water. What type of compound (ionic, polar covalent, nonpolar covalent) is
water?
c What happens when molecules such as nitrogen gas mix with water? How does this explain the problems we
see with decompression sickness?
arrow_forward
This question must be finished in your tutorial and this Word document containing your answers
submitted within 120 minutes of the end of your tutorial. You will receive feedback from your tutor
in a few weeks. The answers will be available where you obtained this. There are no marks for this
exercise but it counts towards participation.
Draw your answers on a separate piece of paper, take an image and insert the image(s) into this
Word document at the end.
(a)
Re-draw the following molecule with the CH2CH2CH3 group on the ladder
1.
H
H2
ОН
H3C
H2
CH2
H;C
(b)
Is the molecule in part (a) the same molecule or the enantiomer of the following.
Circle your answer
Explain your answer
CH3
SAME MOLECULE
H2C
H2
-CH3
ENANTIOMER
H2
ОН
3.
What is the configuration (R or S) of the chiral carbon in this molecule.
Label the ranking of each of the groups on the chiral carbon from 1 (highest) to 4 (lowest)
Draw the representation of this molecule with the lowest ranked group (4) on the ladder and…
arrow_forward
H.
H.
01- sp3, 2 = sp3, 3 = sp3
1 = sp, 2 = sp2, 3 = sp3
1 = sp2, 2 = sp3, 3 = sp2
O 1= sp2, 2 = sp3,3 = sp3
arrow_forward
There is one incorrect answer here. Can you help me figure out which one?
arrow_forward
CHM120 Park Lab Notebook F20
Alessandra Fernandez Cuadr
Desktop App
O Tell me what you want to do
m<而< 三
A Styles v
K Tags v
abc v
HCI
Ba(NO3)2 K2CO3
AgNO3
Pb(NO3)2
Na,so
KI
HNO3
4
HCI
Ba(NO No
3)2
reaction
K2CO3 Evolution
of gas
White
precipitate
AGNO3 White
No
White
precipitate reaction
precipitate
KI
No
No
No
White
reaction
reaction
reaction
precipitate
Pb(NO White
3)2
No
White
No
Yellow
precipitate reaction
precipitate reaction
precipitate
HNO3 Evolution of
No
Evolution
No
No
No
gas
reaction
of gas
reaction
reaction
reaction
Na,so No
reaction
White
No
White
No
White
No
precipitate reaction
precipitate reaction
precipitate reaction
4
2. Along with written observations, write 1) the molecular equation, 2) complete ionic and 3)
net ionic equations for each reaction.
stv
X
Search or type URL
*
&
arrow_forward
Home
101 Chem 101
My Questions bartleby
X
(274) Banda Carnaval - Sueñ
X
X
X
app.101edu.co
Unofficial Transcript...
Oregon Scholarship....
Welcome to the OS...
myClackamas Login
Document Require...
Apps WLogon
Home FAFSA on t...
The National Societ...
>
Submit
Question 5 of 20
If 450 g of magnesium hydroxide is dissolved in water to make 6.5 L of
solution, what is the concentration in mM?
mM
2
1
4
5
6
с
7
8
+-
0
x 100
5:05 PM
Type here to search
о
ENG
11/21/2019
LO
arrow_forward
ed Test
This test has a time limit of 1 hour.This test will save and submit automatically when th
Warnings appear when half the time, 5 minutes, 1 minute, and 30 seconds remain.
tiple Attempts Not allowed. This test can only be taken once.
ce Completion This test can be saved and resumed at any point until time has expired. The timer will
emaining Time: 57 minutes, 15 seconds.
uestion Completion Status:
A Moving to another question will save this response.
Question 4
The standard Gibb's Free Energy (AGO) = 18.38 kJ at 25C for the reaction
HNO2 2 H+ + NO2-.
What is the value of AG if {HNO2} = 0.75 M, {H+} = 0.13M and {NO2-} = 0.07M?
%3D
%3D
%3D
Is the reaction spontaneous under these conditions?
Moving to another question will save this response.
arrow_forward
SEE MORE QUESTIONS
Recommended textbooks for you
Related Questions
- ZnCl2 (ag) + NAOH (aq) Edit View Insert Format Tools Tab 12pt v Paragraph BIarrow_forwardWhat is the purpose of a database schema? A) To manage the database operations B) To define the structure and relationships of database objects C) To store user data D) To perform queriesarrow_forwardHelparrow_forward
- rsity o... ingsbo... kboard... ARED4 ethod? 7... F2 Remaining Time: 1 hour, 22 minutes, 23 seconds. Question Completion Status: A Moving to the next question prevents changes to this answer. Question 1 # The angle of the water molecule (H₂O) is 180 degrees 120 degrees 100 degrees 90 degrees 109 degree A Moving to the next question prevents changes to this answer. MAR 14 80 F3 SA $ 000 F4 tv % F5 NA MacBook Air 22 F6 ∞r F7 45.113arrow_forwardPlease helparrow_forwardHelp 100% Public Health Ch X HSC 258 - Major Projec X Mind Tap - Cengage Lea X C The Illustra d%3D55750828934189288909969212&elSBN=9781305657571&id%3D1061392007&nbld%3D21... References Use the References to access important values if needed for this question. For the following reaction, 66.8 grams of silver nitrate are allowed to react with 24.6 grams of copper(II) chloride. silver nitrate(aq) + copper(II) chloride(s) silver chloride(s) + copper(II) nitrate(aq) grams What is the maximum amount of silver chloride that can be formed? What is the FORMULA for the limiting reagent? grams What amount of the excess reagent remains after the reaction is complete? Submit Answerarrow_forward
- nin x UNIT_8_PROGRESS_CHECK (Protected View) - Word (Unlicensed Product) Mailings Review View Help Tell me what you want to do ontain viruses. Unless you need to edit, it's safer to stay in Protected View. Enable Editing Office product is inactive. To use for free, sign in and use the Web version. Activate Use free at Office.com the questions. Acid Ka HF 6.7 x 10 4 НС-Н3О2 1.8 x 10-5 [H+][A-] a. Using the expression Ka= explain how to determine which solution has the lower pH, 0.10 M HF(aq) [HA] or 0.10 MHC,H3O2(aq). Do not perform any numerical calculations. b. Which solution has a higher percent ionization of the acid, a 0.10 M solution of HC,H;O2(ag) or a 0.010 M solution of HC,H;O2(aq)? Justify your answer including the calculation of percent ionization for each solution. 14T 13+ 12+ 11+ 10+ 9+ 8- 6- 5+ 4- hparrow_forwardplease solve part a and b explaining why is it that way. show your work on a piece of paper please.arrow_forwardCarla is using a fertilizer that contains nitric acid. How is nitric acid classified? strong acid weak acid strong base weak base Save and Exit Next Mark this and return ContentViewers/AssessmentViewer/Activit.arrow_forward
- 3 E D 20 F3 [Review Topics] [References] Use the References to access important values if needed for th a. When 52.70 and 44.375 are divided, the answer should be based on 4 Enter the answer with the correct number of digits. 52.70 44.375= 1.188 An error has been détected in your answer. Check for typos, miscalculations etc. before submitting your answer. C b. When 44.375 is subtracted from 52.70, the answer should be based on 2 decimal place(s). Enter the answer with the correct number of digits. 52.70 44.375= 8.32 Submit Answer $ 4 888 R F Retry Entire Group V % 5 Cengage Learning Cengage Technical Support F5 T G 6 4 more group attempts remaining B MacBook Air F6 Y H & 7 F7 U N * 00 8 J DII FB - M ( 9 K F9 O ) [ V 1 F12 11 21 ? 1arrow_forwardI need help understanding how to do this, can you please show me how you get the CFU/mLarrow_forward5 MODEL#3: Understanding How SFs Propagate in Calculations. C. 4.0000 cm² 136.8 mm C. 3800. g f. 1.70×104 g/cm³ a. Calculate the volume (length x width x height) in units of mm³ (mm × mm x mm) for the large eraser shown below. Report your answer to as many digits as your calculator displays. 254.7 mm fufc 25.3 mm Jef b. Estimated uncertainties in measurements are at least ±1 value in last reported digit. Estimate the new volume if each of the above measurements were 0.1 mm larger (136.9 mm x 254.8 mm x 25.4 mm). 2 c. Starting from the left, which digit is the 1st digit in the answers from a & b that differ? If you report all the values that agree plus the 1st value where the answers disagree, how many SFs should you report?arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you