You are on page 1of 2

FEU Institute of Technology

ITE Department Object Oriented Programming 1 – Machine


Problem

Name: Ong, Paul Lawrenz Date Performed: 12/13/2018

Course/Yr: BSIT-SMBA/3rd Year Date Submitted: 12/13/2018

Class Schedule: Thursday (16:00-18:50 hrs) Score: __________________

Machine Problem # 1

Vision and Mission

INSTRUCTION

1. Write a program will display the Vision and Mission of FEU-East Asia College.

OUTPUT

VISION

FEU - East Asia College is a premier technology educational institution in the Philippines.

The Information Technology Education (ITE) Department is dedicated to excellence by providing


quality and relevant industry-based IT education, and by promoting and supporting continuous
faculty involvement in all aspects of ITE research, linkages and development.

MISSION

FEU - East Asia College commits itself to be an institution of quality education and relevant
partnership with the larger community, producing competent and principled professionals who
will contribute significantly to the betterment of society.

The Information Technology Education (ITE) Department prepares students to become multi-
skilled IT professionals by providing them quality education, enabling them to respond
effectively to the rapid pace of IT, to undertake research in information technology, and to serve
the community and the profession.
FEU Institute of Technology
ITE Department Object Oriented Programming 1 – Machine
Problem

Source code:

public class MachineProblem1


{ss
public static void main (String args[])
{
System.out.println("");
System.out.println("\t\t\t\t\tVISION");
System.out.println("");
System.out.println("FEU - East Asia College is a premier technology educational institution
in the Philippines.");
System.out.println("");
System.out.println("The Information Technology Education (ITE) Department is dedicated to
excellence by providing ");
System.out.println("quality and relevant industry-based IT education, and by promoting
and supporting continuous ");
System.out.println("faculty involvement in all aspects of ITE research, linkages and
development.");
System.out.println("");
System.out.println("");
System.out.println("");
System.out.println("\t\t\t\t\tMISSION");
System.out.println("");
System.out.println("FEU - East Asia College commits itself to be an institution of quality
education and relevant");
System.out.println("partnership with the larger community, producing competent and
principled professionals who ");
System.out.println("will contribute significantly to the betterment of society.");
System.out.println("");
System.out.println("The Information Technology Education (ITE) Department prepares
students to become multi-");
System.out.println("skilled IT professionals by providing them quality education, enabling
them to respond ");
System.out.println("effectively to the rapid pace of IT, to undertake research in information
technology, and to ");
System.out.println("serve the community and the profession.");
System.out.println("");
}
}

You might also like