PL/SQL Fundamentals Exercises: PL/SQL block to show Single and Multiline Comments
PL/SQL Fundamentals: Exercise-6 with Solution
Write a PL/SQL block to show single and multiline comments.
PL/SQL Code:
Sample Output:
The area of the circle is: 314.15926 Statement processed. 0.00 seconds
At the time of testing or debugging a program, you can disable a line of code by making it a comment. For example:
Flowchart:

Improve this sample solution and post your code through Disqus
Previous: Write a PL/SQL block to show the result to neglect the case sensitivity of a user defined identifier which is also a reserved word.
Next: Write PL/SQL blocks to show the declaration of variables.
What is the difficulty level of this exercise?