Siwes Report
Siwes Report
Siwes Report
UNDERTAKEN AT
BY
20N02/065
_________
CERTIFICATION
in writing and submitting this report to the department in compliance with the
programme.
Signature: _____________
DEDICATION
This report is dedicated foremost to God Almighty for His grace, mercy and
favour over my life during the course of my Industrial Training. I would like to
dedicate and my parents, Ven. Dr and Mrs. Ebelechukwu Chudi-obi for their
academic journey and also to everyone else that made my SIWES training a fun
for their moral support and contribution in making me have a smooth journey
Adeseye, the man who assisted me through the journey, and my colleagues for
writing this report and to my amiable lecturers who have imparted knowledge
for their unending love and financial support of my education. May God bless
ABSTRACT
in their various courses of study and to prepare them for industrial work
situations which they are likely to meet in the future after their graduation.
This technical report is based mainly on the practical knowledge further gained
justifying the relevance of the scheme and equipping students with needed
Title Page
Certification
Dedication
Acknowledgement
Abstract
Table of Contents
S.I.W.E.S
the Industrial Training Fund (ITF) in the year 1973 to solve the problem of lack
Nigerian Industries. SIWES was founded to help expose and prepare students of
Before this scheme was established, there was growing concern and trend
institutions was not responsive to the needs of the employers of labour. This
was a huge problem for thousands of Nigerians until 1973. It is against this
background that the fundamental reason for initiating and designing the scheme
The ITF organization made a decision to help all interested Nigerian students
solely funded by the ITF during its formative years but as the financial
involvement became unbearable to the organization, it withdrew from the
scheme in 1978. In 1979, the Federal Government of Nigeria handed over the
taken over by the ITF while the funding was solely borne by the Federal
Government of Nigeria.
include:
ii. Expose students to work methods and techniques that may not be
iii. Bridging the gap between theory and practice by providing a platform
iv. Enabling the easier and smoother transition from school by equipping
All Nigerian students who study technology and science must know about
SIWES. Partaking in SIWES has become a prerequisite for the award diploma
CHAPTER TWO
PLACEMENT
governments.
2.2 VISION, MISSION AND CORE VALUES OF CISL
VISION
capital market
MISSION
To create wealth for both retail and institutional clients, driven by up to date
stakeholders.
CORE VALUES
Commitment
Integrity
Transparency
Efficiency.
governments.
Exchange and is duly registered with the securities & Exchange Commission
(SEC) as a Broker/Dealer.
knowledge of money and capital markets, who have proven integrity over the
years. This wealth of experience along with well trained and committed staff is
placed at the disposal of all its clients to enable them achieve their objective.
We believe in the excellent service delivery to our clients and stakeholders, and
how Website Development and Design works got widened and I learnt the most
basic things to know about HTML AND CSS. Java script wasn’t left out of the
picture too but only a little was learnt about Java script as there wasn’t enough
time to know all the basics there is to know. I also got exposed to the Nigerian
Stock Exchange market and how it operates, which involves the buying and
The things learnt about the Nigerian Stock Exchange and how it works:
Exchange).
Furthermore, the Nigerian stock market is basically divided into two major
segments. These are the primary and the secondary market. The primary market
is where organizations set up their stocks or shares for sale. They achieve this
through what we call an Initial Public Offering (IPO).
While the secondary market is a place where you can buy stocks that are
existing and being traded.
The SEC is the apex regulatory body of the Nigeria capital market that answers
to the Federal Ministry of Finance. They are saddled with the responsibility of
regulating the capital market with an aim of protecting investors. In addition,
they must also ensure the development of the capital market. This is to enhance
its allocative authority and open the door for a private sector-led economy.
Basically, The CSCS is an arm under the Nigerian Stock Exchange. They
license them to carry out the responsibility of depository, clearing, and
settlement of all transactions in the NSE. Furthermore, the CSCS as the
Nation’s exclusive Financial Market Infrastructure processes all securities in the
Nigerian stock market. They process these securities in an electronic book-entry
form. This is to ensure safe and efficient transaction processes in the market.
Stockbrokers:
Currently, in Nigeria, there are well over 90 stockbrokers They are professional
traders who purchase and sell shares on behalf of their clients. A stockbroker
can either be an investment advisor or a registered representative. The majority
of these stockbrokers work with a brokerage firm, and they handle transactions
for individuals and institutions.
How do I buy shares in the Nigerian stock market?
Buying stock on the Nigeria stock market is very straightforward once you
follow all the necessary guidelines. The first thing you must do is to find a
brokerage firm or a stockbroker that will purchase the shares on your behalf.
Once you have done this, you can proceed to fill the CSCS (Central Securities
Clearing Systems) account opening form. After the form filling, you will need
to fund your stock brokerage account.
After all these processes, you can submit your first trade, once you reach a
consensus on what you want.
Investing in stocks is very lucrative, but with its own risks. Therefore, ensure
that you have a thorough understanding of the market before investing.
HTML
HTML, or Hyper Text Markup Language, is the foundation of all websites. It’s
the main file type that is loaded in your browser when you look at a website.
The HTML file contains all the content on the page, and it uses tags to denote
different types of content.
For example, you can use tags to create headline titles, paragraphs, bulleted
lists, images, and so on. HTML tags by themselves do have some styles
attached, but they are pretty basic, like what you would see in a Word
document.
Just getting started with HTML? Check out this tutorial on building a very
simple website using just HTML.
HTML Tags
HTML tags are like keywords which defines that how web browser will format
and display the content. With the help of tags, a web browser can distinguish
between an HTML content and a simple content. HTML tags contain three main
parts: opening tag, content and closing tag. But some HTML tags are unclosed
tags.
When a web browser reads an HTML document, browser reads it from top to
bottom and left to right. HTML tags are used to create HTML documents and
render their properties. Each HTML tags have different properties.
An HTML file must have some essential tags so that web browser can
differentiate between a simple text and HTML text. You can use as many tags
you want as per your code requirement.
o All HTML tags must enclosed within < > these brackets.
o Every tag in HTML perform different tasks.
o If you have used an open tag <tag>, then you must use a close tag </tag>
(except some tags)
CSS
CSS, or Cascading Style Sheets, lets you style that HTML content so it looks
nice and fancy. You can add colors, custom fonts, and layout the elements of
your website however you want them to look. You can even create animations
and shapes with CSS!
There is a lot of depth to CSS, and sometimes people tend to gloss over it so
they can move on to things like JavaScript. However, I can’t overestimate the
importance of understanding how to convert a design into a website layout
using CSS. If you want to specialize in front-end, it’s essential to have really
solid CSS skills.
Comment
A comment has no effect on the display of the page that’s styled; it’s for the
CSS author to read and better understand the code. Comments are universal to
(as far as I know) all programming and related languages. In the example
below, the line that says “this is an old IE6 hack” is a comment:
* html #box {
width: 200px;
Rule Set
A rule set is a single section of CSS including the selector, the curly braces, and
the different lines with properties and values. The code in the example below
comprises one rule set:
body {
color: #555;
font-size: 14px;
Declaration Block
A declaration block is the section of CSS where the property/value pairs appear.
In the example below, everything found between the curly braces (not including
the comments) is a declaration block:
body {
color: #555;
font-size: 14px;
line-height: 20px; /* ends here, before the closing curly brace */
Declaration
A declaration is generally any single line of CSS that appears between the curly
braces, whether shorthand or longhand. In the example below, everything after
the first curly brace, and before the last curly brace (not including the comment)
is a declaration:
body {
Property
A property is what appears before the colon in any line of CSS.
#box {
Value
A value is what appears immediately after the colon in any line of CSS.
#box {
#container #box {
width: 200px;
Inline Styles
Inline styles are used to apply the unique style rules to an element by putting the
CSS rules directly into the start tag. It can be attached to an element using
the style attribute.
The style attribute includes a series of CSS property and value pairs.
Each "property: value" pair is separated by a semicolon (;), just as you would
write into an embedded or external style sheets. But it needs to be all in one line
i.e. no line break after the semicolon.
JAVASCRIPT
JavaScript is a programming language that was designed to run in the browser.
Using JavaScript, you can make your website dynamic, meaning it will respond
to different inputs from the user, or other sources.
For example, you can build a “Back to Top” button that when the user clicks it,
they’ll scroll back up to the top of the page. Or you can build a weather widget
that will display today’s weather based on the user’s location in the world.
JavaScript Functions
Advantages of JavaScript
Speed. Client-side JavaScript is very fast because it can be run
immediately within the client-side browser. Unless outside resources are
required, JavaScript is unhindered by network calls to a backend server.
Simplicity. JavaScript is relatively simple to learn and implement.
Popularity. JavaScript is used everywhere on the web.
Interoperability. JavaScript plays nicely with other languages and can be
used in a huge variety of applications.
Server Load. Being client-side reduces the demand on the website server.
Gives the ability to create rich interfaces.
Disadvantages of JavaScript
Client-Side Security. Because the code executes on the users’ computer,
in some cases it can be exploited for malicious purposes. This is one
reason some people choose to disable Javascript.
Browser Support. JavaScript is sometimes interpreted differently by
different browsers. This makes it somewhat difficult to write cross-
browser code.
During my IT, I was given the responsibility of carrying out various task. We
were sometimes put into teams if hard tasking work is brought to us that needed
divided attention.
Bank payments (Going to the banks to deposit money or letters from the
company).
All other activities were based on the assisting in day to day activities in the
office.
MY OFFICE SUPERVISOR’S CONTRIBUTION
making sure I carried out the tasks I was assigned to under his supervision. I
was also given different assignments to read on several topics on the Nigerian
stock exchange system and how it operates. Also tutorials on web development
Also during the course of my attachment with CISL, I was saddled with and
After observing some of the workers on how they setup computer systems and
actually did setup and installed software programs on many computer systems
TROUBLESHOOTING
We troubleshoot many systems that had faults both within and outside the
department. The major cause of the systems fault is the presence of dust in the
system, so the major work done on them is to blow out the dusts with electric
blower. Other troubleshoot was done by either resetting the RAM, resetting the
BIOS, replacing the CMOS battery re-partitioning the hard drive, etc.
GETTING ACQUINTED WITH THE TOOLS AND EQUIPMENTS
Trading Machine.
Desktop.
Photocopy Machine.
Printer etc.
CONCLUSION
problem solving skills at the various offices I was opportune to work at. It
has also enhanced my sense of responsibility and ability to work under
productivity.
RECOMMENDATION
The experience and knowledge I acquired at CISL and the entire scheme
itself has been a success so far. But nevertheless, a lot are still needed to
The Federal government should put in place policies that will mandate
training, and not after. This will help them a great deal to handle some
training.