1. Consider the following instance variable and method: private int [] numbers; public void mystery (int x) for (int k - 1; k < numbers.length; k - k + x) numbers (k] - numbers(k - 1] + x; Assume that numbers has been initialized with the following values. (17, 34, 21, 42, 15, 69, 48, 25, 39} Which of the following represents the order of the values in numbers as a result of the call mystery (3)? А. (17, 20, 21, 42, 45, 69, 48, 51, 39) B. (17, 20, 23, 26, 29, 32, 35, 38, 41} C. (17, 37, 21, 42, 18, 69, 48, 28, 39} D. (20, 23, 21, 42, 45, 69, 51, 54, 39} E. (20, 34, 21, 45, 15, 69, 51, 25, 39}

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
Java
1. Consider the following instance variable and method:
private int[] numbers;
public void mystery (int x)
for (int k = 1; k < numbers.length; k = k + x)
numbers [k] - numbers [k - 1] + x;
Assume that numbers has been initialized with the following values.
{17, 34, 21, 42, 15, 69, 48, 25, 39}
Which of the following represents the order of the values in numbers as a result of the call
mystery (3)?
A. (17, 20, 21, 42, 45, 69, 48, 51, 39}
B. (17, 20, 23, 26, 29, 32, 35, 38, 41}
C. (17, 37, 21, 42, 18, 69, 48, 28, 39}
D. (20, 23, 21, 42, 45, 69, 51, 54, 39}
E. (20, 34, 21, 45, 15, 69, 51, 25, 39}
Circle one: CORRECT
or
INCORRECT
If INCORRECT: What do you understand now that you didn't when you were answering this
question? (Or, what do you still not understand?)
2. Consider the following method, biggest, which is intended to return the greatest of three
integers. It does not always work as intended.
public static int biggest (int a, int b, int c)
if ((a > b) && (a > c) )
return a;
else if ((b > a) && (b > c))
return b;
else
return c;
Which of the following best describes the error in the method?
A. biggest may always return the value of a.
B. biggest may not work correctly when c has the greatest value.
C. biggest may not work correctly when a and b have equal values.
D. biggest may not work correctly when a and c have equal values.
E. biggest may not work correctly when b and c have equal values.
Transcribed Image Text:1. Consider the following instance variable and method: private int[] numbers; public void mystery (int x) for (int k = 1; k < numbers.length; k = k + x) numbers [k] - numbers [k - 1] + x; Assume that numbers has been initialized with the following values. {17, 34, 21, 42, 15, 69, 48, 25, 39} Which of the following represents the order of the values in numbers as a result of the call mystery (3)? A. (17, 20, 21, 42, 45, 69, 48, 51, 39} B. (17, 20, 23, 26, 29, 32, 35, 38, 41} C. (17, 37, 21, 42, 18, 69, 48, 28, 39} D. (20, 23, 21, 42, 45, 69, 51, 54, 39} E. (20, 34, 21, 45, 15, 69, 51, 25, 39} Circle one: CORRECT or INCORRECT If INCORRECT: What do you understand now that you didn't when you were answering this question? (Or, what do you still not understand?) 2. Consider the following method, biggest, which is intended to return the greatest of three integers. It does not always work as intended. public static int biggest (int a, int b, int c) if ((a > b) && (a > c) ) return a; else if ((b > a) && (b > c)) return b; else return c; Which of the following best describes the error in the method? A. biggest may always return the value of a. B. biggest may not work correctly when c has the greatest value. C. biggest may not work correctly when a and b have equal values. D. biggest may not work correctly when a and c have equal values. E. biggest may not work correctly when b and c have equal values.
Expert Solution
Step 1

Hello student

Greetings from my side

Hope you are doing great

As per our company's guideline, in case of multiple questions, we are allowed to answer only the 1st question. So kindly repost the remaining questions separately.

I will try my best to answer your question. 

Thank You!!!

trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Math class and its different methods
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education