Write a java program that displays your name Josh July 16, 2017 java exercise /** * Created by Jo on 7/10/2017. * For more exercises and lessons, visit http://shegertech.blogspot.com/ * Chapter 1, Exercise 1 */ public class Q1Solution { public static void main(String[] args) { System.out.println("Hello world, I'm Josh"); } } Share: Email ThisBlogThis!Share to XShare to Facebook Related Posts:Write a program that displays the numbers between 1 and 10 in reverse order(descending order).Write a Java program that will print the pattern as shown below.Write a program that will ask the user to input three integer values from the keyboard. Then it will print the smallest and largest of those numbers using functions.Write a program that generates numbers between the range 0-25 and display the average of the prime numbers that are generated.Write a program that accepts a number from the user and tells whether the number is a prime number.