2Try It / Solve It1.Name the three modes for parameters and indicate which mode is the default mode. Which modecannot be modified inside the procedure?
Get answer to your question and much more
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. Oracle and Java are registered trademarks of Oracle and/respective owners. or its affiliates. Other names may be trademarks of their2. Procedures:A.Create a procedure that receives a country_id as an IN parameter and returns the name andpopulation of that country as OUT parameters. Include an exception handler to trap theNO_DATA_FOUND exception if the country does not exist. The procedure should not displaythe returned values; this will be done in the next step. Name your procedure find_area_pop.