Cyber security is the practice of defending computers, servers, mobile devices, electronic systems, networks, and data from malicious attacks. It's also known as information technology security or electronic information security. The term applies in a variety of contexts, from business to mobile computing, and can be divided into a few common categories.
- Network security is the practice of securing a computer network from intruders, whether targeted attackers or opportunistic malware.
- Application security focuses on keeping software and devices free of threats. A compromised application could provide access to the data its designed to protect. Successful security begins in the design stage, well before a program or device is deployed.
- Information security protects the integrity and privacy of data, both in storage and in transit.
- Operational security includes the processes and decisions for handling and protecting data assets. The permissions users have when accessing a network and the procedures that determine how and where data may be stored or shared all fall under this umbrella.
- Disaster recovery and business continuity define how an organization responds to a cyber-security incident or any other event that causes the loss of operations or data. Disaster recovery policies dictate how the organization restores its operations and information to return to the same operating capacity as before the event. Business continuity is the plan the organization falls back on while trying to operate without certain resources.
- End-user education addresses the most unpredictable cyber-security factor: people. Anyone can accidentally introduce a virus to an otherwise secure system by failing to follow good security practices. Teaching users to delete suspicious email attachments, not plug in unidentified USB drives, and various other important lessons is vital for the security of any organization.
- Tutor: Thierry Barata S.
- Tutor: Elie Kambale
web development (server-side),
software development,
mathematics,
Python can be used alongside software to create workflows.
Python can connect to database systems. It can also read and modify files.
Python can be used to handle big data and perform complex mathematics.
Python can be used for rapid prototyping, or for production-ready software development
Python has a simple syntax similar to the English language.
Python can be treated in a procedural way, an object-orientated way or a functional way.
In this tutorial Python will be written in a text editor. It is possible to write Python in an Integrated Development Environment, such as Thonny, Pycharm, Netbeans or Eclipse which are particularly useful when managing larger collections of Python files.
Python Syntax compared to other programming languages
Python was designed for readability, and has some similarities to the English language with influence from mathematics.
Python uses new lines to complete a command, as opposed to other programming languages which often use semicolons or parentheses.
Python relies on indentation, using whitespace, to define scope; such as the scope of loops, functions and classes. Other programming languages often use curly-brackets for this purpose.
- Tutor: Elie Kambale
Solving problems is the core of computer science. Programmers must first
understand how a human solves a problem, then understand how to translate this
"algorithm" into something a computer can do, and finally how to "write" the
specific syntax (required by a computer) to get the job done. It is sometimes the
case that a machine will solve a problem in a completely different way than a
human.
- Tutor: Elie Kambale
A lot of people learn web coding because they want to create the next
Facebook or find a job in the industry. But it’s also a good choice if
you just want a general introduction to coding, since it’s super easy to
get started. No matter whether you’re looking for a career or just want
to learn coding, learning how to develop for the web is for you. It’s
one of the smartest decisions you will ever make!
- Tutor: Thierry Barata S.
- Tutor: Elie Kambale