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

Why plvtab is considered as the easiest way to access the pl/sql table?

0 Answers  


Is it possible for a table to have more than one foreign key?

0 Answers  


Is sqlite free?

0 Answers  


What is schema in sql example?

0 Answers  


What is exception? What are the types of exceptions?

0 Answers  






what the meaning of sql

8 Answers  


How to run sql functions in pl/sql?

0 Answers  


Can you create a table with Primary Key not as the clustered index.

2 Answers   CGI,


Does asenumerable execute the query?

0 Answers  


What is where clause in sql?

0 Answers  


how can we destroy the session, how can we unset the variable of a session? : Sql dba

0 Answers  


Can we rollback truncate?

0 Answers  


Categories