GCSE COMPUTER SCIENCE Practical Programming using Python

Slides:



Advertisements
Similar presentations
New Student Orientation Registration System Stephen Nakamura EE496 Final Presentation Fall 2008.
Advertisements

The Online Activities Module OAM Describing the F-7 & F-7A.
Edit the text with your own short phrases. The animation is already done for you; just copy and paste the slide into your existing presentation. RegisterLogin.
Quick Start Guide. This 22 page introduction to the Financial Assessment Subsystem provides the user with a visual overview of the components of the system.
Updating Your Profile Press F5 to begin the slide show. Slides will automatically advance. February
© 2002 Railinc. All rights reserved. 1 Copyright © 2005 All rights reserved. Customized Parameter Trace.
Employee Self Service (ESS) Version Employee Self Service  access from any computer  view their elected withholding, earnings summary, check.
Tuen Mun Government Secondary School Computer Literacy Project-based Learning Group members : * Mo Yan Ki (32) Chen Ying Ying (5) Lee Wing Ki (27) Yeung.
Complete theory from last lesson… Put today’s date in the front of your book Read pages 46 and 47 of the textbook…
GCSE Computing#BristolMet Session Objectives# 20 MUST describe a database and discuss the legal implications of storing personal information SHOULD explain.
V 1.0Slide 1 Staff – Basic Info. V 1.0Slide 2 Staff – Basic Info Input the search criteria. Click search to start searching.
The link to the Custom Point Login is:
U1_a02_copyright text and images ADD NAME HERE. Insert below a copyright free IMAGE that could be used in your health and safety presentation.
V 1.0Slide 1 Staff - Training Information Click “Add” button to add a training record.
Do it now activity Activity: A travel agent is trying to create a database to collect information about people who are booking a flight. He is having a.
Pairus Admin Admin Panel Changes Required 1. Contents - Changes  Pairus Admin – Site Address Pairus Admin – Site Address  Fix logo at login screen –
LOGIN PAGE Login Page Support CRM:
Open Wikipedia at any page in the language you want to contribute (English or Swedish). Press Create account (Skapa konto). Enter username and password.
 Pages 3-5 – Login Process Pages 3-5 – Login Process  Pages 6-9 – Searching for a Child Pages 6-9 – Searching for a Child  Page 10 – Contacting the.
For Loop GCSE Computer Science – Python. For Loop The for loop iterates over the items in a sequence, which can be a string or a list (we will discuss.
Online Applications. Login / Register If a student has already registered then they may login with their username and password. If not registered they.
Employee Self Service (ESS) Version Employee Self Service  access from any computer.  view their elected withholding, earnings summary, check.
The Business Source Databases Basic Searching
Employee Self Service (ESS) Version 2.15.
GCSE COMPUTER SCIENCE Practical Programming using Python
Employee Self Service Lite Version
Journal of Mountain Science (JMS)
Web-based Information Science Education
A451 Theory – 7 Programming 7A, B - Algorithms.
Employee Self Service Lite Version
Computer Science A-level
Mail Merge for Lotus Notes and Excel User Guide
Employee Self Service Lite Version
Service begins here… Income tax software SAG INFOTECT PVT. LTD.
Mail Merge for Lotus Notes and Excel User Guide
RevConnect Ineligible Patient Custom Reports
Technical expert studying and writing helpful articles on antivirus and other security products.
Managing Student Test Settings
Employee Self Service (ESS) Version 2.20.
Monitoring Test Progress and Data Cleanup
Monitoring Test Progress and Data Cleanup
User Guide Portman Concur
Update Budget Steps Screenshots Purpose:
To the ETS – Crown Mineral Activity Online Training Course
User Guide Portman Livewire
This presentation has been prepared by Vault Intelligence Limited (“Vault") and is intended for off line demonstration, presentation and educational purposes.
View Award Profile Information
Adding and Editing Users
LiveWire Log in page TIPS
Add Budget Period Steps Screenshots Purpose:
Milestone Notification
InControl R2 Overview Running Reports.
HOW TO CREATE A CLASS Steps:
Create a Grant Continuation Proposal
QMS Quotation Management System.
Reception volunteers: How to use the membership administration system
Employee Self Service (ESS) Version
To the ETS – Crown Mineral Activity Online Training Course
Copy a Grant Proposal Steps Screenshots Purpose:
TPC-Global PARTcommunity
RiskMan Personal Delegates
Overview of Contract Association Batch Upload
Welcome! Crown Mineral Activity To the ETS – Crown Mineral Activity
Software Updation Start software, it will be displayed following main screen: Click on 'Activate (2017) or [ Go to 'More Services' →'Software Information→
Errors.
Apps4.Pro Office 365 License Manager
NARFE’S NEW Online Activities Modules
Registration Stand By Me
Computer Science A-level
Presentation transcript:

GCSE COMPUTER SCIENCE Practical Programming using Python Controlled Assessment Preparation – Task 3 – Option A

Jose needs to search for and display football fixtures. Option A: Practice 1 Jose needs to search for and display football fixtures. The program will search the file footballFixtures.txt to select and display information about fixtures. The footballFixtures.txt file shows Fixture Number, Date, Time, Venue and Capacity. It must provide a prompt for the user to enter the fixture number. It must find all of the fixture details for the entered fixture number Below is a suggested format for displaying the data. Fixture Number: <the fixture number> Date: <the fixture date> Time: <the fixture time> Venue: <the venue> Capacity: <the capacity>

Searching and Displaying the Data Basic Code Use the code below to help you create a solution Importing the Data Searching and Displaying the Data This is part of the solution to the task on previous slide. The final line is unfinished.

Paste a screenshot of your solution below: Option A: Practice Task 1 Develop a program that meets the requirements of Option A Practice Task 1 Save as: Task3A1 Paste a screenshot of your solution below:

Validation using a range check (1-30) for the fixture number Option A: Practice 1 with Validation Use the additional code below to add in validation for the fixture number Validation using a range check (1-30) for the fixture number By turning your option A into a subprogram you can get the code to restart easily.

Paste a screenshot of your solution below: Option A: Practice Task 1 with Validation Update your code to include the validation on the previous slide Paste a screenshot of your solution below:

A doctor needs to search for and display personal information. Option A: Practice 2 A doctor needs to search for and display personal information. The program will search the file personalDetails.txt to select and display information about people. The personalDetails.txt file shows ID, Forename, Surname, Phone Number and Email Address. It must provide a prompt for the user to enter an ID number. It must find all of the personal information for the entered ID number Below is a suggested format for displaying the data. ID Forename Surname Phone Number Email Address ------------------------------------------------------------------------------------------------------ <id> <forename> <surname> <phonenumber> <emailaddress>

Paste a screenshot of your solution below: Option A: Practice Task 2 Develop a program that meets the requirements of Option A Practice Task 2 Save as: Task3A2 Paste a screenshot of your solution below:

Option A: Practice 3 A gym needs to search for and display information about their instructors. The program will search the file gymInstructors.txt to select and display information about gym instructors. The gymInstructors.txt file shows ID, Forename, Surname, Class and Phone Number. It must provide a prompt for the user to enter an ID number. It must find all of the class information for the entered ID number Below is a suggested format for displaying the data. ID Forename Surname Class Name Phone Number ------------------------------------------------------------------------------------------------------- <id> <forename> <surname> <classname> <phonenumber>

Paste a screenshot of your solution below: Option A: Practice Task 3 Develop a program that meets the requirements of Option A Practice Task 3 Save as: Task3A3 Paste a screenshot of your solution below: