Write a complete Java program to execute what is asked in each item below: a. Input 8 different names and store them into an array b. Display all the contents of the array. c. Display the 2nd , 4th, 6th , and the 8th elements in the array using for loop. d. Compute the sum of the 2nd , 4th, 6th , and the 8th elements in the array using for loop
Write a complete Java program to execute what is asked in each item below: a. Input 8 different names and store them into an array b. Display all the contents of the array. c. Display the 2nd , 4th, 6th , and the 8th elements in the array using for loop. d. Compute the sum of the 2nd , 4th, 6th , and the 8th elements in the array using for loop
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
Related questions
Question
Write a complete Java program to execute what is asked in each item below:
a. Input 8 different names and store them into an array
b. Display all the contents of the array.
c. Display the 2nd , 4th, 6th , and the 8th elements in the array using for loop.
d. Compute the sum of the 2nd , 4th, 6th , and the 8th elements in the array using for loop
Expert Solution
![](/static/compass_v2/shared-icons/check-mark.png)
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by step
Solved in 3 steps with 2 images
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
Follow-up Questions
Read through expert solutions to related follow-up questions below.
Follow-up Question
in the output above i want a clean results how do i put some spaces in the code? thanks u
![Main.java
Nm+hot∞ a
4-
1- import java.util.Scanner;
2 public class Main
3- {
5
6
7
8
9
10
11
12
===
13
14 -
15
16
17
18
19
Run
20
21
22
23
24
25 }
26 }
27
Ⓒ Debug
Stop
public static void main(String args[]) {
int SIZE = 8;
}
for(int i=0;i<SIZE; i++)
(
}
String sum = "";
Scanner in = new Scanner(System.in);
String names[] = new String[SIZE];
for (int i = 0; i < SIZE; i++) {
System.out.print("Enter Name (i+1) +
names[i] = in.nextLine();
Share H Save
System.out.print(names[i]+" ");
System.out.println("");
| for(int i=1;i<SIZE; _i=i+2)
{
System.out.print(names[i]+" ");
sum += names[i];
System.out.println("");
System.out.print(sum);
Enter Name 1: Nikhil
Enter Name 2: Lalita
Enter Name 3: Harsh
Enter Name 4: Akashdeep
Enter Name 5: Krishna
Enter Name 6: Ayush
Enter Name 7: Aarti
{} Beautify
");
..Program finished with exit code 0
Press ENTER to exit console.
Enter Name 8: Yoges
Nikhil Lalita Harsh shdeep Krishna Ayush Aarti Yogesh
Lalita Masudeep Ayush Yogesh
LalitaAkashdeepAyushYogesh
±
space
input](https://content.bartleby.com/qna-images/question/25158918-8388-49fe-bf14-e7f54aad9aca/db582058-969b-4d47-bffb-9fff5dce4686/jgud1zp_thumbnail.png)
Transcribed Image Text:Main.java
Nm+hot∞ a
4-
1- import java.util.Scanner;
2 public class Main
3- {
5
6
7
8
9
10
11
12
===
13
14 -
15
16
17
18
19
Run
20
21
22
23
24
25 }
26 }
27
Ⓒ Debug
Stop
public static void main(String args[]) {
int SIZE = 8;
}
for(int i=0;i<SIZE; i++)
(
}
String sum = "";
Scanner in = new Scanner(System.in);
String names[] = new String[SIZE];
for (int i = 0; i < SIZE; i++) {
System.out.print("Enter Name (i+1) +
names[i] = in.nextLine();
Share H Save
System.out.print(names[i]+" ");
System.out.println("");
| for(int i=1;i<SIZE; _i=i+2)
{
System.out.print(names[i]+" ");
sum += names[i];
System.out.println("");
System.out.print(sum);
Enter Name 1: Nikhil
Enter Name 2: Lalita
Enter Name 3: Harsh
Enter Name 4: Akashdeep
Enter Name 5: Krishna
Enter Name 6: Ayush
Enter Name 7: Aarti
{} Beautify
");
..Program finished with exit code 0
Press ENTER to exit console.
Enter Name 8: Yoges
Nikhil Lalita Harsh shdeep Krishna Ayush Aarti Yogesh
Lalita Masudeep Ayush Yogesh
LalitaAkashdeepAyushYogesh
±
space
input
Solution
Knowledge Booster
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](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
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)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
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)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
![C How to Program (8th Edition)](https://www.bartleby.com/isbn_cover_images/9780133976892/9780133976892_smallCoverImage.gif)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
![Database Systems: Design, Implementation, & Manag…](https://www.bartleby.com/isbn_cover_images/9781337627900/9781337627900_smallCoverImage.gif)
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
![Programmable Logic Controllers](https://www.bartleby.com/isbn_cover_images/9780073373843/9780073373843_smallCoverImage.gif)
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education