Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Programs would be less clear if you had to account for ____ exceptions in every

ID: 3575813 • Letter: P

Question

Programs would be less clear if you had to account for ____ exceptions in every method declaration.

runtime

checked

unthrown

thrown

___ are pieces of information that are sent into, or passed to, a method, usually because the method requires the information to perform its task or carry out its purpose.

Methods

Applets

Arguments

Objects

Programs would be less clear if you had to account for ____ exceptions in every method declaration.

runtime

checked

unthrown

thrown

The name given to abstract classes in other programming languages, such as C++

The correct subclass method is attached to the application

Contains the Object class

Considers two objects of the same class to be equal only if they have the same hash code

A class-naming conflict

An alternative to multiple inheritance available in Java

Prohibited in Java

Data fields in an interface

A method that is inherited

dynamic method binding

collision

virtual classes

multiple inheritance

equals() method

nonabstract method

java.lang

public, static, and final

interface

a.

runtime

b.

checked

c.

unthrown

d.

thrown

___ are pieces of information that are sent into, or passed to, a method, usually because the method requires the information to perform its task or carry out its purpose.

a.

Methods

b.

Applets

c.

Arguments

d.

Objects

Programs would be less clear if you had to account for ____ exceptions in every method declaration.

a.

runtime

b.

checked

c.

unthrown

d.

thrown

      -       a.       b.       c.       d.       e.       f.       g.       h.       i.   

The name given to abstract classes in other programming languages, such as C++

      -       a.       b.       c.       d.       e.       f.       g.       h.       i.   

The correct subclass method is attached to the application

      -       a.       b.       c.       d.       e.       f.       g.       h.       i.   

Contains the Object class

      -       a.       b.       c.       d.       e.       f.       g.       h.       i.   

Considers two objects of the same class to be equal only if they have the same hash code

      -       a.       b.       c.       d.       e.       f.       g.       h.       i.   

A class-naming conflict

      -       a.       b.       c.       d.       e.       f.       g.       h.       i.   

An alternative to multiple inheritance available in Java

      -       a.       b.       c.       d.       e.       f.       g.       h.       i.   

Prohibited in Java

      -       a.       b.       c.       d.       e.       f.       g.       h.       i.   

Data fields in an interface

      -       a.       b.       c.       d.       e.       f.       g.       h.       i.   

A method that is inherited

a.

dynamic method binding

b.

collision

c.

virtual classes

d.

multiple inheritance

e.

equals() method

f.

nonabstract method

g.

java.lang

h.

public, static, and final

i.

interface

Explanation / Answer

Ans)

___ are pieces of information that are sent into, or passed to, a method, usually because the method requires the information to perform its task or carry out its purpose.
Ans) C. Arguments
Exp: Arguments or varialbles will be passed to array for implementation

Programs would be less clear if you had to account for ____ exceptions in every method declaration.
Ans) B. Checked
Exp: If every method has checked exceptions it will be less clear.

1. The name given to abstract classes in other programming languages, such as C++ (C) virtual classes
Exp: In c++ abstract classes are the virtual classes
2. The correct subclass method is attached to the application   (I) interface                      
Exp: Interface has the abstract methods in which the implementation will be present in the sub-class
3. Contains the Object class (G) java.lang
Exp: Object class will be present in java.lang package
4. Considers two objects of the same class to be equal only if they have the same hash code (E) equals() method
Exp: Equality of two objects will be checked by the equal() method
5. A class-naming conflict (B) collision
Exp: Same class names will leads to collision.
6. An alternative to multiple inheritance available in Java (A) dynamic method binding
Exp: In place of multiple inheritance dynamic method binding is used.
7. Prohibited in Java   (D) multiple inheritance
Exp: In java multiple inheritance is strictly prohibited.
8. Data fields in an interface   (H) public, static, and final
Exp: All the fields in the interface are public, static and final.
9. A method that is inherited (F)nonabstract method
Exp: A non abstract method will be inherited.