Post New Furukawa Automotive Systems HR Questions Interview Questions
what is an ETL or ETT? And what are the different types?
What does the jdbc connection interface?
What is asp short for?
What are 2 v’s less known dimension of big data?
Whether sap consultant work on development server or testing server?
What are Ruby arrays and how they can be created?
List some uses of dff (descriptive flex field) ?
List the comparison operators supported by javascript?
What does FDI stand for?
What is application system?
What is the use of routing master data in supply chain management process?
Explain the difference between data science, machine learning and artificial intelligence?
state basic meaning of 'INDUSTIAL AUTOMATION'?
Explain what is biosatellite?
> 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?