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 ?    124 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 ?    114 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

Do stored procedures prevent sql injection?

0 Answers  


What is a pragma statement?

0 Answers  


Interchange the value of a column Gender in a table where values are Male and Female. So, where the value is Male, it should changed to Female and Female to Male.

4 Answers   Cap Gemini, IBM,


Can we write ddl statements in functions?

0 Answers  


What is sqlerrd?

0 Answers  






wirte a query to filter improper date format follwing table? date 20-apr 22-may-2010 26-jun-2010 feb-2009 i want the output date 22-may-2010 26-jun-2010

6 Answers   Accenture,


What is the difference between a primary key and a clustered index?

0 Answers  


Explain what is sql?

0 Answers  


What is a ddl command?

0 Answers  


what is the difference between join and union? : Sql dba

0 Answers  


how to create a database in oracle?please gve anser with example

1 Answers  


How we can create a table in pl/sql block. Insert records into it? Is it possible by some procedure or function? Please give example?

0 Answers  


Categories