Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

QUESTION 8 Which of the following statements are correct? A method can be overloaded in the same class. A method can be overridden in the

QUESTION 8

  1. Which of the following statements are correct?
    1. A method can be overloaded in the same class.
    2. A method can be overridden in the same class.
    3. If a method overloads another method, these two methods must have the same signature.
    4. If a method overrides another method, these two methods must have the same signature.

A.

1 and 4 only.

B.

2 and 3 only.

C.

1 and 3 only.

D.

2 and 4 only.

QUESTION 9

  1. Consider the following Java code. class MyTest { public static void main(String[] args) { SubClass s = new SubClass(); s.superClassField = 20; System.out.println(s.toString()); } } class SuperClass{ int superClassField = 10; public String toString(){ return "Superclass field is " + superClassField; } } class SubClass extends SuperClass{ public String toString(){ return "Subclass field is " + super.superClassField; } } Which of the following statements are correct?
    1. Given the object s, any other class could change the value of superClassField.
    2. Making superClassField to be private would improve encapsulation, and the code would compile.
    3. Making superClassField to be private would improve encapsulation, but the code will not compile.
    4. Making superClassField to be protected would improve encapsulation, and the code would compile.
    5. Without any modification the code output is Subclass field is 20.
    6. Without any modification the code will not compile.

1, 3, 4, and 5 only.

3, 4, and 5 only.

1, 2, and 5 only.

1, 3, 4 and 6 only.

10 points

QUESTION 10

  1. Which of the following would be a correct use of inheritance?
    1. Beverage extends Martini.
    2. Guitar extends Instrument.
    3. Employee extends SmartPerson
    4. Oven extends Kitchen
    5. Beatles extend Band

A.

2, 4, and 5 only.

B.

4 and 5 only.

C.

1, 3, and 5 only.

D.

2 and 5 only.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Fundamentals Of Database Systems

Authors: Ramez Elmasri, Shamkant B. Navathe

7th Edition Global Edition

1292097612, 978-1292097619

Students also viewed these Databases questions

Question

The best way to motivate employees is through monetary awards. T F

Answered: 1 week ago