Font size
WorksheetsComputer Software
Total questions: 96
Worksheet time: 48mins
What is this app called?
SoundCloud
Messanger
Poppy Playtime
YouTube
What is a software that has no ads?
Google Chrome
Safari
Brave
Firefox
Which of the following is a benefit of 3D printing over traditional manufacturing?
Larger items can be produced
More precise angles
Wider variety of materials can be used
Consumes less material
Which of the following processes does 3D printing use?
Manual
Additive
Subtractive
Digital
Which component is responsible for reformatting print jobs so that the printer can understand and process them?
Print Manager
Print driver
Print Spooler
Print queue
Jessica has connected her new printer to her Windows 10 computer, but Windows is not recognizing it. What should she do?
Power cycle the printer
Reset the USB cable
Install the latest driver
Restart Windows
Where is the BEST place to obtain the latest printer driver?
Manufacturer's website
Printer reseller
Windows Update
Microsoft's website
Windows stores print jobs in a temporary file on the hard drive. What is this file called?
Print Spooler
Print driver
Print Manager
Print queue
Where would you go to cancel a print job?
Print Manager
Print queue
Print Spooler
Print driver
Which of the following is NOT an example of a web browser?
Microsoft Word
Mozilla Firefox
Microsoft Edge
Google Chrome
When composing an email message, why might you want to use the Bcc field?
To include extra-long email addresses
To clarify the overall purpose of the message
To copy the email confidentially
To include email addresses of newly hired employees
What is the name of the large background area of the Windows environment that holds icons for files, folders, and applications?
Background
Window
Desktop
Home Screen
What is this computer software called?
Google Docs
Google Classroom
Google Meet
Google Slide
What is this computer software called?
Google Docs
Google Classroom
Google Meet
Google Slide
What is this computer software called?
Google Docs
Google Classroom
Google Meet
Google Slide
What is this computer software called?
Google Docs
Google Classroom
Google Meet
Google Slide
What is this computer software called?
Google Chrome
Google Classroom
Google Meet
Google Slide
The software you use to see your lesson is ..
The software you use to do video conference is ..
The software you use to browse the internet is ..
The software you use to write assignment is ..
The software you use to do presentation is ..
What is this computer software called?
Google Chrome
Google Classroom
Youtube
Google Slide
What is this computer software called?
Google Chrome
Google Classroom
Jamboard
Google Slide
What is this computer software called?
Google Chrome
Google Classroom
Google Hangout
Google Slide
What is this computer software for?
Video conference
See lesson
Chat
Presdentation
What is this computer software for?
Presentation
See lesson
Drawing
Chatting
what data type is "hello"?
string
float
Boolean
integer
what data type is "12"
string
float
Boolean
integer
what data type is "True"?
string
float
Boolean
integer
what data type is "1.2"?
string
float
Boolean
integer
what is an example of definite iteration?
if loop
while loop
parameter
array
what is the order in which instructions occur and are processed?
sequence
selection
iteration
what sub routine returns a value?
function
Protocol
what is the character position of "o" in "song"?
0
3
2
1
Can a variable value be changed?
yes
no
maybe
What is code called which is write for people to understand it?
binary
pseudocode
python
easy code
What is python named after?
the snake
a random word
a Pokémon
Monty Python
What sign is used to declare a variable?
>=
!=
=!
=
What is the greater than sign?
>
<
=
<=
Who's the best computing teacher?
Mr Dolan
Mr Thorn
Mr Glover
Mr Jack
_ iteration repeatedly executes a section of code until a condition is met
(a)
What is an algorithm?
a problem in your program
a math equation
a list of steps to complete a task
a dance move
Which is an example of an algorithm?
brushing your teeth
making a sandwich
falling and getting back up
singing
What is a coding bug?
a cockroach
a butterfly
a really good thing in computers
a problem or mistake in your program
What is debugging?
finding and fixing a problem in your program
calling a bug exterminator
spraying bug spray
persistence
Look at the code. Where is the bug?
Step 1
Step 2
Step 3
Step 4
Look at the picture. Which block will help Laurel pick up the jewel?
move forward
repeat
turn right
collect
Look at the picture. What will happen when you press run?
turn right 4 times
turn right 2 times
move forward 4 times
collect 4 times
What is persistence?
giving up when you cant do something
when you are hungry
never giving up
when you get upset
What are some things that will help you calm down when you feel frustrated?
take deep breaths
count to 10
pray
scream and yell
Which character did we NOT work with on code.org?
What is pair programming?
working in a group
Working with a partner
working on your own
having a twin
Complete choosing the missing code for hyperlinks:
<a ____ "https://www.w3schools.com">This is a link</a>
href=
style=
<p>
img src=
Specify an alternate text for the image. Choose the missing section of the code:
<img src="w3schools.png" ____="w3schools Logo">
alt
href
img
src
Use the correct HTML code to set the color of the paragraph to "blue":
<p (a) ="color:blue;">This is a paragraph.</p>
Use the HTML code to set the font of the paragraph to "courier".
<p style=" (a) -family:courier;">This is a paragraph.</p>
Use HTML code to center align the paragraph. Choose below the correct missing word:
<p style="text-____:center;">This is a paragraph.</p>
href
align
center
img
Use HTML code to set the text size to 50 pixels. Choose the correct missing word on the code:
<p style="font-_____:50px;">This is a paragraph.</p>
width
height
size
href
Use HTML code to set the background color of the document to yellow.
<body style=" (a) -color:yellow;">
Use the HTML code to add a heading in size 1. Type the correct missing character:
<h1>This is a heading< (a) h1>
Use the HTML image attributes to set the size of the image to 250 pixels wide and 400 pixels tall:
<img src="scream.png" width="250" ____="400">
align
center
height
tall
Use HTML code to set the size of the image to 250 pixels wide and 400 pixels tall. Type them in the right order separeted using a coma:
<img src="scream.png" style="width:___;height:___;">
(a)
What is coding?
A set of instructions given to a computer
Programming Language
Scratch, AppInventor and Python
A list of procedures
What is a programming language?
A computer language used to communicate with computers
A language used to write instructions to a computer
A language in which programmers talk to each other
None of these
How many programming languages are there?
3
5
10
More than 10
__________ is the process of finding errors and fixing them within a program.
Coding
Debugging
Compiling
Uploading
Rockets are programmed using a computer.
True
False
Which of the following is not a programming language?
Scratch
Python
Java
Windows
What is a variable?
A place in memory to store values
The length of a computer program
A value that stays the same throughout the program
A value which may vary within the program
Which symbol is used in Python to assign values to a variable?
!=
#
=
==
In Python, adding spaces at the beginning of a line of code is called
Indentation
Margin
Spacing
What is a data type that can only be True or False?
integer
float
boolean
string
Which statement will check if a is equal to b?
if a==b
if a=b:
if a!=b:
if a==b:
Which keyword is needed at the start of a function declaration?
start
for
def
Which of the following are comparison operators in Python?
==
!=
>
<
>=
<=
All of these
What do you mean by Iteration?
Procedure
Sequencing
Repetition
Assignment
while 1==2:
How many times will this loop run?
0
1
2
Infinite
A step by step instruction is called_______
Programming
Program or Script
Programmer
A person who writes programs is known as __________
Programming
Program
Programmer
_________ is one of the easiest computer language.
English
Hindi
Scratch
______ is the graphic character that moves on the stage.
Script
Sprite
Title bar displays the ______ of the project.
title
menu
tools
Cat is by default sprite in Scratch.
True
False
The area where sprite performs action is known as ______
Sprite
Stage
Script
Scratch is a programming language which is developed at MIT by ______
Mitchel Resnick
Steve Jobs
Charles Babbage
_______ is the area where we write step by step instructions or script to perform any action.
Script Area
Stage
Which of the following are the components of Scratch? (Select multiple options)
Green Flag
Sprite
Script Area
Standard Toolbar
Blocks Palette
1. What is the ICON of Scratch Program?
Lion
Cat
Spider
Tiger
Characters in Scratch Program are called -------------------
Sprites
Animations
Scratch is a ---------------------------
Programming language
English Language
The default sprite appearing on the stage is a -------------
kangaroo
cat
In Scratch, the area where the sprites perform is called the ----------------
canvas
document
stage
We cannot add many sprites on the stage.
false
true
The ------------- is the image that fills up the background.
sprite
backdrop
A Computer program is a set of instructions or commands
yes
no
