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

Question

1. Write a java program
Your program should have 6 lines of output listing five colors. The sample output will like
this:
Five colors are:
Blue
Green
Red
Purple
Orange
Your output should have the first line exactly as shown above. The following 5 lines should
be your own.

2.Write a java program: 
Your program should take one command-line argument, a person's name, and create output
using that name. For example, if you enter the name: Alex, the output should be:
Hello Alex, how are you?
Use String concatenation to create your output statement.

3.Write a java program: 
This program should take two command line arguments and create the following output. For
example, if the command line values were Bob and Alice, the output would be:
Hello Bob, my name is Alice.
Use String concatenation to create your output statement.

4.Write a java program: 
Using a single print() method [i.e., System.out.print()], create output of the first 6 lines
(including the title) of the following poem. Include quotations and newline characters in your
output.
The Irish Colonel
Said the king to the colonel,
"The complaints are eternal,
That you Irish give more trouble
Than any other corps."
Said the colonel to the king,
"This complaint is no new thing,
For your foemen, sire,
have made it A hundred times before."
- Sir Arthur Conan Doyle

5.Write a java program: 
Your program will input 2 integer values from the command-line. (Remember the
command-line input enters your program through main() method. You'll need to convert the
values from String data type to integer data type. Use Integer.parseInt() method.)
Using the two values entered (which could be any integers), create the following output
statements (the example assumes the input values were 10 and 14):
10 + 14 = 24
10 - 14 = -4
10 X 14 = 140
10 / 14 = 0
10 % 14 = 10
You will have 5 lines of output. Put spaces in your output as shown in the sample output.

Expert Solution
Check Mark
Knowledge Booster
Background pattern image
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