Student's Profile
Name: Kelvin Remorosa
Age: 19 years old
Year and Section: XII - CACHE
Strand: Information and Communication Technology (ICT)
What is Java Programming?
Java is a general-purpose programming language that is class-based, object-oriented,
and designed to have as few implementation dependencies as possible.
Example of Java Programming Code:
1. class IfStatement {
2. public static void main(String[] args) {
3.
4. int number = 10;
5.
6. if (number > 0) {
7. [Link]("Number is positive.");
8. }
9. [Link]("This statement is always executed.");
10. }
11. }
Quotation/Motto:
The secret of living a life of excellence is merely a matter of thinking thoughts of
excellence. Really, it's a matter of programming our minds with the kind of information
that will set us free. - Charles R. Swindoll
Student's Profile
Name: Jojo C. Lertido
Age: 20 years old
Year and Section: XII - CACHE
Strand: Information and Communication Technology (ICT)
What is Java Programming?
Java is a programming language that produces software for multiple platforms. When a
programmer writes a Java application, the compiled code (known as bytecode) runs on
most operating systems (OS), including Windows, Linux and Mac OS. Java derives
much of its syntax from the C and C++ programming languages.
Example of Java Programming Code:
1. class EnhancedForLoop {
2. public static void main(String[] args) {
3.
4. int[] numbers = {3, 4, 5, -5, 0, 12};
5. int sum = 0;
6.
7. for (int number: numbers) {
8. sum += number;
9. }
10.
11. [Link]("Sum = " + sum);
12. }
13. }
Quotation/Motto:
I didn't get trained by the school system like other kids, and when I did concentrate on
learning, my mind was cluttered and locked by the programming of the system. - Huey
Newton
Student's Profile
Name: David A. Formentera Jr.
Age: 17 years old
Year and Section: XII - CACHE
Strand: Information and Communication Technology (ICT)
What is Java Programming?
Java is a computer programming language. It enables programmers to write computer
instructions using English-based commands instead of having to write in numeric codes.
It’s known as a high-level language because it can be read and written easily by
humans.
Example of Java Programming Code:
1. // Program to print a sentence 10 times
2.
3. class Loop {
4. public static void main(String[] args) {
5.
6. for (int i = 1; i <= 10; ++i) {
7. [Link]("Line " + i);
8. }
9. }
10. }
Quotation/Motto:
We live in a world where finding fault in others seems to be the favorite blood sport. It
has long been the basis of political campaign strategy. It is the theme of much television
programming across the world. It sells newspapers. Whenever we meet anyone, our
first, almost unconscious reaction may be to look for imperfections. - Henry B. Eyring
Student's Profile
Name: Christian Jay Colonia
Age: 18 years old
Year and Section: XII - CACHE
Strand: Information and Communication Technology (ICT)
What is Java Programming?
Java is a widely used programming language expressly designed for use in the
distributed environment of the internet. It is the most popular programming language for
Android smartphone applications and is also among the most favored for the
development of edge devices and the internet of things.
Example of Java Programming Code:
1. // Program to find the sum of natural numbers from 1 to 1000.
2.
3. class Number {
4. public static void main(String[] args) {
5.
6. int sum = 0;
7.
8. for (int i = 1; i <= 1000; ++i) {
9. sum += i; // sum = sum + i
10. }
11.
12. [Link]("Sum = " + sum);
13. }
14. }
Quotation/Motto:
Everyday life is like programming, I guess. If you love something you can put beauty
into it. - Donald Knuth