SlideShare a Scribd company logo
1 of 91
z
Microprocessor
Systems
CT-318
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
1
z
Previous Topics
 Basic structures of Arduino Programming
setup()
loop()
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
2
z
Previous Topics
 {} curly braces
 ; semicolon
 /*… */ block comments
 // line comments
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
3
z
Previous Topics
 variables
 Datatypes
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
4
z
Set the pin 10 into redLED as global variable
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
5
z
Read the following terms….
 Arithmetic operators
 compound assignments
 comparison operators
 Boolean constants
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
6
z
Read the following terms….
 If statements
 if… else statements
 For loop
 While loop
 Do .. While loop
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
7
z
Checking of Assignments
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
8
z
Read the following terms….
 arithmetic
 compound assignments
 comparison operators
 logical operators
 constants values
 if statements
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
9
z
Read the following terms….
 if… else statement
 for statement
 while loop statement
 do… while statement
 pinMode(pin, mode)
 digitalRead(pin)
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
10
z
Read the following terms….
 digitalWrite(pin, value)
 analogRead(pin)
 analogWrite(pin, value)
 delay(ms)
 millis()
 min(x, y)
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
11
z
Read the following terms….
 max(x, y)
 randomSeed(seed)
 random(max)
 random(min, max)
 Serial.begin(rate)
 Serial.println(data)
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
12
z
OBJECTIVES
At the end of this lesson, learners will be able to;
 summarize the arithmetic operators, compound assignments,
comparison operators, logical operators, and constant values;
 recognize the use of if statements, if… else statement, for statement ,
while loop statement, and do… while statement;
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
13
z
OBJECTIVES
At the end of this lesson, learners will be able to;
 sketch the constant values like pinMode(pin, mode), digitalRead(pin),
digitalWrite(pin, value), analogRead(pin), analogWrite(pin, value),
delay(ms), millis(), min(x, y), max(x, y), randomSeed(seed), random(max),
random(min, max), Serial.begin(rate), and Serial.println(data);
 analyze and design code structure, and;
 develop their problem-solving skills and use them in their future Arduino
projects to show innovativeness.
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
14
z
arithmetic
Arithmetic operators include addition,
subtraction, multiplication, and division.
They return the sum, difference, product,
or quotient (respectively) of two operands.
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
15
z
arithmetic
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
16
z
Arithmetic operators includes?
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
17
z
arithmetic
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
18
z
compound assignments
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
19
z
Enumerate the following.
x++ is the same as?
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
20
z
Enumerate the following.
x - - is the same as?
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
21
z
Enumerate the following.
x += y is the same as?
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
22
z
Enumerate the following.
x -= y is the same as?
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
23
z
Enumerate the following.
x *= y is the same as?
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
24
z
Enumerate the following.
x /= y is the same as?
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
25
z
comparison operators
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
26
z
Enumerate the following.
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
27
z
logical operators
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
28
z
Write the code on the board.
Logical AND
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
29
z
Write the code on the board.
Logical OR
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
30
z
Write the code on the board.
Logical NOT
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
31
z
constants
The Arduino language has a few
predefined values, which are called
constants. They are used to make the
programs easier to read. Constants are
classified in groups.
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
32
z
constants
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
33
z
In BOOLEAN, zero is defined as?
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
34
z
In BOOLEAN, TRUE is defined as?
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
35
z
constants
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
36
z
 HIGH is defined as?
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
37
z
 LOW is defined as?
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
38
z
Explain the code.
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
39
z
constants
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
40
z
Explain the code.
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
41
z
if statements
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
42
z
Explain the code.
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
43
z
if statements
The given example compares someVariable to
another value, which can be either a variable or
constant. If the comparison, or condition in
parentheses is true, the statements inside the
brackets are run. If not, the program skips over
them and continues on after the brackets.
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
44
z
if statements
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
45
z
if… else
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
46
z
if… else
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
47
z
if… else
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
48
z
Explain the code.
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
49
z
for statement
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
50
z
for statement
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
51
z
for statement
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
52
z
for statement
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
53
z
Explain each part of a “for statement”.
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
54
z
while loop
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
55
z
while loop
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
56
z
 What will happen if the expression
inside the parentheses becomes
false?
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
57
z
do… while
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
58
z
do… while
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
59
z
 What will happen if x is no longer
less than 100?
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
60
z
pinMode(pin, mode)
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
61
z
pinMode(pin, mode)
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
62
z
Write a code on the board.
 In void setup, set the pin 3 as an
