Samuel's Slide Presentation
Samuel's Slide Presentation
Samuel's Slide Presentation
(SIWES) REPORT
AT
BY
NOVEMBER, 2023
BRIEF HISTORY OF SIWES
The Student Industrial Work Experience Scheme (SIWES) was established by
the Industrial Training Fund (ITF) in 1973 to enable students of tertiary
institutions have basic technical knowledge of industrial work based on their
course of study before the completion of their program in their respective
institutions.
The scheme was designed to expose students to industrial environment and
enable them develop occupational competencies so that they can readily
contribute their quota to national economic and technological development
after graduation
BRIEF HISTORY OF OLUAKA INSTITUTE
OF TECHNOLOGY
PRINCIPAL
OFFICERS
RECTOR
ENGLISH
LECTURER 1 LECTURER 1 LECTURER 1
LANGUAGE
JAVASCRIPT SYNTAX
Javascript can be implemented using javascript statements that are placed
within the <script>……..</script> HTML tags in a web page. You can place
the <script> tags containing your javascript anywhere within your web page,
but it is normally recommended that we should keep it within the <head>
tags.
The script tags takes two important attributes:
• Language: This attribute specifies what language I am using
• Type: This attribute is what is now recommended to indicate the
scripting language in use and its value should beset to “text/javascript”.
DATATYPES IN JAVASCRIPT
One of the most fundamental characteristics of a programming language is
the set of data types it support. These are the types of value that can be
represented and manipulated in a programming language, they include:
VARIABLE NAMES
While naming the variable in javascript, the following rules should be kept
in mind:
• Do not use any of the javascript reserved keyword as a variable name.
For example, break or Boolean
• Javascript variable name should not start with a number. They must
begin with a letter or underscore.
• Javascript names are case-sensitive.
OPERATORS
Let me make a simple expression to give its meaning 4+5 = 9. Here 4 and 5
are called operands and “+” is called the operator. Javascript support the
following types of operators, they are:
• IF_ELSE STATEMENT: This is the next form of selection statement that allows
javascript to execute statements in a more controlled way.
• SWITCH CASE: Switch case is used to handle situation more efficiently than
repeated if-else-if.
LOOP STATEMENT
While writing a program you may encounter a situation where you need to
perform an action over and over again. In such situation, you would need to
write a loop statement to reduce the number of lines. Javascript supports all
the necessary loops to ease down the pressure of programming.
• DO WHILE LOOP: This is similar to the while loop except that the condition
checks what happens at the end of the loop. This means that loop will always
be executed at least once, even if the condition is false.
• FOR LOOP: This is the most compact form of looping. It includes where we
initialize our counter to a starting value. The initialization statement is
executed before the loop begins, and will test if a given condition is true or
not. If the condition is true, then the code given inside the loop will be
executed, otherwise the control will come out of the loop, and also where
you can increase or decrease your counter.
FUNCTIONS IN JAVASCRIPT
A function is a group of reusable code which can be called anywhere in your
program. This eliminates the need of writing codes again and again. It helps
programmers in writing modular codes. It allows a programmer to divide a big
program into a number of small and manageable functions.
Before we use a function, we need to define it. The most common way
to define a function in javascript is by using the function keyword, followed by a
unique function name, a list of parameters (this might be empty), and a
statement block surrounded by curly braces.
Also to invoke a function somewhere later in the script, you would
simply need to write the name of the function.
Day of graduation
During the training
CONCLUSION