Answer:
b.font tag
is used to change the appearance of your text on your web page
<span>There should be no need to have white-collar employers just next to factories thanks to the Information Revolution, and it enabled executives to stay in home, write documents, and send them easily.</span>
Answer:
ALTER TABLE orders
MODIFY (amount DEFAULT 250)
Explanation:
- ALTER TABLE statement is used to modify "amount" column in the existing "orders" table
- MODIFY (amount DEFAULT 250) is used to set the default value 250 of the "amount" column.
Therefore if the supervisor wants the amount column to be configured to accept a default value of 250, then "ALTER TABLE orders MODIFY (amount DEFAULT 250) " statement should be issued.
Personally responsibility
Hope this helps