Current directory: /home/klas4s23/domains/585455.klas4s23.mid-ica.nl/public_html/Gastenboek/uploads
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Technowire | Home</title>
<!-- includeer font awesome library -->
<link rel="stylesheet" href=" "
integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- includeer de stylesheet -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<header>
<img src="media/logo.png" alt="logo">
<button class="hamburger-btn" id="hamburger-btn">
<i class="fas fa-bars"></i>
<i class="fas fa-close"></i>
</button>
</header>
<nav>
<a href="./index.html">Home</a>
<a href="./tijdlijn.html">Coding languages</a>
<a href="./halloffame.html">IT Hall of Fame</a>
<a href="./silvalley.html">Sillicon Valley</a>
</nav>
<main class="main-content">
<h2>Welcome to TechnoWire</h2>
<p>Welcome to TechnoWire, the online resource for all things programming and computer programming languages.
In the world of software development, there are countless ways to get instructions: to a computer, and
these can be divided into several main categories. In This introduction we will explore these categories
and give examples to get a clear picture outlines of what each of these languages entails.</p>
<ul>
<li>
<h3>Machinecode</h3>
<p>Machine code is the lowest-level programming language understood directly by a computer. It
consists of sequences of zeros and ones that form the basis of all software. An example of a
machine code statement would look like this: 10110000 01100001. Programmers rarely write
directly in machine code, but understanding it is crucial to comprehending the operation of
computers.</p>
</li>
<li>
<h3>Assembly</h3>
<p>Assembly languages bridge the gap between machine code and high-level programming languages. They
facilitate the translation of human-readable instructions into machine code. An example of an
assembly language instruction would be: <code>MOV AX, 5</code>. This makes programming somewhat
more accessible than working directly with machine code, although it still remains at a low
level."</p>
</li>
<li>
<h3>High-level programming languages</h3>
<p>High-level programming languages, such as C++, Python, and Java, are designed to simplify the
complexity for programmers. They use a comprehensible syntax and often offer built-in functions.
For instance, in Python, you can effortlessly display text on the screen with the instruction:
`<code>print("Hello, world!")</code>.</p>
<li>
<h3>Fourth generation languages</h3>
<p>Fourth-generation languages are even more abstract and focus on specific applications, such as
databases and report generation. An example of this is SQL (Structured Query Language), with
which you can formulate complex database queries with just a few lines of code.</p>
<h3>Object-oriented languages</h3>
<p>Object-oriented languages, such as Java and C#, are based on the concept of objects, which
combine data and its functions. This makes it easy to model and build complex systems. For
example, in Java, you can create an object of a class and call functions like
<code>startMotor()</code>.</p>
</ul>
<p>At TechnoWire, we take a closer look at each of these categories, provide tutorials and resources to help
you learn to program in different languages, and keep you up to date with the latest developments in the
world of software development. Whether you are a beginner programmer or a seasoned developer, TechnoWire
is your guide into the fascinating world of programming languages.</p>
</main>
<footer>
<p>© 2023 FinniΓ«n Hulst
</p>
</footer>
</div>
</body>
<!-- script voor het hamburgermenu -->
<script>
document.addEventListener("DOMContentLoaded", function () {
const hamburgerBtn = document.getElementById("hamburger-btn");
const nav = document.querySelector("nav");
// Voeg logica toe om tussen het hamburger- en kruisicoon te wisselen
const barsIcon = hamburgerBtn.querySelector(".fas.fa-bars");
const crossIcon = hamburgerBtn.querySelector(".fas.fa-close");
if (hamburgerBtn.classList.contains("active")) {
barsIcon.style.display = "none";
crossIcon.style.display = "block";
} else {
barsIcon.style.display = "block";
crossIcon.style.display = "none";
}
hamburgerBtn.addEventListener("click", function () {
hamburgerBtn.classList.toggle("active");
nav.classList.toggle("active");
// Voeg logica toe om tussen het hamburger- en kruisicoon te wisselen
const barsIcon = hamburgerBtn.querySelector(".fas.fa-bars");
const crossIcon = hamburgerBtn.querySelector(".fas.fa-close");
if (hamburgerBtn.classList.contains("active")) {
barsIcon.style.display = "none";
crossIcon.style.display = "block";
} else {
barsIcon.style.display = "block";
crossIcon.style.display = "none";
}
});
});
</script>
</html>