What is the difference between Sleep and Wait? (Java)
Answer Posted / shaik syed bashs
using sleep method thread will suspended for some time but
using wait() method thread will kept aside for some
time.wait() method is in object class but sleep() is in
thread class
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
How to rename an index in oracle?
How many memory layers are in the oracle shared pool?
Use of an integrity constraint is better to validate data. Explain
How to write date and time interval literals in oracle?
What is an oracle data file?
 What are the oracle DML commands possible through an update strategy?
State all possible different index configurations a table can possibly have?
How to rollback the current transaction in oracle?
Give the advantages and disadvantages of clusters.
Is oracle an operator?
> 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?
How to convert dates to characters in oracle?
How to invoke the data pump export utility?
What are the varoius components of physical database structure of oracle database?
How to create a new view in oracle?