Create a package circle having the following functions:
- Area of circle.
- Circumference of circle.
Radius is to be passed as argument to both the functions to calculate values.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
create or replace package circle AS
function area(r IN number, ar OUT number) return number;
procedure circum(r IN number, cir OUT number);
. . . . . .
DO YOU WANT FULL ANSWER THEN DOWNLOAD ATTACHMENT: