3. Write a Java program to sort a given array list. import java.util.*; public class Problem3 { public static void main(String[] args) { // Creae a list and add some colors to the list List list_Strings = new ArrayList(); list_Strings.add("Red"); list_Strings.add("Green"); list_Strings.add("Orange"); list_Strings.add("White"); list_Strings.add("Black"); System.out.println("List before sort: "+list_Strings); Collections.sort(list_Strings); System.out.println("List after sort: "+list_Strings); }

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

I need the answers to question 3, 7, 8, and 9 pls

3. Write a Java program to sort a given array list.
import java.util.*;
public class Problem3 {
public static void main(String[] args) {
// Creae a list and add some colors to the list
List<String> list_Strings
list_Strings.add("Red");
list_Strings.add("Green");
list_Strings.add("Orange");
list_Strings.add("White");
list_Strings.add("Black");
System.out.println("List before sort: "+list_Strings);
Collections.sort(list_Strings);
System.out.println("List after sort: "+list_Strings);
}
}
= new ArrayList<String>();
4. What Are Some Advantages of Using Generic Types
5. How many layers are in a computer machine?
6. Write a program to define 2-dimensional integer array and
store following numbers:
5 37
379
216
953
7. Write a program to define an integer array and integer array
list. Show the difference in creation, addition and modification
of elements.
8. Write a program that prompts the user to input a positive
integer. It should then print the multiplication table of that
number.
9. Write a program to print out all Armstrong numbers between
1 and 500. If sum of cubes of each digit of the number is equal
to the number itself, then the number is called an Armstrong
number.
For example, 153 = ( 1 * 1 * 1 ) +( 5 * 5 * 5 ) + ( 3 * 3 * 3 )
Transcribed Image Text:3. Write a Java program to sort a given array list. import java.util.*; public class Problem3 { public static void main(String[] args) { // Creae a list and add some colors to the list List<String> list_Strings list_Strings.add("Red"); list_Strings.add("Green"); list_Strings.add("Orange"); list_Strings.add("White"); list_Strings.add("Black"); System.out.println("List before sort: "+list_Strings); Collections.sort(list_Strings); System.out.println("List after sort: "+list_Strings); } } = new ArrayList<String>(); 4. What Are Some Advantages of Using Generic Types 5. How many layers are in a computer machine? 6. Write a program to define 2-dimensional integer array and store following numbers: 5 37 379 216 953 7. Write a program to define an integer array and integer array list. Show the difference in creation, addition and modification of elements. 8. Write a program that prompts the user to input a positive integer. It should then print the multiplication table of that number. 9. Write a program to print out all Armstrong numbers between 1 and 500. If sum of cubes of each digit of the number is equal to the number itself, then the number is called an Armstrong number. For example, 153 = ( 1 * 1 * 1 ) +( 5 * 5 * 5 ) + ( 3 * 3 * 3 )
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 4 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY