Fill This Form To Receive Instant Help
Homework answers / question archive / 1) Multiple inheritance is the capability to inherit more than one method from a parent class
1) Multiple inheritance is the capability to inherit more than one method from a parent class.
A) True
B) False
2.
The call stack is where the computer stores the list of exceptions.
A) True
B) False
3.
A method is a program module that contains a series of statements that carry out a task.
A) True
B) False
4.
What is one item that must be included in a method’s header if it can receive a parameter?
A) local parameter name
B) global parameter name
C) parameter’s client
D) return data structure
5.
A catch block consists of four different elements: the keyword catch, followed by parentheses that contain an exception type and identifier, statements that take action to handle the error condition, an endcatch statement, and a return statement.
A) True
B) False
6.
Overloaded methods have the same name and parameter lists.
A) True
B) False
7.
What is the screen output of the following code segment? Explain the reasoning behind your answer.
Test1 = 70
Test2 = 80
Test3 = 84
NumberOfTests = 3
Average = (Test1 + Test2 + Test3) / NumberOfTests
IF Average >= 90 THEN
Output “Great job”
Output “Your average is: ”, Average
ELSE
IF Average >= 80 or Average <=89 THEN
Output “Nice work”
Output “Your average is: “, Average
ELSE
Output : “Your Average is:”, Average
Output “, You will do better next time!”
ENDIF
HTML Editor
8.
A(n) ____ statement indicates the end of the catch block in the pseudocode.
A) finalcatch
B) finally
C) endcatch
D) stop
9.
A method’s ____ consists of the method’s statements.
A) body
B) space
C) space
D) group
10.
Unreachable code statements are program statements that only execute if there is an exception.
A) True
B) False