-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Hypertext Markup Language (HTML) is the standard mark-up language for documents designed to be displayed in a web browser. It defines the content and structure of web content.
Web browsers can either render HTML documents from a Web Server or from local storage and its purpose is to describe the structure of a Web Page.
HTML elements are the building blocks of HTML pages. It uses elements that are delineated by the use of tags, written using angle brackets <>
and, the Web Browsers do not display the HTML tags. They are only used to interpret content on the page.
Below is based on the current version, HTML 5
Batch programming involves writing scripts, often called Batch Files, that execute a series of commands in sequence within a Command-Line Interface (CLI). These scripts are typically used for automating repetitive tasks, such as File Management, Software Installation, or System Maintenance. Batch Files have a .bat or .cmd file extension and contain a list of commands written in a Plain Text Format (PTF), which typically have a Files saved with the .txt
Extension
- Arrays
Python is a high-level, general-purpose programming language. Its design philosophy emphasizes code readability with the use of significant indentation.
It supports multiple programming paradigms, including Structured, Object-Oriented and Functional Programming.
Python 3 was release in 2008. It is not backward compatible with previous versions. Python 2, had its last release in 2020, which debuted in 2000.
Adopting good practices is key to writing clean, efficient, and maintainable Python code. This section focuses on guidelines and techniques to help developers adhere to Pythonic principles, such as adhering to the PEP 8 style guide, employing meaningful variable names, leveraging Python's built-in libraries, and following modular design. These habits not only improve code quality but also foster collaboration and ensure scalability in projects.
NumPy (Numerical Python) is a powerful Open-Source Library in Python that specializes in handling large, multi-dimensional Arrays and Matrices, as well as a wide range of Mathematical Functions to operate upon. It's widely used in Scientific Computing, Data Analysis, Machine Learning (ML), and Engineering.
Java is a widely used, high-level programming language known for its portability, security, and ease of use. It was developed by Sun Microsystems (now owned by Oracle) and released in 1995. Java follows the principle of "write once, run anywhere," meaning that code written in Java can be executed on different platforms without modification, thanks to the Java Virtual Machine (JVM).
Java is commonly used for building applications ranging from web and mobile development to enterprise systems and embedded applications. It boasts a vast ecosystem with strong community support, extensive libraries, and frameworks that make development efficient.