Alien Chef

Our coding is working correctly and is yielding the desired output but is not accepted due to some Run Time Error. How to deal with problem we are waiting for an immediate reply…

Run Time Error (RTE) could be due to one of the following reasons:

  • Segmentation fault: You are accessing a memory location which you are not supposed to. You should
    check for that

  • Divide by Zero: Self explanatory

  • Program has thrown an exception [in Java]

  • For eg. in Python when you do : “int(‘abc123’)” it throws an error.

These are the most common reasons for RTE, check if your program has any of these.

2 Likes