Assuming that the table described in question 7) was properly updated in question 8), write one or more SQL statements to add the following items to the table: Bracket, quantity 25; Flange, quantity 8.
What will be an ideal response?
```
INSERT parts (description, quantity_in_stock) VALUES ("Bracket", 25)
INSERT parts (description, quantity_in_stock) VALUES ("Flange", 8)
```
Computer Science & Information Technology