computer information science assignment 1

FINAL FLIE TYPE: JAVA

We’ll keep it light. The main objective for this assignment is to get Eclipse set up and successfully compile and execute your first Java program.

Write a single program that produces all 4 of the following pieces of output (not 4 separate programs). There should be no output other than the output illustrated below. Use print() and println(), not printf().

  1. Produce the following screen output using one statement.
        Tran says this is her first computer program. _x000D_
    
  2. Produce the following screen output using two statements.
        Tran says this is her    _x000D_
        first computer program.    _x000D_
    
  3. Produce the screen output from part 2), but use only one statement.
  4. Produce the screen output from part 1), but use two statements (use each statement to produce about half of the output).