subject

Consider the following class definition. public class Element

{

public static int max_value = 0;

private int value;

public Element (int v)

{

value = v;

if (value > max_value)

{

max_value = value;

}

}

}

The following code segment appears in a class other than Element.

for (int i = 0; i < 5; i++)

{

int k = (int) (Math. random() * 10 + 1);

if (k >= Element. max_value)

{

Element e = new Element(k);

}

}

Which of the following best describes the behavior of the code segment?

Exactly 5 Element objects are created.

Exactly 5 Element objects are created.

A

Exactly 10 Element objects are created.

Exactly 10 Element objects are created.

B

Between 0 and 5 Element objects are created, and Element. max_value is increased only for the first object created.

Between 0 and 5 Element objects are created, and Element. max_value is increased only for the first object created.

C

Between 1 and 5 Element objects are created, and Element. max_value is increased for every object created.

Between 1 and 5 Element objects are created, and Element. max_value is increased for every object created.

D

Between 1 and 5 Element objects are created, and Element. max_value is increased for at least one object created.

Between 1 and 5 Element objects are created, and Element. max_value is increased for at least one object created.

E

The class Worker is defined below. The class includes the method getEarnings, which is intended to return the total amount earned by the worker.

public class Worker

{

private double hourlyRate;

private double hoursWorked;

private double earnings;

public Worker(double rate, double hours)

{

hourlyRate = rate;

hoursWorked = hours;

}

private void calculateEarnings()

{

double earnings = 0.0;

earnings += hourlyRate * hoursWorked;

}

public double getEarnings()

{

calculateEarnings();

return earnings;

}

}

The following code segment appears in a method in a class other than Worker. The code segment is intended to print the value 800.0, but instead prints a different value because of an error in the Worker class.

Worker bob = new Worker(20.0, 40.0);

System. out. println(bob. getEarnings());

Which of the following best explains why an incorrect value is printed?

The private variables hourlyRate and hoursWorked are not properly initialized.

The private variables hourlyRate and hoursWorked are not properly initialized.

A

The private variables hourlyRate and hoursWorked should have been declared public .

B

The private method calculateEarnings should have been declared public.

The private method calculateEarnings should have been declared public .

C

The variable earnings in the calculateEarnings method is a local variable.

The variables hourlyRate and hoursWorked in the calculateEarnings method are local variables.

E The variables hourlyRate and hoursWorked in the calculateEarnings method are local variables.

ansver
Answers: 2

Other questions on the subject: Computers and Technology

image
Computers and Technology, 22.06.2019 02:30, rodfam13716
If you turn on the lock alpha button , what happens
Answers: 1
image
Computers and Technology, 23.06.2019 18:30, bsept1018
Report all segments of identity by descent longer than 20 polymorphisms between pairs of individuals in the following cohort of 15 individuals across 49 polymorphisms: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 numeric input 2 points possible (graded) you have 2 attempts to complete the assignment below. for example if the sequence is "bcd", which occurs in "abcdef" , the starting point would be 2 (b), and the finishing point would be 4(d). individuals 7,10 between positions
Answers: 1
image
Computers and Technology, 23.06.2019 22:20, Izzyfizzy
Read “suburban homes construction project” at the end of chapters 8 and 9 (in the textbook) and then develop a wbs (work breakdown structure) in microsoft excel or in microsoft word (using tables)
Answers: 1
image
Computers and Technology, 24.06.2019 14:30, tleppek6245
Alison is having a hard time at work because hee inbox is flooded with emails every day. some of these emails are unsolicited. some of other she don’t need. which action should she take to better manager her emails?
Answers: 1
You know the right answer?
Consider the following class definition. public class Element

{

public sta...

Questions in other subjects:

Konu
Biology, 18.10.2020 21:01
Konu
English, 18.10.2020 21:01