Answered step by step
Verified Expert Solution
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 F
public Oven
stub
REQUIRES: degrees
MODIFIES: this
EFFECTS: heats oven to degrees Fahrenheit
public void preheatToint 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
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started