Computing Flashcards
Python Programming
How do you make the turtle go forward, backward, right or left?
turtle. forward()
turtle. backward()
turtle. right()
turtle. left()
Python Programming
What angle would you put to make a shape with 6 sides?
60°
Databases
What is a complex query?
A query that searches for 2 or more criteria.
Networks and Hexadecimal
What are the denary, binary and hex place values?
Denary: 1, 10, 100…
Binary: 1, 2, 4…
Hex: 1, 16, 256…
Databases
What is a simple query?
A query that searches for 1 criteria.
Python Programming
What angle would you put to make a shape with 5 sides?
72°
Databases
What is a database?
A collection of data or information which is stored in a logical and structured way.
Networks & Hexadecimal
What is a node?
A computer connected to a network.
Networks and Hexadecimal
What is a router?
It sends data between networks and is needed to connect the LAN to the internet.
Databases
What are the 5 disadvantages of using a computerised database?
Can be expensive to set up if you have to get a professional to make it,
If there is a power cut, you can’t use it,
You need to have a computer,
Cannot carry it around with you - unless you take a computer,
And you often need training to learn how to use them.
My Digital World
What comes up when you search Cheddar -Cheese?
Websites that just have the word cheddar and not cheese.
Databases
What is a record?
All of the information about one person or one item. (A row of the table)
Networks and Hexadecimal
What are the parts of a typical data packet structure?
Data,
Error Check, Packet Header,
Sequence No., Return Address, Destination Address
Python Programming
What is a subroutine?
A set of code within a program that can be called at any time from the main program. Also known as a function.
Databases
What is a field?
One type or piece of information in a record. (A column of the table)
Python Programming
How do you make a subroutine?
def name_of_subroutine (): (Instructions indented)
name_of_subrountine ()
(To run the subroutine)
My Digital World
Name 5 ways of keeping safe online.
Be careful what you share online. Do not meet people you do not know in person. Use a complex password. Check your privacy settings. Talk about it.
Python Programming
How do you make a loop?
for i in range (number):
(instructions indented)
Networks and Hexadecimal
What is the difference between a hub and a switch?
A hub is not intelligent and sends data to every node connected to the network while a switch only sends data to the intended node(s).
A hub is cheaper but a switch will reduce network traffic and make it run faster.
Databases
What is a report?
A document (paper or electronic) that presents data in an easy-to-read professional format.
My Digital World
What are examples of a search engine?
Google
Bing
Microsoft Edge
Databases
What is a table?
A collection of all the database records on one subject.
My Digital World
What three things brake the Copyright, Designs and Patents Act 1988?
If you:
•Take people’s work (download music/films)
•Use people’s work (copy text/images from the internet for your school work)
•Steal people’s ideas (create a new vacuum cleaner with Dyson technology)
Without permission and/or without acknowledging the original creator.
Python Programming
Why do we use comments?
To help you and other other women wools looking at the code to understand what the code is doing.