Hello <span>Lcedillo7073 </span>
Answer: The world wide web was originally conceived of as a(n) Internal document management system
Hope this helps
-Chris
Answer:
word does not support audio, so its not A, but you can customize them, so its probably C
Explanation:
Answer:
B) A block of statement that might cause an exception.
Explanation:
Exception handling is a good programming technique that prevents our program from crashing when an exception occurs during execution. The try clause is used with a catch to handle any exception that might occur, so whenever a statement that might cause an exception is to be used, this should be contained in a try statement block of code.
Answer:
CLS
INPUT"Enter any three numbers";a,b,c
IF a>b AND a>c THEN
PRINT a;"is the greatest"
ELSEIF b>a AND b>c THEN
PRINT b;"is the greatest"
ELSE
PRINT c;"is the greatest"
ENDIF
END