Basic Elements of Java: Prof. Ryan Celis
Basic Elements of Java: Prof. Ryan Celis
2 Types:
• Single-line Comments
• Multiple-line Comments
Single-line Comments:
// This is a single line comment.
Multiple-line Comments:
/*
This is an example of
a multiple line
comment
*/
+ - * /
. ; ? ,
<= != == >=
Reserved Words
• words used by Java for specific purposes
Types
1. Arithmetic
1. Binary
2. Unary
2. Assignment
3. Relational
4. Logical
Binary Arithmetic Operators
• arithmetic operators used on two operands
SYMBOL OPERATOR
+ Addition
- Subtraction
* Multiplication
/ Division
% Modular Division
Unary Arithmetic Operators
• operators used on only one operand
SYMBOL OPERATOR
++ Unary Addition
-- Unary SUbtraction
Assignment Operator
• used to assign a value
• the equal (=) sign is used
Relational Operator
• tests the relation between two operands
which produces a boolean value
SYMBOL OPERATOR
== Equality
!= Not equal
< Less Than
<= Less Than or Equal
> Greater Than
>= Greater Than or Equal
Logical Operators
• applies logical operation on boolean values
which produces a boolean value
SYMBOL OPERATOR
! not
&& and
|| or
Practice…
Identify what type of operator
1. =
2. %
3. <=
4. +
5. ++
6. ||
7. !=
8. !
9. *
10. >
Expressions
• expression is a literal value or variable or its
combination that can be evaluated to produce
a result
• operands are variables and literals contained
in an expression
• literal is a static value such as a string or a
number
• operators are symbols pertaining to the
operation to perform
data type operator
operand literal
Mixed Expressions
• an expression that has operands of different
data types evaluated by using different
operators
Example:
5 + (6 * 2.5)
(10 * 5) > (50)
(8 == (2*4)) || false
Practice…
Evaluate the following expressions:
1. (5+10) * (10%3)
2. ( 10*10) >= (5 + (5*5))
3. (10 < 15 ) || (true && false)
4. (!(5==5)) && ((5*10) > 100)
5. true && (!(true || false))
Seatwork (1/2 lengthwise)
Evaluate the following expressions:
1. ((3+3) >= (2*3)) && (T || F)
2. (T && (!T)) || ((7*7) < 50)
3. !(T&&F) || !(T||(T&&F))
4. T && ((2+3*4) >= 15))
5. !(T && F) || (T || (!T))