Glossary of Terms
Web Development
- HTML
- Stands for HyperText Markup Language. It is the standard language for creating web pages and applications.
- CSS
- Stands for Cascading Style Sheets. It is used for styling the appearance of content written in HTML.
- JavaScript
- A programming language used to create interactive effects within web browsers. It allows developers to manipulate HTML and CSS dynamically.
- Responsive Web Design
- The practice of creating web pages that look good on all devices, from desktop monitors to mobile phones. This is often achieved using CSS media queries.
Programming
- Algorithm
- A step-by-step procedure or formula for solving a problem.
- Variable
- A placeholder used to store data values that can be changed during the execution of a program. In JavaScript, for example, a variable can be declared with
let, const, or var.
- Function
- A block of reusable code that performs a specific task. Functions help organize and modularize code for better readability and maintenance.
Computer Science
- Binary
- A numbering system that uses only two digits: 0 and 1. It is the fundamental language of computers and digital systems.
- Cloud Computing
- Refers to the delivery of computing services such as storage, processing, and software over the internet, allowing for remote access to powerful computing resources.
- Encryption
- The process of encoding information so that only authorized parties can access it. This is commonly used for secure communication over the internet.