Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 906 Bytes

File metadata and controls

13 lines (10 loc) · 906 Bytes

Java-Lab-001

  • The source code file you will edit is in the src folder and contains a Java class file named HelloXwing.java
  • Modify the HelloXwing.java file to print out to the console the xwing() method.
  • Run your program, verify an ascii-art X-Wing prints to the console, and save your changes.
  • Commit your changes back to your GitHub account and follow the video on doing a Pull request to the instructor account.

Answers to Questions

  1. The difference between a statement and a comment is that a comment leaves a piece of information about the program that doesn’t affect the output. While a statement specifies one step of the program.
  2. When a program is portable, it means that it can run on a different computer.
  3. The word compile means to translate a high-level language into a low level one.
  4. An executable is the name of an object code ready to run on specific hardware.