Review Sheet Final Term (Practical)
Review Sheet Final Term (Practical)
(2022-2023)
Y8
COMPUTING
Practical
Department of ICT/CS
Evidence 1
Take the screenshot evidence to show the primary key, field names and
data types used in the table and place it in your evidence file.
4. Import the file M2221DRIVES.csv as a new table in your database. Use these field names and
data types:
Evidence 3
Take the screenshot of relationship and paste it in your evidence file
7. Create a Query using Query Wizard, save the name as DrivesQuery and select the following fields
from M2221DRIVES table.
8. Make sure to select all the Models with Maker code should be SE, suitability should be Enterprise,
format should be SSD and price should be more than $200.
Evidence 4
Take the screenshot of of Query in design view and data sheet view both and
paste it in your evidence file.
Task 2:
9. Open MS access and create a database by the name YOB. import the file N2202SKIPPERS.csv Use
these field names and data types:
Evidence 5
Take the screenshot evidence to show the primary key, field names and
data types used in the table and place it in your evidence file.
11. Import the file N2202CLASS.csv as a new table in your database. Use these field names and data
types:
Evidence 6
Take the screenshot evidence to show the primary key, field names and
data types used in the table and place it in your evidence file.
13. Create a one-to-many relationship between Class_Code in the class table and Class in the skippers
table.
Evidence 7
Take the screenshot of relationship and paste it in your evidence file
14. Create a Query using Query Wizard, save the name as Yacht Query and select the following fields
from N2202SKIPPERS table.
15. Make sure to select all the skipper_name whose Make is Sevier Luna, skip_gender is female with
zero Handicap, group is yellow and points are less than 30.
Evidence 8
Take the screenshot of of Query in design view and data sheet view both and
paste it in your evidence file.
Micro bit
Y8-Computing 2022-23 Final-term Review (Practical) Page 5 of 11
Task 1:
Task 2:
11. Create a project with name for loop.
12. Take input for Button B.
13. Run First ten numbers on micro bit using for loop.
14. Show variable index as an output.
15. Test your program.
Evidence 9
Take the screenshot of coding area and paste in your evidence file.
Task 3:
16. Take input for pin 1 on micro bit.
17. Set index value from 0 to 3 using for loop.
18. Play tone middle C for 2 beats.
19. Subtract index value from number 4(or any number) as an output.
20. Test your program with random numbers in for loop.
Task 4:
21. Make a new project with name harry potter.
22. Make new variable with houses.
23. On start set houses list to text Gryffindor, Hufflepuff, Ravenclaw and Slytherin.
24. Take input for on shake and create a new variable with house index.
25. Set house index to random numbers from 0 to 3.
26. Show string house index.
27. Show string houses get value at house index
28. Test your program.
Evidence 11
Take the screenshot of coding area and paste in your evidence file.
Task 5:
29. Make a new project with name array.
30. On start set list to numbers 5,7 and 9.
31. Take input for button A and show number at index value 0.
32. Take input for button B and show number at index value 1.
33. Take input for button A+B and show number at index value 2.
34. Test your program with different inputs.
Evidence 12
Take the screenshot of coding area and paste in your evidence file.
Evidence 13
Take the screenshot of coding area and paste in your evidence file.
Python
Program 1:
1- Open IDLE python and define variable Marks.
2- Using an input function enter any number in marks.
3- If marks are greater than 80 then print “Excellent”.
4- Else print “you need more practice”.
5- save the program with name review p1.py and test your program.
Evidence 14
Take the screenshot of both shell mode & script mode and paste in your evidence file.
Evidence 15
Take the screenshot of both shell mode & script mode and paste in your evidence file.
Program 3:
Evidence 16
Take the screenshot of both shell mode & script mode and paste in your evidence file.
Program 4:
Evidence 17
Take the screenshot of both shell mode & script mode and paste in your evidence file.
Evidence 18
Take the screenshot of both shell mode & script mode and paste in your evidence file.
Program 6:
23- Make a list with numbers 35,89,72,105,120,135
24- If number is greater than 100 break the loop.
25- Display an output with numbers less than 100.
26- Save the program with name review p6.py
Evidence 19
Take the screenshot of both shell mode & script mode and paste in your evidence file.
Program 7:
27- Create a new program in IDLE python.
28- Add the scores 23,24,18,32,12 in the list, the data contained in a list can also be used to
perform calculations.
29- Make a program to add 24 and 32 to give the output 56
30- Make a program to subtract 12 from 32 to give the output 20
31- Save the program with name review p7.py
Evidence 20
Take the screenshot of both shell mode & script mode and paste in your evidence file.
32- Write a program that will generate Table of 6 using for loop 10 times and display an
output as follows:
6 X 1= 6
33- Save the program with name review p8.py
Evidence 21
Take the screenshot of both shell mode & script mode and paste in your evidence file.