“Up in the Air” with Dr. Brandon McIver
In 300 – 500 words, reflect on this week’s learning.
Essential Activities:
- Watch the Podcast, “Up in the Air” with Dr. Brandon McIver (Cybersecurity Roles & Business Processes) will assist you in writing your paper.
- Watching the video, “Storytime” with Dr. Brandon McIver (Why Frameworks Matter) will assist you in writing your paper.
- Reviewing the Coursera material
Link:
https://www.youtube.com/watch?v=GWpFd87vQNY
Java Paper work (Task was done, need paper writing) 2 pages of 400 words.
Assume yourself and
Task:
Write and compile a program that displays your name, date enrolled at Trine, your major, and at least one completed class and one class you are currently enrolled in. Your submission should include the following: Part 1: Screenshot the actual code of your program and part 2: Screenshot the compiled results of your output.
Outcome:
Essay:
Once you have successfully compiled the program following the provided instructions, create a comprehensive training guide. The guide will serve as a valuable resource for individuals who are new to the process of program compilation. The guide may include but is not limited to a brief purpose and content of the guide. As well as explain the importance of program compilation and introduce Java as a compiled language. You have the flexibility to choose between constructing a concise 1-page infographic or preparing a more detailed 1–2-page paper. Use this opportunity to articulate the steps you took, providing clear insights for those unfamiliar with the compilation process. (Note: Part 1 & Part 2 screenshots must be included.)
Sample Answer
This guide aims to equip you with the knowledge and hands-on experience to compile your first Java program! We’ll walk through creating a simple program showcasing your personal information and then translate that experience into a comprehensive training guide for aspiring coders.
Part 1: Your Java Program
1. Code:
public class MyInfo {
public static void main(String[] args) {
System.out.println("My name is [Your Name].");
System.out.println("I enrolled at Trine University on [Enrollment Date].");
System.out.println("My major is [Your Major].");
System.out.println("I completed [Completed Class] class.");
System.out.println("I am currently enrolled in [Current Class] class.");
}
}
2. Compilation:
To compile this program, you’ll need a Java compiler. Popular options include:
- JDK (Java Development Kit): This comprehensive package includes a compiler, runtime environment, and other tools.