output and in the void loop turn the
LED “on” using digital write.
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
63
z
pinMode(pin, mode)
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
64
z
digitalRead(pin)
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
65
z
digitalWrite(pin, value)
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
66
z
digitalWrite(pin, value)
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
67
z
Explain each line of code.
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
68
z
analogRead(pin)
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
69
z
analogWrite(pin, value)
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
70
z
analogWrite(pin, value)
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
71
z
analogWrite(pin, value)
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
72
z
delay(ms)
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
73
z
millis()
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
74
z
min(x, y)
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
75
z
max(x, y)
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
76
z
randomSeed(seed)
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
77
z
random(max)
random(min, max)
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
78
z
random(max)
random(min, max)
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
79
z
Serial.begin(rate)
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
80
z
Serial.println(data)
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
81
z
Serial.println(data)
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
82
z
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
83
z
Activity
On a ¼ clean yellow pad paper, write a code based
on this diagram. Please use a global variable.
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
84
z
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
85
z
MIDTERM HANDS-ON EXAM using
Serial Input from 0-5.
 Type 1 to turn on the yellow LED
 Type 2 to turn on the green LED
 Type 3 to turn on the red LED
 Type 4 to sequential blink LEDs
 Type 5 to turn on all LEDs
 Type 0 to turn off LEDs
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
86
z
Pseudo-code
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
87
z
Pseudo-code
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
88
z
Pseudo-code
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
89
z
references
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
90
z
Microprocessor
Systems
CT-318
11/23/2022
Lesson
3
-
LED
Display
PART
2
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
91

More Related Content

More from Mark John Lado, MIT

2 Module - Operating Systems Configuration and Use by Mark John Lado
2 Module - Operating Systems Configuration and Use by Mark John Lado2 Module - Operating Systems Configuration and Use by Mark John Lado
2 Module - Operating Systems Configuration and Use by Mark John LadoMark John Lado, MIT
 
PART 1 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado...
PART 1 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado...PART 1 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado...
PART 1 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado...Mark John Lado, MIT
 
PART 3 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado...
PART 3 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado...PART 3 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado...
PART 3 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado...Mark John Lado, MIT
 
Dart Programming Language by Mark John Lado
Dart Programming Language by Mark John LadoDart Programming Language by Mark John Lado
Dart Programming Language by Mark John LadoMark John Lado, MIT
 
Computer hacking and security - Social Responsibility of IT Professional by M...
Computer hacking and security - Social Responsibility of IT Professional by M...Computer hacking and security - Social Responsibility of IT Professional by M...
Computer hacking and security - Social Responsibility of IT Professional by M...Mark John Lado, MIT
 
A WIRELESS DIGITAL PUBLIC ADDRESS WITH VOICE ALARM AND TEXT-TO-SPEECH FEATURE...
A WIRELESS DIGITAL PUBLIC ADDRESS WITH VOICE ALARM AND TEXT-TO-SPEECH FEATURE...A WIRELESS DIGITAL PUBLIC ADDRESS WITH VOICE ALARM AND TEXT-TO-SPEECH FEATURE...
A WIRELESS DIGITAL PUBLIC ADDRESS WITH VOICE ALARM AND TEXT-TO-SPEECH FEATURE...Mark John Lado, MIT
 
IT Security and Management - Semi Finals by Mark John Lado
IT Security and Management - Semi Finals by Mark John LadoIT Security and Management - Semi Finals by Mark John Lado
IT Security and Management - Semi Finals by Mark John LadoMark John Lado, MIT
 
IT Security and Management - Security Policies
IT Security and Management - Security PoliciesIT Security and Management - Security Policies
IT Security and Management - Security PoliciesMark John Lado, MIT
 
Systems Administration - MARK JOHN LADO
Systems Administration - MARK JOHN LADOSystems Administration - MARK JOHN LADO
Systems Administration - MARK JOHN LADOMark John Lado, MIT
 
IT Security and Management - Prelim Lessons by Mark John Lado
IT Security and Management - Prelim Lessons by Mark John LadoIT Security and Management - Prelim Lessons by Mark John Lado
IT Security and Management - Prelim Lessons by Mark John LadoMark John Lado, MIT
 
Introduction to Networks and Programming Language
Introduction to Networks and Programming LanguageIntroduction to Networks and Programming Language
Introduction to Networks and Programming LanguageMark John Lado, MIT
 
IT Infrastructure and Network Technologies - Finals by Mark John Lado
IT Infrastructure and Network Technologies - Finals by Mark John LadoIT Infrastructure and Network Technologies - Finals by Mark John Lado
IT Infrastructure and Network Technologies - Finals by Mark John LadoMark John Lado, MIT
 
Foundations of Information System in Business - Mark John Lado
Foundations of Information System in Business - Mark John LadoFoundations of Information System in Business - Mark John Lado
Foundations of Information System in Business - Mark John LadoMark John Lado, MIT
 
IT infrastructure and network technologies for Semi Final
IT infrastructure and network technologies for Semi FinalIT infrastructure and network technologies for Semi Final
IT infrastructure and network technologies for Semi FinalMark John Lado, MIT
 
Security Privacy Operating System and Artificial Intelligence
Security Privacy Operating System and Artificial IntelligenceSecurity Privacy Operating System and Artificial Intelligence
Security Privacy Operating System and Artificial IntelligenceMark John Lado, MIT
 
