Step 1: Your Details
NotesComplete this first before moving on to Day 1.
A guided three-day pack covering telecoms, websites, AI, Linux, and reflection. Everything saves automatically as you go.
Welcome
Complete this first before moving on to Day 1.
Welcome to TeleFlow. TeleFlow Ltd is a UK B2B telecoms company, and we help businesses stay connected through phone networks, internet services, and digital infrastructure. Over the next three days you'll get a real taste of what it's like to work in tech.
How phone and internet infrastructure works, and how TeleFlow operates as a B2B business.
How websites are built, where they live, and how AI is changing how companies work.
The OS powering the internet, a possible visit to a datacentre in Poole, and your final reflection.
Day 1
Telecommunications (telecoms) means transmitting information such as voices, data, and video over a distance. Every time you send a text, make a call, or load a webpage, you're using telecoms technology. TeleFlow works behind the scenes to keep this infrastructure running.
TeleFlow is a B2B (Business-to-Business) company, so its customers are other businesses rather than individual consumers.
Use these prompts to jot down thoughts, questions, or anything you find out during the day.
Everything in computing starts with binary. Let's try it now.
Click each bit to flip it between 0 and 1, then watch the decimal value update.
Answer as best you can. You can look back at the notes above if you need to.
Day 2
When you type a website address into your browser, a lot happens in a fraction of a second. Understanding this is central to web development.
Use these prompts to explore what you notice about websites, servers, and online tools.
Below is a small snippet of HTML. Read it carefully and answer the questions.
<!DOCTYPE html>
<html>
<head>
<title>TeleFlow</title>
</head>
<body>
<h1>Welcome to TeleFlow!</h1>
<p>Connecting the UK since 2010.</p>
<a href="https://teleflow.co.uk/contact">Contact Us</a>
</body>
</html>Write one more line of HTML to add a second paragraph. Try it here:
Put these steps in the correct order by writing 1–6 in each box.
n8n is a workflow automation tool. It lets you connect apps, APIs, and internal tools so repetitive tasks can happen automatically.
Artificial Intelligence is one of the biggest changes in tech right now. At TeleFlow, AI tools are already being used to work smarter and faster.
Day 3
Linux is a free, open-source OS. It runs on ~96% of the world's top web servers, most smartphones (Android), and the International Space Station.
Learn these essential commands. You'll use them in the activity below.
lsList files and foldersls -lacdChange directory (navigate to a folder)cd /home/userpwdShow your current locationpwdmkdirMake a new directorymkdir my_projectcatDisplay contents of a filecat readme.txtcpCopy a filecp file.txt copy.txtmvMove or rename a filemv old.txt new.txtrmDelete a file. Use with care.rm temp.txtsudoRun a command as administratorsudo apt updatepingTest if a server is reachableping google.comtopShow live running processestopmanShow the manual for any commandman lsWork through these on a real terminal if you can, or use them as a guide while watching someone else do them. Tick each one as you complete it.
There may be a visit to a local datacentre in Poole. Use the fields below to record what you see. If the visit doesn't happen, read the notes and record anything you learn about datacentres.
Have a go at writing some real code. Do your best and use the notes on the page to help you if you get stuck.
Reflection
Well done for completing your work experience at TeleFlow. Fill this in before you go. It's useful for your CV, personal statement, or future applications.
TeleFlow Work Experience
A guided three-day pack covering telecoms, websites, AI, Linux, and reflection. Everything is laid out for handwriting and printing.
Welcome
Complete this first before moving on to Day 1.
Welcome to TeleFlow. TeleFlow Ltd is a UK B2B telecoms company, and we help businesses stay connected through phone networks, internet services, and digital infrastructure. Over the next three days you'll get a real taste of what it's like to work in tech.
This pack is yours. Work through each section at your own pace, and your answers are saved automatically as you go.
How phone and internet infrastructure works, and how TeleFlow operates as a B2B business.
How websites are built, where they live, and how AI is changing how companies work.
The OS powering the internet, a possible visit to a datacentre in Poole, and your final reflection.
Day 1
Telecommunications (telecoms) means transmitting information such as voices, data, and video over a distance. Every time you send a text, make a call, or load a webpage, you're using telecoms technology. TeleFlow works behind the scenes to keep this infrastructure running.
TeleFlow is a B2B (Business-to-Business) company, so its customers are other businesses rather than individual consumers.
Use these prompts to jot down thoughts, questions, or anything you find out during the day.
1. What seems to be the main job of a telecoms company like TeleFlow?
2. What kinds of businesses might need telecoms or internet services like these?
3. What is the difference between fibre broadband and older types of broadband?
4. What happens when a phone call or internet connection stops working?
5. What can UK phone numbers tell you, such as whether a number is geographic, mobile, or non-geographic?
6. Why might a business choose a number starting with 01 or 02, 03, 07, or 08?
7. What else have you learnt today about telephony, phone systems, or networking?
Everything in computing starts with binary. Let's try it now.
Answer as best you can. You can look back at the notes above if you need to.
Q1. What does 'bandwidth' measure?
Q2. What is a 'packet' in networking?
Q3. Which of the following is an IP address?
Q4. What does 5G stand for?
Q5. In binary, what is the decimal value of 00001000?
Day 2
When you type a website address into your browser, a lot happens in a fraction of a second. Understanding this is central to web development.
Use these prompts to explore what you notice about websites, servers, and online tools.
1. What technologies do you think might be used to build a website like this?
2. What steps happen between typing a web address and seeing a page load?
3. What do you think is included in an HTTP request from your browser to a website?
4. What is the difference between an HTTP request and an HTTP response?
5. Why is HTTPS usually preferred over plain HTTP?
6. What might a 404 or 500 status code tell you about a website problem?
7. Why do websites need both a front end and a back end?
8. What is the difference between storing data in files and storing it in a database?
9. How might a team check that a website is working properly before making changes live?
10. What could go wrong if a server or website goes offline?
11. What else would you like to understand better about websites or servers?
Below is a small snippet of HTML. Read it carefully and answer the questions.
<!DOCTYPE html>
<html>
<head>
<title>TeleFlow</title>
</head>
<body>
<h1>Welcome to TeleFlow!</h1>
<p>Connecting the UK since 2010.</p>
<a href="https://teleflow.co.uk/contact">Contact Us</a>
</body>
</html>Put these steps in the correct order by writing 1–6 in each box.
n8n is a workflow automation tool. It lets you connect apps, APIs, and internal tools so repetitive tasks can happen automatically.
Artificial Intelligence is one of the biggest changes in tech right now. At TeleFlow, AI tools are already being used to work smarter and faster.
Q1. What does HTML stand for?
Q2. What is the purpose of CSS?
Q3. What does HTTPS do that HTTP does not?
Q4. What does a 404 HTTP status usually mean?
Q5. In simple terms, what is an HTTP response?
Q6. What does a 'front-end' developer build?
Q7. What is an LLM?
Day 3
Linux is a free, open-source OS. It runs on ~96% of the world's top web servers, most smartphones (Android), and the International Space Station.
Learn these essential commands. You'll use them in the activity below.
lsList files and foldersls -lacdChange directory (navigate to a folder)cd /home/userpwdShow your current locationpwdmkdirMake a new directorymkdir my_projectcatDisplay contents of a filecat readme.txtcpCopy a filecp file.txt copy.txtmvMove or rename a filemv old.txt new.txtrmDelete a file. Use with care.rm temp.txtsudoRun a command as administratorsudo apt updatepingTest if a server is reachableping google.comtopShow live running processestopmanShow the manual for any commandman ls1. Why is Linux used on so many servers?
2. What is the difference between using a terminal and using a normal desktop interface?
3. How do people connect to and manage servers remotely?
4. What might happen if a server runs out of storage, memory, or power?
5. How are servers monitored and kept secure?
6. What is the difference between a virtual machine and a container?
7. What else about Linux or servers do you want to understand better?
Work through these on a real terminal if you can, or use them as a guide while watching someone else do them. Tick each one as you complete it.
There may be a visit to a local datacentre in Poole. Use the fields below to record what you see. If the visit doesn't happen, read the notes and record anything you learn about datacentres.
Have a go at writing some real code. Do your best and use the notes on the page to help you if you get stuck.
Q1. Which OS runs on most of the world's web servers?
Q2. What does 'cd' do in Linux?
Q3. What is SSH used for?
Q4. What does 'sudo' do?
Q5. In Linux permissions, what does 'r' stand for?
Q6. What command shows live running processes on a Linux server?
Reflection
Well done for completing your work experience at TeleFlow. Fill this in before you go. It's useful for your CV, personal statement, or future applications.
Great work this week. You've covered topics that most adults in non-technical jobs have never encountered. Whether or not you go into tech, understanding how networks, websites, servers, and AI work gives you a real edge. Keep being curious!