From c9f7bc4ef4b0c6c5675e2441aa74909130fa5043 Mon Sep 17 00:00:00 2001 From: tpedersen42 Date: Fri, 19 Jan 2024 10:06:11 -0800 Subject: [PATCH] Done with Java lab 001 --- .idea/misc.xml | 2 +- README.md | 7 +++++++ src/HelloXwing.java | 1 + 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.idea/misc.xml b/.idea/misc.xml index 7464918..69ace3f 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,6 +1,6 @@ - + \ No newline at end of file diff --git a/README.md b/README.md index 5c6885c..208e9bb 100644 --- a/README.md +++ b/README.md @@ -4,3 +4,10 @@ * 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. + +## English Vs Computer Science (Fight!) + +1. A statement is part of the program that specifies one step of an algorithm while a comment contains information about the program but has no effect when the program runs. +2. A program is portable when it has the ability to run on more than one kind of computer. +3. In common English, compile means to produce by assembling information that was collected from other sources. +4. An executable is another name for object code that is ready to run on a specific hardware. It is used as a noun because it is the word that represents a thing, in this case, the translated program. \ No newline at end of file diff --git a/src/HelloXwing.java b/src/HelloXwing.java index 2b2f3bb..10dc09d 100644 --- a/src/HelloXwing.java +++ b/src/HelloXwing.java @@ -29,5 +29,6 @@ static String xwing() { public static void main(String[] args) { // Comment + System.out.println(xwing()); } }