Explanation:
1.By Learning web development Fundamentals.
2.Choose a development specialization.
Answer:
account recovery
Explanation:
account recovery, provides options for getting access to your old password or resetting the account to a temporary password; users will change to a permanent password upon first login.
Answer:to add a column to existing table.
to rename any existing column.
to change datatype of any column or to modify its size.
to drop a column from the table.
Explanation:
hope this help
line 4
if salary < 30000
error missing ":"
solution
if salary < 30000:
line 6
tax = salary * 0.2
error is missing identifier for tax
solution add identifier for tax on line 3
tax = 0.0
line 11
error syntax
solution is move tax = salary * 0.4 + 6000 to the right
tax = salary * 0.4 + 6000