Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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 / 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 ?    127 Yes 5 No

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 / 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 ?    7 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

can sql servers linked to other servers like oracle? : Sql dba

0 Answers  


What are the datatypes available in pl/sql ?

0 Answers  


how many columns can be used for creating index? : Sql dba

0 Answers  


How many clustered indexes can you have?

0 Answers  


when a procedure /package is getting invalidated?

4 Answers   TCS,


Which is faster count (*) or count 1?

0 Answers  


What is graph sql?

0 Answers  


What is integrity constraints?

5 Answers   Ramco, Satyam,


What does partition by mean in sql?

0 Answers  


1 SELECT a.field1, b.field2, c.field3, d.field4 2 FROM atable a, atable b, ctable c, dtable d 3 ? 4 ORDER BY 1 What is the minimum number of joins that must be specified on line 3 in the sample code above to properly link the tables? Notice that the table "atable" is aliased twice: once as "a" and once as "b." 1. One join 2. Two joins 3. Three joins 4. Four joins 5. Five joins

6 Answers   Sonata,


Can any one tell me how to increase the performance of a sql query ie what are the performance tips in creating or writing a sql query !!?

3 Answers   eBay,


while loading data into database how can u skip header and footer records in sql*loader

1 Answers   Oracle,


Categories