Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

This quiz uses the following class: public class Drink { private int size, amount; public Drink ( int size ) { this.size = size; this.amount

This quiz uses the following class:
public class Drink {
private int size, amount;
public Drink(int size){
this.size = size;
this.amount = size;
}
public int sip(){
amount;
return amount;
}
public int gulp(int n){
for (int i =0; i < n; i++){
sip();
}
return amount;
}
public int refill(){
amount = size;
return amount;
}
}
Flag question: Question 1
Question 120 pts
Choose a sequence of statements that prints 2. Do not include unneeded statements.
Group of answer choices
int r = drink1.gulp(n);
r = drink1.sip();
System.out.print(r);
Drink drink1= new Drink(12);
if (r <=0) r = drink1.refill();
int n =7;
Drink drink1= new Drink(16);
int n =13;

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

Beyond Big Data Using Social MDM To Drive Deep Customer Insight

Authors: Martin Oberhofer, Eberhard Hechler

1st Edition

0133509796, 9780133509793

Students also viewed these Databases questions

Question

Explore the determinants of channel decisions.

Answered: 1 week ago