> CREATE OR REPLACE FUNCTION FACTORIAL_1(factstr varchar2 ) 2 RETURN NUMBER AS 3 new_str VARCHAR2(4000) := factstr||'*' ; 4 fact number := 1 ; 5 BEGIN 6 7 WHILE new_str IS NOT NULL 8 LOOP 9 fact := fact * TO_NUMBER(SUBSTR(new_str,1,INSTR(new_str,'*')-1)); 10 new_str := substr( new_str,INSTR(new_str,'*')+1); 11 END LOOP; 12 13 RETURN fact; 14 15 END; explanation Above program?
Why do we use ngmodel?
Explain the .net web services supported data types?
Where will you enter responsible partners in web UI? Wt settings will you do?
What is the benefit of using interface in c#?
What are the main social and cultural impacts of the internet of things (iot)?
How does quantum optimization improve AI algorithms?
What are your KPI’S / KRA's ?
What do you understand by the panda update?
Difference Between Hadoop and HDFS?
What does it mean to be in union?
Explain the process of profitability analysis in sap co system co-pa? What is the use of co-pa? : cost center accounting
What do you mean by the protection fault?
Where is windiff exe?
Is multithreading faster than multiprocessing?