Database System Concepts
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
Bartleby Related Questions Icon

Related questions

bartleby

Concept explainers

Question

Write a Java code that read 8 positive integers from the user and store them in an array. The
program should ensure that the numbers of the array are positive. If not, the program will keep
asking user to enter positive values. Then, it finds the position (or index) of the maximum and
minimum values in the array, and swap them (move the max element to the position of the min,
and move the min element to the position of the max). Then it calculates the median of the
elements of this array (for this step an ascending order sort should be done before calculating the
median). Then run the code again for integer array of size

Loop and conditionals should be used

Transcribed Image Text:The output of array of size 8 should be as follow (note: user input is required): The array length is: 8. Please enter value for the array: 4 Please enter value for the array: -2 Please enter a positive value: 55 Please enter value for the array: 67 Please enter value for the array: -56 Please enter a positive value: 122 Please enter value for the array: 98 Please enter value for the array: 1 Please enter value for the array: 4 Please enter value for the array: 12 Before swapping the min max, the array is 4 55 67 122 98 1 4 12 The max is 122 and its location is 3 The min is 1 and its location is 5 After swapping the min max, the array is 4 55 67 1 98 122 4 12 The array sorted in Ascending Order: 1 4 4 12 55 67 98 122 The median is: 33.5
Transcribed Image Text:The output of array of size 7 should be as follow (note: user input is required): The array length is: 7 Please enter value for the array: 3 Please enter value for the array: 44 Please enter value for the array: -1 Please enter a positive value: 78 Please enter value for the array: 12 Please enter value for the array: 81 Please enter value for the array: 123 Please enter value for the array: 97 Before swapping the min max, the array is 3 44 78 12 81 123 97 The max is 123 and its location is 5 The min is 3 and its location is After swapping the min max, the array is 123 44 78 12 81 3 97 The array sorted in Ascending Order: 3 12 44 78 81 97 123 The median is: 78.0
Expert Solution
Check Mark
Knowledge Booster
Background pattern image
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.
Similar questions
    Recommended textbooks for you
    Text book image
    Database System Concepts
    Computer Science
    ISBN:9780078022159
    Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
    Publisher:McGraw-Hill Education
    Text book image
    Starting Out with Python (4th Edition)
    Computer Science
    ISBN:9780134444321
    Author:Tony Gaddis
    Publisher:PEARSON
    Text book image
    Digital Fundamentals (11th Edition)
    Computer Science
    ISBN:9780132737968
    Author:Thomas L. Floyd
    Publisher:PEARSON
    Text book image
    C How to Program (8th Edition)
    Computer Science
    ISBN:9780133976892
    Author:Paul J. Deitel, Harvey Deitel
    Publisher:PEARSON
    Text book image
    Database Systems: Design, Implementation, & Manag...
    Computer Science
    ISBN:9781337627900
    Author:Carlos Coronel, Steven Morris
    Publisher:Cengage Learning
    Text book image
    Programmable Logic Controllers
    Computer Science
    ISBN:9780073373843
    Author:Frank D. Petruzella
    Publisher:McGraw-Hill Education