IT infrastructure and Network technologies for Midterm
IT infrastructure and Network technologies for MidtermIT infrastructure and Network technologies for Midterm
IT infrastructure and Network technologies for MidtermMark John Lado, MIT
 
IT infrastructure and network technologies by Mark John Lado
IT infrastructure and network technologies by Mark John Lado IT infrastructure and network technologies by Mark John Lado
IT infrastructure and network technologies by Mark John Lado Mark John Lado, MIT
 

More from Mark John Lado, MIT (20)

2 Module - Operating Systems Configuration and Use by Mark John Lado
2 Module - Operating Systems Configuration and Use by Mark John Lado2 Module - Operating Systems Configuration and Use by Mark John Lado
2 Module - Operating Systems Configuration and Use by Mark John Lado
 
PART 1 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado...
PART 1 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado...PART 1 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado...
PART 1 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado...
 
PART 3 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado...
PART 3 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado...PART 3 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado...
PART 3 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado...
 
Dart Programming Language by Mark John Lado
Dart Programming Language by Mark John LadoDart Programming Language by Mark John Lado
Dart Programming Language by Mark John Lado
 
What is CRUD in TPS?
What is CRUD in TPS?What is CRUD in TPS?
What is CRUD in TPS?
 
Computer hacking and security - Social Responsibility of IT Professional by M...
Computer hacking and security - Social Responsibility of IT Professional by M...Computer hacking and security - Social Responsibility of IT Professional by M...
Computer hacking and security - Social Responsibility of IT Professional by M...
 
A WIRELESS DIGITAL PUBLIC ADDRESS WITH VOICE ALARM AND TEXT-TO-SPEECH FEATURE...
A WIRELESS DIGITAL PUBLIC ADDRESS WITH VOICE ALARM AND TEXT-TO-SPEECH FEATURE...A WIRELESS DIGITAL PUBLIC ADDRESS WITH VOICE ALARM AND TEXT-TO-SPEECH FEATURE...
A WIRELESS DIGITAL PUBLIC ADDRESS WITH VOICE ALARM AND TEXT-TO-SPEECH FEATURE...
 
IT Security and Management - Semi Finals by Mark John Lado
IT Security and Management - Semi Finals by Mark John LadoIT Security and Management - Semi Finals by Mark John Lado
IT Security and Management - Semi Finals by Mark John Lado
 
IT Security and Management - Security Policies
IT Security and Management - Security PoliciesIT Security and Management - Security Policies
IT Security and Management - Security Policies
 
Systems Administration - MARK JOHN LADO
Systems Administration - MARK JOHN LADOSystems Administration - MARK JOHN LADO
Systems Administration - MARK JOHN LADO
 
IT Security and Management - Prelim Lessons by Mark John Lado
IT Security and Management - Prelim Lessons by Mark John LadoIT Security and Management - Prelim Lessons by Mark John Lado
IT Security and Management - Prelim Lessons by Mark John Lado
 
Introduction to Networks and Programming Language
Introduction to Networks and Programming LanguageIntroduction to Networks and Programming Language
Introduction to Networks and Programming Language
 
MIS Concept Final Term
MIS Concept Final TermMIS Concept Final Term
MIS Concept Final Term
 
IT Infrastructure and Network Technologies - Finals by Mark John Lado
IT Infrastructure and Network Technologies - Finals by Mark John LadoIT Infrastructure and Network Technologies - Finals by Mark John Lado
IT Infrastructure and Network Technologies - Finals by Mark John Lado
 
Foundations of Information System in Business - Mark John Lado
Foundations of Information System in Business - Mark John LadoFoundations of Information System in Business - Mark John Lado
Foundations of Information System in Business - Mark John Lado
 
IT infrastructure and network technologies for Semi Final
IT infrastructure and network technologies for Semi FinalIT infrastructure and network technologies for Semi Final
IT infrastructure and network technologies for Semi Final
 
Security Privacy Operating System and Artificial Intelligence
Security Privacy Operating System and Artificial IntelligenceSecurity Privacy Operating System and Artificial Intelligence
Security Privacy Operating System and Artificial Intelligence
 
Introduction to Computing
Introduction to ComputingIntroduction to Computing
Introduction to Computing
 
IT infrastructure and Network technologies for Midterm
IT infrastructure and Network technologies for MidtermIT infrastructure and Network technologies for Midterm
IT infrastructure and Network technologies for Midterm
 
IT infrastructure and network technologies by Mark John Lado
IT infrastructure and network technologies by Mark John Lado IT infrastructure and network technologies by Mark John Lado
IT infrastructure and network technologies by Mark John Lado
 

Recently uploaded

Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfchloefrazer622
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Disha Kariya
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...anjaliyadav012327
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 

Recently uploaded (20)

Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdf
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 

Arduino LED Display Lesson