Where we use assertion in java programming?
Answers were Sorted based on User's Feedback
Answer / saipratapreddy maddireddy
->assertions are using for debugging/ testing the flow of
program at the time of development and testing phases not
yet deployment phase.
we can use the assertions any where in java program is
valid but we have to use it in appropriate way.
->the syntax of Assertion is:
assertion(boolean): value;
*we can take any value after colon(:) that may be int,
char,string and method call
when ever assertion parameter is "true" then it will
proceed the remaining execution of program otherwise it
throw an exception saying"java.lang.AssertionError:xxxx"
assertion for testing purpose if assumption value is
false then it raises an exception but to handling this
exception by using "try-catch-finally" is not recommended.
| Is This Answer Correct ? | 3 Yes | 0 No |
Are application, pageContext and object of ServletContext same or not?
What is jstl?
Mention the advantages of jsp over pure servlets?
What is the jsp?
Why taglib is used in jsp?
How do you delete the session data?
Tell us about the jsp life cycle methods.
What are the elements of a jsp page?
Is jsp and javascript same?
What is jsp action tags?
How can we handle the exceptions in jsp?
How to print java variable in jsp?