Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Given the following declaration of an Oven class: public class Oven { private int temperature; / / EFFECTS: constructs an oven whose temperature is 6

Given the following declaration of an Oven class:
public class Oven {
private int temperature;
// EFFECTS: constructs an oven whose temperature is 65F
public Oven(){
// stub
}
// REQUIRES: 180<= degrees <=500
// MODIFIES: this
// EFFECTS: heats oven to degrees Fahrenheit
public void preheatTo(int degrees){
// stub
}
}
Given the existing design of this class (do not assume that there are any methods not explicitly included in the code presented above), what would prevent us from designing tests for the preheatTo method?
(a)
the modifies clause isn't specific enough
(b)
there are no example calls to preheatTo that provides us with usage scenarios
(c)
the temperature field is private and there is no accessor that will provide us with its value
(d)
we don't know how the method is implemented
Select all possible options that apply.

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

Big Data, Mining, And Analytics Components Of Strategic Decision Making

Authors: Stephan Kudyba

1st Edition

1466568704, 9781466568709

More Books

Students also viewed these Databases questions

Question

=+Identify the type of global assignment for which CCT is needed.

Answered: 1 week ago