The ability to use methods without knowing the details of their contents is a feature of

Which of the protections available to criminal offenders through the Bill of Rights do not currently apply to the states
July 8, 2020
BUSN311
July 8, 2020

The ability to use methods without knowing the details of their contents is a feature of

The ability to use methods without knowing the details of their contents is a feature of ____.

A) abstraction

B) encapsulation

C) inheritance

D) construction

 


2.

A constructor may require ____.

A) parameters

B) methods

C) objects

D) inheritance

 


3.

Design a class named CustomerRecord that holds a customer number, name, and address. Include methods to set the values for each data field and output the values for each data field. Create the class diagram and write the code (not language specific, ie. psuedocode) that defines the class.

HTML Editor

 


4.

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

 
.


5.

Everything is an object, and every object is a member of a ____.

A) class

B) method

C) case

D) process

 


6.

A ____ is a segment of code that can handle an exception that might be thrown by the try block that precedes it.

A) catch method

B) throw block

C) catch block

D) throw statement

 


7.

The memory location known as the ____ is where the computer stores the list of method locations to which the system must return.

A) method stack

B) location stack

C) call stack

D) store location

 


8.

When appropriate, specialized ____ classes provide an elegant way for you to handle error situations.

A) Exception

B) Error

C) Constructor

D) Event

 


9.

Creating multiple methods with the same name, which will act differently and appropriately when used with different types of objects, is known as polymorphism.

A) True

B) False

 


10.

The call stack is where the computer stores the list of exceptions.

A) True

B) False

 


11.

A(n) ____ is one instance of a class.

A) method

B) object

C) instantiation

D) attribute

.

 


12.

The object-oriented techniques to manage errors such as dividing a value by 0 comprise the group of methods known as ____.

A) exception handling

B) error handling

C) exception processing

D) error processing

 


13.

Simple non-array variables are usually passed to methods by ____.

A) value

B) reference

C) type

D) class

 


14.

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

 


15.

Libraries are collections of classes that serve related purposes.

A) True

B) False

 


16.

Programmers refer to hidden implementation details as existing in a ____.

A) white box

B) white hole

C) black box

D) black hole

 


17.

____ is the process of creating a new, derived class from a base class.

A) Accessibility

B) Encapsulation

C) Inheritance

D) Polymorphism

 


18.

When a variable is declared within a method, it ceases to exist when the method ends.

A) True

B) False

 


19.

A method’s ____ consists of the method’s statements.

A) body

B) space

C) space

D) group

 
.


20.

What will be the output of the below program? List what will be outputed to the screen and explain your answer.

class Class_name

      main()

           // Declarations

              num index

              num SIZE = 10

              num numbers[SIZE] = 0,0,0,0,0,0,0,0,0,0

            index = 0

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; while index < SIZE

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; numbers[index]= index * 10

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; index = index + 1

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; endwhile&nbsp;&nbsp;&nbsp;

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; output “The Output is: ”

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; while index > 0

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; index = index – 1

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; output numbers[index]

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; endwhile

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return

endClass

HTML Editor

&nbsp;


21.

When illegal division by 0 takes place, an Exception object is not created automatically by the object-oriented language application.

A)&nbsp;True

B)&nbsp;False

&nbsp;


22.

You can write as many constructors for a class as you want, as long as they all have different ____ lists.

A)&nbsp;object

B)&nbsp;data field

C)&nbsp;method

D)&nbsp;parameter

&nbsp;


23.

Overloaded methods have the same name and parameter lists.

A)&nbsp;True

B)&nbsp;False

&nbsp;


24.

When a main() method needs to use another method, it calls, or invokes it.

A)&nbsp;True

B)&nbsp;False

&nbsp;


25.

Multiple inheritance is the capability to inherit more than one method from a parent class.

A)&nbsp;True

B)&nbsp;False

&nbsp;


26.

A method can be used more than once within a program or in other programs.

A)&nbsp;True

B)&nbsp;False

&nbsp;


27.

Global variables are known to the entire class.

A)&nbsp;True

B)&nbsp;False

&nbsp;


28.

Methods are sometimes called ____.

A)&nbsp;segments

B)&nbsp;modules

C)&nbsp;classes

D)&nbsp;routines

&nbsp;


29.

A ____ reference is an automatically created variable that holds the address of an object and passes it to an instance method whenever the method is called.

A)&nbsp;key

B)&nbsp;public

C)&nbsp;that

D)&nbsp;this

.

&nbsp;


30.

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

&nbsp;&nbsp; Output “Great job”

&nbsp;&nbsp; Output “Your average is: ”, Average

ELSE

IF Average >= 80 or Average <=89 THEN&nbsp;

&nbsp;&nbsp; Output “Nice work”

&nbsp;&nbsp; Output “Your average is: “, Average

ELSE

&nbsp;&nbsp; Output : “Your Average is:”, Average

&nbsp;&nbsp; Output “, You will do better next time!”

ENDIF

HTML Editor

&nbsp;


31.

A class diagram consists of a ____ divided into three sections.

A)&nbsp;square

B)&nbsp;rectangle

C)&nbsp;circle

D)&nbsp;triangle

&nbsp;


32.

An instance method or constructor may be overloaded by providing the same name and ____ argument list.

A)&nbsp;a different

B)&nbsp;the same

C)&nbsp;a larger

D)&nbsp;a smaller

<div