WorksheetsCS Unit 1, Programming part 1: Sequences
Total questions: 18
Worksheet time: 9mins
What does the acronym IDE Stand for?
Interactive Data Entry
Integrated Development Environment
International Development Effort
Institute for Digital Education
What software/website do we use to write and test our programs in an efficient, easy, and assisted way?
Operator
Executer
Assembler
IDE
Which one is NOT an advantage of the IDE?
It colors the code, making it easier to read
It will point out your error
It can automatically write the code for you
It will auto-indent, and sometimes auto-complete the code
Which one is NOT an example of a high-level language?
Assembly
Which one is NOT an example of a low-level language?
Binary
What's the name of the computer language that uses only 0's and 1's?
Assembly
Low-level
Mnemonic
A sequence of instructions to perform a specific task with a certain name.
Function/Subroutine
Variable
Syntax
Valuable
The program will run, but won’t do what the programmer expected. These are tricky to spot as they are not picked up by the IDE, and they don't make sense to the program.
Logical error
Machine error
Function error
Sensible error
Which one is an example of a Python function/subroutine?
def hello():
hello()
hello="What's up"
print(2+8)
import python
Which one is NOT an example of a value assigned to a variable?
x=72
name="Mohammed"
hey=input("how are you?")
print("What's up")
Which one is a function that asks the user to insert the value.
name=input("What's your name")
x=insert("how old are you")
hey(input("Hello"))
print("Are you here?")
What's the value of Boolean data type?
Which one is NOT a name reference for a decimal number in programming?
integer
real
Which one is an INCORRECT way of printing out a message?
print(f"Hello there {name}")
print("total is:",total)
print="I'm happy today"
print("not today")
A value type that is always text, it can include numbers but they will be read as text.
Text
Real
(Tricky) A universal language that's used between programming languages to interpret and read the code
Translator
Pseudo code
English
Compiler
Which one is an example of an algorithm?
We visually represent an algorithm or programs by using?
Drawing
Graphs
