Sie sind auf Seite 1von 5

INFORMATION TECHNOLOGY EDUCATION DEPARTMENT

ITPROG3
(Object Oriented Programming)

EXERCISE

1
Compiling and Running Java Program

<ONG,PAUL LAWRENZ>
<W292>
<12/13/2018>
I. OBJECTIVES:

At the end of the experiment students must be able to:

Cognitive
a) Understand the key features of Java technology
.
Psychomotor:
a.) Write, compile and run a simple Java technology application

Affective
a.) Appreciate the concept behind this experiment.

II. BACKGROUND INFORMATION

A Java source file can include package, import and class declarations in the same order
• The main() method is the start of execution of a Java application
• Each Java statement is terminated by a semicolon “;”
• System.out.println() outputs a string on the screen.

III.EXPERIMENTAL PROCEDURE:

1. Like any other programming language, you use the java programming language to create
applications.

Using Notepad or Notepad++ as text editor and the command line as output window, create
a class named: [YourName]. The program should output on the screen: Welcome to Java
Programming [YourName]!!!

2. Write a resume using System.out.println( ).


IV. QUESTION AND ANSWER:

1. What is your understanding about System.out.println()?

For me, it is one of the methods in the System Class where in it prints out strings that is
the same with C++ (cout<<”message”). We all know that system class is a part of the
core Java Language package of the Application Programming Interface.

2. How does the Java Technology platform improve on other language platforms?

Java doesn’t need to improve its platform on other languages because Java is a high
level, robust, secured and object-oriented programming language. There are many key
differneces while comparing java with other languages. The Java compiler turns code
into something called Bytecode, which is then interpreted by software called JVM. With
this we get the advantage of Write Once, Run Anywhere (WORA). Other features like
Portability, Architectue-Neutral, Security, OOP's, etc. Java is not just considered but
also used in developing many large distributed, enterprise applications. Java is used to
create web applications, customized software and web portals, including eCommerce
and m-Commerce solutions.

Source Code: (RESUME)


public class ResumeLabExp1 {
public static void main(String args[])
{
System.out.println("");
System.out.println("\t\t\t\t\tPAUL LAWRENZ ONG");

System.out.println("_____________________________________________________________
____________________________________________");
System.out.println("\t\t\t C: (+639-155048533) || paulong@gmail.com");
System.out.println("");
System.out.println("");
System.out.println("\t\t\t\t\t Summary");

System.out.println("_____________________________________________________________
____________________________________________");
System.out.println("Skilled Client Support Technician with extensive IT background. Enjoys
troubleshooting to find solutions");
System.out.println("to technical issues. Seeking to benefit an IT Department with complex
technical knowledge and strong");
System.out.println("leadership skills.");
System.out.println("");
System.out.println("");
System.out.println("\t\t\t\t\t Highlights");
System.out.println("_____________________________________________________________
____________________________________________");
System.out.println("\t\t*Project Management\t\t\t*Extensive Windows Experience");
System.out.println("\t\t*Software and hardware updates\t\t*Reporting and analysis");
System.out.println("\t\t*Advanced TCP/IP Knowledge\t\t*Good presentation ability");
System.out.println("\t\t*Server Configurations\t\t\t*Excellent time manager");
System.out.println("\t\t*Applciations troubleshooting\t\t*Diligent and detail-oriented");
System.out.println("");
System.out.println("");
System.out.println("\t\t\t\t\t Experience");

System.out.println("_____________________________________________________________
____________________________________________");
System.out.println("Client Server Support Technician \t\t\t\t07/20/2020 to 08/20/2022");
System.out.println("IBM Philippines");
System.out.println("");
System.out.println("\t*Test and Troubleshoot client equipment remotely and on-sale.");
System.out.println("\t*Oversee technical installation and support projects for new and existing
clients.");
System.out.println("\t*Provide high-level system tuning and infrastracture support. ");
System.out.println("\t*Train end-users and technical support personnel on optimization and
use of equipment.");
System.out.println("\t*Promptly resolve customer service issues and requests.");
System.out.println("");
System.out.println("");
System.out.println("\t\t\t\t\t Education");

System.out.println("_____________________________________________________________
____________________________________________");
System.out.println("Bachelor of Science in Information Technology");
System.out.println("Specialization: Service Management and Business Analytics");
System.out.println("Far Eastern University- Institute of Technology");
System.out.println("");
System.out.println("");
System.out.println("\t\t\t\t\t Certification");

System.out.println("_____________________________________________________________
____________________________________________");
System.out.println("Microsoft Certified Solutions Expert (MCSE)");
System.out.println("Certification : 2015 to present");

}
}
Source Code: (WELCOME)

public class PaulOng


{
public static void main(String args[])
{
System.out.print("Welcome to Java Programming PaulOng !!!");
}
}

Das könnte Ihnen auch gefallen