SELECT ROUND(TRUNC(MOD(1600,10),-1),2)
FROM dual;

Answers were Sorted based on User's Feedback



SELECT ROUND(TRUNC(MOD(1600,10),-1),2) FROM dual;..

Answer / suneel

0

Is This Answer Correct ?    125 Yes 9 No

SELECT ROUND(TRUNC(MOD(1600,10),-1),2) FROM dual;..

Answer / girija shankar dash

ANS:
SELECT ROUND(TRUNC(MOD(1600,10),-1),2) as "result"
FROM dual;

Result
------
0

Explanation:
-----------
MOD(1600,10)---> 0
TRUNC(0,-1)----> 0
ROUND(0,2)-----> 0

Is This Answer Correct ?    117 Yes 5 No

SELECT ROUND(TRUNC(MOD(1600,10),-1),2) FROM dual;..

Answer / dharmendra

0 only

Is This Answer Correct ?    39 Yes 3 No

SELECT ROUND(TRUNC(MOD(1600,10),-1),2) FROM dual;..

Answer / subbu

0

Is This Answer Correct ?    16 Yes 0 No

SELECT ROUND(TRUNC(MOD(1600,10),-1),2) FROM dual;..

Answer / sathish p

First mod(1600,10) output is 0...
So total output ZERO only..

Is This Answer Correct ?    10 Yes 2 No

SELECT ROUND(TRUNC(MOD(1600,10),-1),2) FROM dual;..

Answer / shadrak

0

Is This Answer Correct ?    8 Yes 1 No

SELECT ROUND(TRUNC(MOD(1600,10),-1),2) FROM dual;..

Answer / manish kumar

0.00

Is This Answer Correct ?    8 Yes 4 No

SELECT ROUND(TRUNC(MOD(1600,10),-1),2) FROM dual;..

Answer / ankit agarwal

00

Is This Answer Correct ?    6 Yes 8 No

SELECT ROUND(TRUNC(MOD(1600,10),-1),2) FROM dual;..

Answer / pothan

5

Is This Answer Correct ?    3 Yes 7 No

SELECT ROUND(TRUNC(MOD(1600,10),-1),2) FROM dual;..

Answer / ankit agarwal

error

Is This Answer Correct ?    8 Yes 13 No

Post New Answer

More SQL PLSQL Interview Questions

What is a full join sql?

0 Answers  


How do you remove duplicate records from a table?

0 Answers  


Is sql a dbms?

0 Answers  


What is the current version of sql?

0 Answers  


explain the difference between myisam static and myisam dynamic. : Sql dba

0 Answers  






What do you mean by field in sql?

0 Answers  


what are the different type of sql's statements ? : Sql dba

0 Answers  


What is the use of desc in sql?

0 Answers  


Can we join more than 2 tables in sql?

0 Answers  


List out the acid properties and explain?

0 Answers  


What is RAC in oracle?

7 Answers   MCN Solutions,


Explain the order of sql statement execution?

0 Answers  


Categories