Begin

For j in 4403201000 .. 4403202000

Loop

If mod (j, 100) = 0 then

Dbms_output.put_line (j);

End if;

End loop;

End;

what will be the output of this question

Answers were Sorted based on User's Feedback



Begin For j in 4403201000 .. 4403202000 Loop ..

Answer / nitesh

ORA-01426 : Numeric overflow

Is This Answer Correct ?    8 Yes 0 No

Begin For j in 4403201000 .. 4403202000 Loop ..

Answer / kishore

Begin
*
ERROR at line 1:
ORA-01426: numeric overflow
ORA-06512: at line 3

Is This Answer Correct ?    3 Yes 0 No

Begin For j in 4403201000 .. 4403202000 Loop ..

Answer / sanotsh

ERROR at line 1:
ORA-01426: numeric over Flow
ORA-06512: at line 2

Is This Answer Correct ?    3 Yes 0 No

Begin For j in 4403201000 .. 4403202000 Loop ..

Answer / shilpa.oracle

You've probably gone beyond the limit Oracle can cope with
for a number variable.

Is This Answer Correct ?    3 Yes 0 No

Begin For j in 4403201000 .. 4403202000 Loop ..

Answer / leonard

j which is used in for loop is a integer.

integer range is in between -2147483647 to 2147483647.

We can not use integer value in for loop more than
2147483647 which will throw 'ORA-01426: numeric overflow'
exception

Is This Answer Correct ?    3 Yes 1 No

Begin For j in 4403201000 .. 4403202000 Loop ..

Answer / iamanocp

It displays 4403201000 to 4403202000

Is This Answer Correct ?    0 Yes 1 No

Begin For j in 4403201000 .. 4403202000 Loop ..

Answer / venkat

this is out put aboue loop
4403201000
4403201100
4403201200
4403201300
4403201400
4403201500
4403201600
4403201700
4403201800
4403201900
4403202000

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More SQL PLSQL Interview Questions

What is the use of function "module procedure" in pl/sql?

0 Answers  


How would you convert date into julian date format?

0 Answers  


Why is pl sql used?

0 Answers  


what is oracle database ? : Sql dba

0 Answers  


how to select unique records from a table? : Sql dba

0 Answers  






What is a join query?

0 Answers  


Why should I use postgresql?

0 Answers  


What are primary key and foreign key and how they work?

0 Answers  


What are the benefits of pl/sql packages?

0 Answers  


What are sql commands?

0 Answers  


What is sql basics?

0 Answers  


i declare 4 procedure in package specification but in package body i write only 3 procedure. is it complie??//w

4 Answers   Scope International,


Categories