using Assembly LanguagePlease write instructions that do the following:
Prompt the user to input his/her idIf the id in the database, find the salary of theemployeeDisplay the current salaryDisplay the increased salary by 10% (using shift isoptional)If the id doesn’t exist, prompt the user to re-enter his/herid.Prompt the user and lock the program for 5 minutes after 3trials if the id doesn’t match.
using microsoft visual studio
Solution
func crt(id)
IF id in db
GET sal
PRINT sal
Print sal*0.90
GET id
FOR i in range (3)
IF id not in db
PRINT “locked for 5 mins”
ELSE
return crt