my fire website
yeah man
lloyds bank
more connections than roblox
ibm
pretend i took a picture and put it here yeah
| Company | Contact | Country |
|---|---|---|
| ibm | ibm.com | united states |
| lloyds | lloyds.co.uk | united kingdom |
calculator
age groups
for loop
fizz buzz in a for loop
see fizz buzz to one hundred
see code:
const p = document.getElementById("fizzbuzzoutput")
for (let i = 1; i <= 100; i++) {
if (i % 15 == 0) { p.append("FizzBuzz"); p.append(document.createElement('br')); }
else if (i % 3 == 0) { p.append("Fizz"); p.append(document.createElement('br')); }
else if (i % 5 == 0) { p.append("Buzz"); p.append(document.createElement('br')); }
else { p.append(i); p.append(document.createElement('br')); }
}
t level pathways
Digital Software Development
Focuses on programming and building software: analysing a problem, designing a solution, implementing it in code, then testing and maintaining it. Leads towards roles such as junior developer or software development technician.
Digital Support and Security
Covers IT support within organisations: network infrastructure, cyber security and keeping systems running. Leads towards roles such as IT technician or network engineer.
Digital Data Analytics
Combines digital technology with business operations: analysing data, managing digital projects and improving business processes. Leads towards roles such as data analyst.