what is run time error?

Answers were Sorted based on User's Feedback



what is run time error?..

Answer / sudha rani

An error that occurs during the execution of a program. In
contrast, compile-time errors occur while a program is
being compiled. Runtime errors indicate bugs in the program
or problems that the designers had anticipated but could do
nothing about. For example, running out of memory will
often cause a runtime error.
A runtime error is a computer error that appears in
the form of a message box consisting of a particular code
along with its corresponding definitions. Usually, a user
will notice that the computer becomes noticeably slow
before a runtime error appears.

After the runtime error message has been displayed and
closed, the software that shows this error would normally
close or freeze. In some cases, the operating system will
reboot.

Is This Answer Correct ?    8 Yes 2 No

what is run time error?..

Answer / venkat

run time error is the error which notify at the run time of
the program

Is This Answer Correct ?    3 Yes 0 No

what is run time error?..

Answer / sandeep palav

a run time error is a logical error....
it can be infinite looping, division by zero or an arrray
overflow.
such errors can be managed with implementing the exception
handling concept.

Is This Answer Correct ?    3 Yes 0 No

what is run time error?..

Answer / vipin bhatia

no doubt run time error occur while runtime.. but when the
execution of program take place and we enter input max then
limit or answer reach upto max data type lime , error
occured also known run time error....

Is This Answer Correct ?    2 Yes 0 No

what is run time error?..

Answer / santhosh

UsUally c program!THEY are two types?
complie!and run time?
compile means high level language&low level language into
middile level langage!this is complier!run time is program
code convert into machine code(binarys)some code are not
accept machine code!that also become runtime erroe!

Is This Answer Correct ?    0 Yes 0 No

what is run time error?..

Answer / ramya

During execution of the program the error will occur.it
produce wrong result and also go to main program

Is This Answer Correct ?    0 Yes 1 No

what is run time error?..

Answer / kalyank_msg

Run time error is occured only at runtime / execution time,
when we give the invalid input.

Is This Answer Correct ?    1 Yes 3 No

Post New Answer

More C C++ Errors Interview Questions

what is the large sustained error signal that eventually cause the controller output to drive to its limit

1 Answers   TCS,


Display this kind of output on screen. 1 0 1 1 0 1 3. Display this kind of output on screen. 1 1 0 1 0 1 4. Display this kind of output on screen. 1 1 0 1 0 1 5.Display this kind of output on screen. 1 2 3 4 5 6 7 8 9 10

1 Answers  


Given that two int variables, total and amount, have been declared, write a loop that reads integers into amount and adds all the non-negative values into total. The loop terminates when a value less than 0 is read into amount. Don't forget to initialize total to 0. Instructor's notes: This problem requires either a while or a do-while loop.

3 Answers  


wap for bubble sort

3 Answers  


what is meant by linking error? how can i solve it? if there is a linking error " unable to open file 'cos.obj'? then what should i do?

1 Answers  






how tally is useful?

2 Answers  


Answering Yes or No in C++...using only stdio.h and conio.h..........help me please...? here's must be the output of the program: Screen A Exam No. items Score 1 20 20 2 35 35 Another Entry? [Y] or [N] : Screen B: Record No. Student's Name: 1 Fernando Torres 2 Chuck Norris Note: if you press Y, the program must repeat the procedure in screen A, then if N, the program must proceed to the screen B....Please Help me out............

1 Answers  


write the value of x and y after execution of the statements: int x=19,y; y=x++ + ++x; x++; y++;

0 Answers  


What is the code for following o/p * * * * * * * * * * * * * * * *

1 Answers  


void main() { int i=5; printf("%d",i+++++i); }

14 Answers   HCL,


char* f() return "hello:"; void main() {char *str=f(); }

1 Answers  


How to develop a program using C language to convert 8-bit binary values to decimals. TQ

1 Answers   Amazon,


Categories