what is the difference between ERROR and EXCEPTION?

Answer Posted / amar gawade

errors are unresolved syntax or mistakes where exceptions are runtime errors.

Is This Answer Correct ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why we use classes in oop?

770


#include #include #include #include void insert(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); insert(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void insert(char *items, int count) { register int a, b; char t; for(a=1; a < count; ++a) { t = items[a]; for(b=a-1; (b >= 0) && (t < items[b]); b--) items[b+1] = items[b]; items[b+1] = t; } } design an algorithm for Insertion Sort

2377


what are the different types of qualifier in java?

2016


How do you use inheritance in unity?

799


What is overriding in oops?

824


What is object and class in oops?

780


Which language is not a true object oriented programming language?

868


What is object-oriented programming? Webopedia definition

954


What is static in oop?

824


write a code for this:trailer recordId contains a value other than 99, then the file must error with the reason ‘Invalid RECORD_ID’(User Defined Exception).

1906


What is coupling in oop?

775


What are the features of oop?

834


What is abstraction in oops with example?

994


What is ambiguity in inheritance?

843


What is data binding in oops?

824