Ano Ang Sana MO? and Why?
Ano Ang Sana MO? and Why?
● Once you run a Java program, you can run on any platform and
save lots of time.
● It uses important package classes like math, swing, util, lang, awt,
and runtime libraries.
● If you have to run Java applets, then JRE must be installed in your
system.
What is a PC?
● A computer is an electronic device capable of performing
computations
● The main() method is required and you will see it in every Java program:
System.out.println()
Inside the main() method, we can use the println() method to print a line of
text to the screen:
Exercise #1
● Insert the missing part of the code below to output "Hello
World
-First name
-Middle name
-Last name
-Section
-Strand
-Motto in Life
Activity #1
● Create a program in java to show the Different version of java
Computer
Programming
Ano ang Sana mo? At Bakit?
22
Java Print
Both of the print( ) and println( ) methods print
data on the screen. Basically print( ) and
println( ) are nearly the same with just very
small difference between them. These
methods are very popular in Java.
23
Differences Between print( ) and
println( ) in Java
The print() method prints the required output
on the same line continuously again and again
on the screen..
24
print( ) Method
public class Test
{
public static void main(String args[])
{
System.out.print("first statement. ");
System.out.print("second statement. ");
System.out.print("third statement");
}
} 25
println( ) Method
public class Test
{
public static void main(String args[])
{
System.out.println("first statement.");
System.out.println("second statement.");
System.out.println("third statement.");
}
} 26
Exercise No.1
27
Java Comments
Comments can be used to explain Java code, and
to make it more readable. It can also be used to
prevent execution when testing alternative code.
28
Single-line Comments
ingle-line comments start with two forward
slashes (//).
// This is a comment
System.out.println("Hello World");
29
Java Multi-line Comments
Multi-line comments start with /* and ends with
*/.
31
Figure 1
Value Variable
1 Liter
2 Liters
3 Liters
32
Types of Variables
Types Of Variables
• local variable
• instance variable
• static variable
Local Variable
A variable declared inside the body of the
method is called local variable.
38
Example No.1
Create a variable called name of type String and
assign it the value "John":
44
Exercise #1
1.Comments in Java are written with special
characters. Insert the missing parts
3. Display the sum of 5 + 10, using two variables: x and
public class Main
y.
{
public static void main(String[] args) 4. Create a variable called z, assign x + y to it, and
{ display the result.
___This is a single-line comment
___ This is a multi-line comment __ 5.Create three variables of the same type, using a
}
comma-separated list:
}
Arithmetic operators
Assignment operators
Comparison operators
Logical operators
Bitwise operators
48
The Arithmetic Operators
Arithmetic operators are used in mathematical expressions in the same way that
they are used in algebra. The following table lists the arithmetic operators
Assume integer variable A holds 10 and variable B
holds 20
Operator Description Example
+ (Addition) Adds values on either side of A + B will give 30
the operator.
- (Subtraction) Subtracts right-hand operand A - B will give -10
from left-hand operand.
* (Multiplication) Multiplies values on either side A * B will give 200
of the operator.
/ (Division) Divides left-hand operand by B / A will give 2
right-hand operand
% (Modulus) Divides left-hand B % A will give 0
operand by right-hand operand
and returns remainder.
++ (Increment) Increases the value of operand B++ gives 21
by 1.
-- (Decrement) Increases the value of operand B-- gives 19
by 1.
The Relational Operators
Operator Description Example
== (equal to) Checks if the values of two (A == B) is not true.
operands are equal or not, if
yes then condition becomes
There are following relational true.
operators supported by Java != (not equal to) Checks if the values of two (A != B) is true.
operands are equal or not, if
language values are not equal then
condition becomes true..
> (greater than) Checks if the value of left (A > B) is not true.
operand is greater than the
Assume integer variable A holds value of right operand, if yes
then condition becomes true.
10 and variable B holds 20
< (less than) Checks if the value of left (A < B) is true.
operand is less than the value
of right operand, if yes then
condition becomes true.
>= (greater than or equal Checks if the value of left (A >= B) is not true.
to) operand is greater than or
equal to the value of right
operand, if yes then condition
becomes true.
<= (less than or equal to) Checks if the value of left (A <= B) is true.
operand is less than or equal to
the value of right operand, if
yes then condition becomes
true.
The Logical Operators
Assume Boolean variables A holds true and variable B holds
false
Conditional operator is also known as the ternary operator. This operator consists of
three operands and is used to evaluate Boolean expressions. The goal of the operator
is to decide, which value should be assigned to the variable
Syntax Example
public class Test {
variable x = (expression) ? value if true : value if false
public static void main(String args[]) {
int a, b;
a = 10;
b = (a == 1) ? 20: 30;
System.out.println( "Value of b is : " +
b );
Example Example
74 + 36 a. -5 + 8 * 6
Expected Output b. (55+9) % 9
110 c. 20 + -3*5 / 8
d. 5 + 15 / 3 * 2 - 8 % 3
Example
50/3
Expected Output :
16
Activity
Create a program in java to Display the Average of the Given grades and
Display the Status using Conditional Operator ( ? : )
Status
Art = 90.6 100 – 75 = Passed
NSTP = 87 74 below = Failed
English = 90
ComProg = 78
Animation = 90
Average = ?
Status : ?
Computer
Programming
How does it feel to be an ICT
student ?
59
Data Types in Java
Data types specify the different sizes and values that can be stored in the
60
Datatype
Value Variable
1 Liter
2 Liters
3 Liters
61
Java Primitive Data Types
Primitive data types are the building blocks of data manipulation. These
are the most basic data types available in Java language.
byte 0 1 byte
short 0 2 byte
int 0 4 byte
long 0L 8 byte
63
Booleans
A boolean data type is declared with the boolean keyword and can only take
the values true or false
64
Characters
⩥ The char data type is used to store a single character. The character
must be surrounded by single quotes, like 'A' or 'c
⩥ Alternatively, you can use ASCII values to display certain
characters:
65
American Standard
Code For Information
Interchange (ASCII)
66
Byte
⩥ The byte data type can store whole numbers from -128 to 127. This
can be used instead of int or other integer types to save memory
when you are certain that the value will be within -128 and 127:
67
Short
⩥ The short data type can store whole numbers from -32768 to
32767:
68
Integer or int
⩥ The int data type can store whole numbers from -2,147,483,648 to
2,147,483,647. In general, and in our tutorial, the int data type is
the preferred data type when we create variables with a numeric
value.
public class Main {
public static void main(String[] args) {
short myNum = 5000;
System.out.println(myNum);
}
}
69
Long
⩥ The long data type can store whole numbers from
-9223372036854775808 to 9223372036854775807. This is used
when int is not large enough to store the value. Note that you
should end the value with an "L":.
70
Float
⩥ The float data type can store fractional numbers from 3.4e−038 to
3.4e+038. Note that you should end the value with an "f":
71
Double
⩥ The double data type can store fractional numbers from 1.7e−308
to 1.7e+308. Note that you should end the value with a "d":
72
Double
⩥ The double data type can store fractional numbers from 1.7e−308
to 1.7e+308. Note that you should end the value with a "d":
73
Non-Primitive Datatypes
⩥ Non-Primitive data types refer to objects and hence they are
called reference types.
74
String
⩥ String is a sequence of characters. But in Java, a string is an object that
represents a sequence of characters. The java.lang.String class is used to
create a string object.
⩥ The String data type is used to store a sequence of characters (text).
String values must be surrounded by double quotes:
76
What is Class in Java?
⩥ Class are a blueprint or a set of instructions to build a specific type of
object
⩥ It is a basic concept of Object-Oriented Programming which revolve
around the real-life entities
⩥ Class in Java determines how an object will behave and what the object
will contain.
77
Exercises
Identify the datatypes of the given value and display it using
println() Method
78
Activity No.3
Create a program in java to show the Average of the given
grades
average : 83.16
average = ?
79