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

Declaration of Cube Guys please help me.. Is this a right way to declare cube.? If i Compile it. It Says: Cube undeclared what should i do? Please help \thanks in advanced #include<stdio.h> #include<math.h> #include<conio.h> main( ) { float x,y; while(x++<10.0) { printf("Enter Number:"); scanf("%d", &x); y = cube(x); printf("%f %f %f \n", x,pow(x,2),y); cube(x); } { float x; float y; y = x*x*x; } getch(); return (y); }

2 Answers  


I can not get my C++ program to work right. It is supposed to tell if a word is a palindrome or not, but it only tells thet the word is not a palindrome. And I can't fix it.

1 Answers  


How to create a program that lists the capital country when told what the original country is? (Terribly sorry, I'm a novice programmer and would appreciate any help ;). Cheers, Alexxis

0 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  


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  






How to convert hexadecimal to binary using c language..

1 Answers   Bajaj, GAIL, Satyam, Zenqa,


how to convert decimal to hexadecimal without using arrays just loops

2 Answers  


How to upgrade LOOP environment, I just mean, how can i make loop statement editable ? I just try some program using loop statement and checking it in multiple compilers. Every compiler showing different output, what's the wrong ? is it a compiler based problem, or loop based problem, tell me why ? and what will be the debugging process, for this kind of problem ?

1 Answers  


what is syntax error?

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  


wap for bubble sort

3 Answers  


I'm having trouble with coming up with the correct code. Do I need to put a loop? Please let me know if I'm on the right track and what areas I need to correct. I still don't have a good grasp on this programming stuff. Thanks =) The assignment was to write a program using string functions that accepts a coded value of an item and displays its equivalent tag price. The base of the keys: 0 1 2 3 4 5 6 7 8 9 X C O M P U T E R S Sample I/O Dialogue: Enter coded value: TR.XX Tag Price : 68.00

3 Answers   UCB,


Categories