Font size
WorksheetsTRAINING
Total questions: 146
Worksheet time: 1hrs 19mins
During a computer class, Michael asked his teacher what HTML stands for. Can you help him understand?
Hyper Text Markup Language
Hyperlink and Text Markup Language
High-Level Text Markup Language
In a school project, James needs to ensure that each student in his group has a unique identifier for their work. What is the purpose of the 'id' attribute?
To create a unique identifier for an element.
To style an element.
To link to another page.
Aiden is organizing a school event and needs to create a list of activities. What does the
- tag create for his event planning?
An unordered list
An ordered list
A definition list
Emma wants to gather feedback from her classmates about a recent project. What is the purpose of the
To create a form for user input.
To display a section of a webpage.
To create a link.
Aria is filling out a registration form for a workshop. What does the 'action' attribute in the form specify?
The URL where the form data is sent.
The method of form submission.
The type of input fields.
Abigail is using a web application to check her grades. What does the 'GET' method do in this context?
Sends data to the server.
Retrieves data from the server.
Deletes data from the server.
Sophia is designing a webpage for her school project. She wants to ensure that a specific section of her webpage has a defined width. What is the purpose of the 'width' property in CSS?
To set the width of an element.
To set the height of an element.
To set the margin of an element.
Aria is designing a webpage for her art portfolio. She wants to make the images look more appealing by rounding the corners of the image containers. What does the 'border-radius' property do?
Rounds the corners of an element.
Sets the border width.
Sets the border color.
James is designing a webpage and wants to make a button partially see-through so that the background can be slightly visible through it. What is the purpose of the 'opacity' property?
To set the transparency level of an element.
To set the visibility of an element.
To set the position of an element.
While designing a website for her school project, Charlotte wants to enhance the user experience. She wonders, what does the ':hover' pseudo-class do?
Applies styles when the mouse hovers over an element.
Applies styles when an element is clicked.
Applies styles when an element is focused.
Samuel has a collection of books that he keeps on a shelf. What is the purpose of the 'push()' method in JavaScript when he wants to add a new book to his collection?
To add an item to the end of an array.
To remove the last item from an array.
To find an item in an array.
Harper is learning about functions in her programming class. What does the 'return' statement do in a function?
Exits the function and optionally returns a value.
Calls another function.
Declares a variable.
Charlotte is planning a picnic and wants to decide whether to pack sandwiches or salads based on the weather. What is the purpose of a conditional statement in her planning?
To execute different blocks of code based on different conditions.
To repeat a block of code.
To define a function.
During a computer class, Priya asked her teacher, "What does HTML stand for?"
Hyper Transfer Markup Language
HyperText Markup Language
High-Tech Multimedia Language
Hyperlink Text Management Language
During a web design class, Anika asked her classmates, "What does CSS stand for?"
Cascading Style Scripts
Creative Style Sheets
Cascading Style Sheets
Computer Style Selections
Aria is designing a webpage for her school project. She wants to make the text more readable by adjusting the font size. How can she control the font size in CSS?
Using the `font-style` property
Using the `font-size` property
Using the `text-transform` property
Using the `font-family` property
Elijah is designing a webpage for his school project. He wants to adjust the size of the images and text boxes on his page. How can he change the width and height of these elements in CSS?
Using the `width` and `height` properties
Using the `color` property
Using the `text-align` property
Using the `margin` property
In a web development class, Abigail is learning about HTML and CSS. She wonders, what are classes and IDs used for in HTML and CSS?
Adding comments to the code
Applying styles to specific elements
Creating hyperlinks
Changing the font color
During a web development class, Kai asked his teacher, "Which HTML tag is used to create a hyperlink?"
- a) `<link>`
- b) `<href>`
- c) `<a>`
- d) `<url>`
Avery is organizing a study group and wants to create an ordered (numbered) list of topics to discuss during their meeting. Write HTML code to create this list with three items and explain how it works.
Benjamin wants to emphasize a certain part of his essay by making the text appear in italics using CSS. How can he achieve this?
font-weight: italic;
font-style: italic;
text-decoration: italic;
font-variant: italic;
Oliver is designing a webpage for his school project. He wants to ensure that there is enough space between the text and the border of the text box. Which CSS property should he use to control the space inside the element, between its content and its border?
margin
padding
border
width
In a school project presentation, which HTML heading element should Scarlett use to represent the highest level of importance for her main title?
- a) `<h1>`
- b) `<h2>`
- c) `<h3>`
- d) `<h4>`
Aria is designing a website for her art portfolio and wants to ensure that the background image fills the entire container. How can she achieve this in CSS?
background-size: contain;
background-size: cover;
background-size: 100%;
background-size: auto;
During a web development class, Mason is trying to display an image of his favorite animal on his website. Which HTML tag should he use to display the image?
- a) `<img>`
- b) `<picture>`
- c) `<image>`
- d) `<imgsrc>`
Nora is creating a website for her school project. She wants to know what the purpose of the <head> tag in HTML is.
The purpose of the
tag in HTML is to define the navigation section of the HTML document.The purpose of the
tag in HTML is to define the footer section of the HTML document.The purpose of the
tag in HTML is to define the head section of the HTML document.The purpose of the
tag in HTML is to define the body section of the HTML document.Aiden is designing a webpage for his school project and wants to change the color of the text to make it more appealing. How can he change the color of text using CSS?
'font-color' property
'text-color' property
'color' property
'background-color' property
During a web development class, Aria asked her teacher about the purpose of the <body> tag in HTML. What did the teacher explain?
The purpose of the
tag in HTML is to define the header of an HTML document.The purpose of the
tag in HTML is to define the navigation menu of an HTML document.The purpose of the
tag in HTML is to define the footer of an HTML document.The purpose of the
tag in HTML is to define the main content of an HTML document.During a school project presentation, Kai wants to ensure that the title of his presentation is visually appealing. How can he center align the text using CSS?
text-align: left;
text-align: right;
text-align: justify;
text-align: center;
Emma is designing a webpage for her school project and wants to center align the title of her project. How can she achieve this using CSS?
text-align: right;
text-align: center;
text-align: justify;
text-align: left;
Daniel is building a website for his school project. He needs to understand the difference between HTML and CSS.
HTML is used for styling and layout, while CSS is used for structuring content.
HTML is used for structuring content, while CSS is used for styling and layout.
HTML and CSS are the same thing.
HTML is used for creating dynamic web pages, while CSS is used for static web pages.
Evelyn wants to make her website more visually appealing. How can she add a background color to an HTML element?
By using the CSS 'color' property.
By using the CSS 'background-image' property.
By using the HTML 'background' attribute.
By using the CSS 'background-color' property.
In a school project, Samuel needs to organize his HTML code for a webpage about his favorite books. What is the purpose of the <div> tag in HTML that he should use?
The purpose of the
The purpose of the
The purpose of the
The purpose of the
Mason wants to start a new art project on his computer. How does he create a new document/canvas?
File > Save
File > Open
File > New
File > Export
During a design class, William noticed a collection of icons on the screen. What is this image called?
Tool Options
Menu
Toolbox
Navigation Window
While working on a project, Aiden realized he couldn't find his toolbox. What menu item lets him reopen it?
File
Image
Layers
Windows
While designing a logo for his new business, Mason needs to create a circle shape. To achieve this, he should use the
Rectangle tool
Ellipse tool
Lasso tool
Paths tool
Lily is working on a digital art project and wants to enhance her image. Opening/Adding a new layer lets you:
Add a transparent background.
Layer separate images on top of each other to edit individually.
Remove blemishes from an image.
Resize the layer.
Nora is working on her digital art project and needs to choose the right tools. What is in the image she is looking at?
Toolbox
Tool Options
Brush Options
Layers
While working on her project, Charlotte realized she made a mistake and wanted to undo a previous command. She can:
click ctrl + z
click ctrl + c
click ctrl + f
click ctrl + p
When Hannah draws a shape on a layer in her graphic design project, she selects it by:
clicking ctrl + z
clicking enter
clicking file > new
clicking shift
Avery is working on a project and needs to edit a photo. What does this tool do?
Crop Images
Draw a Rectangle
Scale the Image Size
Move
When Abigail wants to save an image she's edited so it can be viewed by others, she goes to:
File > Save
File > Open
File > Export
File > Print
Avery is working on a graphic design project in GIMP and wants to save her progress so she can reopen and edit it later. To do this, she goes to:
File > Save
File > Open
File > Export
File > Print
Maya is working on a project where she needs to edit some photos. What does this tool do?
Crop Images
Heal Blemishes
Erase
Move
While working on her art project, Anika discovered that the clone tool allows her to:
Create a shape
Change the size
Paint with a brush
Duplicate an area.
Emma wants to submit her artwork from GIMP to Google Classroom. The fastest way for her to get the file there is to click:
Add or Create>Google Drive >Recent Documents>Turn In
Add or Create >Link>Insert Link>Upload>Turn In
Add or Create >File>Select from your Computer>Upload>Turn In
File>Save As>Turn In
While working on a project, Isla noticed a window that helps manage different images in her design software. What window is this?
Brush Options
Tool Options
Color Options
Layers Window
David is working on a project where he needs to resize an image for his presentation. He wonders which tool he should use to accomplish this task.
Scale Tool
Alignment Tool
Crop Tool
Gradient Tool
While working on a digital art project, Hannah came across a tool that allows her to blend colors smoothly. What tool is this?
Warp Tool
Heal Tool
Clone Tool
Gradient Tool
In this image, is the foreground color black or white
Black
White
Adding a layer mask lets you:
Blur an area of an image.
Clone an area of an image.
Modify a layer without changing the original.
Add text to the layer.
The Tool Options box:
Is the same for every tool.
Changes depending on what tool you select.
GIMP has ______ main selection tools
1
2
3
4
One of the main advanced selection tool is ______
Free Select Tool
Pixel Select
Select by Color
Fuzzy Select Tool
The _______ tool is used to select parts of an image in a rectangular or square shape
Cube Select
Free Select
Square Select
Rectangle Select
The Ellipse Select Tool is used to select parts of an image in an oval or ____ shape
Circular
Star
Triangle
Free Select
The ______ tool allows you to draw a free-hand selection
Rectangle Select
Ellipse Select
Free Select
Fuzzy Select
What does this tool do?
Scale the Image Size
Draw a Rectangle
Move
Crop Images
Which selection tool matches the following descriptions: Use to select a similar color using one click
Lasso Tool
Magic Wand
Select by Color
Path Tool
What represents the area that is selected?
Dancing Dashes
Skipping Lines
Dancing Dots
Marching Ants
How can you select the opposite of selection ?
select 2 options that are possible
Edit > Invert
Select > Invert
Right Click > Select > Invert
Color > Invert
What are the different advanced selections ?
What tool will allow you to give your 2D shape a 3rd Dimension?
Which tool will allow you to add cosmetic details (like paint and textures) when using Google Sketch-Up?
IF you needed to create a triangle, which tool below would be best to select in Google Sketch-Up?
Which tool will allow you to insert (width, height, and length)?
Tape Measure Tool
Graphic Tool
Dimension Tool
3D Warehouse Tools
You need to create a cylinder. Which of the following tools on the image provided would be best to start with?
Circle
Pie
Line
Arc
You need to eliminate the person in the scene. Which tool would be best to select in order to accomplish this task?
Line
3D Warehouse
Eraser
Undo
You need to design the shape for a 'bump out' for the top pat of a roof on a house (tutorial #1 you completed this unit). Which tool is best for the job?
Polygon
Push Pull
Make Component
2 Point Arc
You need to raise a line in the middle of a rectangle you created. (Tutorial #1 you completed). Which tool is best for the job?
Line
Move
Arc
Select
Which of the following is the "PAN" icon in Google Sketch-Up?
After designing a box you need to add something to the back. What tool should you select to ROTATE the object?
You make a mistake on your design as you attempt to create a rectangle. What should you do?
Ignore it, it will go away eventually
Go to the tool option from the menu and select help
Go to the menu bar and select undo
Redo the line over top of the existing one
Which career choice would not benefit from having access to Google Sketch-Up?
landscape architecture
pastry chef
mechanical engineering
interior design
If a student needs to learn how to use Google Sketch Up, what is the best way to get the basics?
read a book about google sketch-up
ask a friend questions about it
take a quizizz about google sketch-up
complete a self-paced tutorial
In Google Sketch-Up, the ZOOM option allows you to...
make an image 100% larger at a time
move in and out of the model on the screen
see fine details made with the line tool
move to the opposite side of a model
What is the following tool show?
Arc
Triangle
Red Line Special
Semi-circle
This allows you to move the screen from side to side and center around a new object in Sketch-Up....
What tool will allow you insert pre-made models of different objects in a model?
3D Warehouse
Warehouse Mouse
Model Components
Windows Bar
Who is the creator of Sketch=Up?
Windows
Microsoft
Iluvturtles.com
Google Sketch-Up saves designers money but eliminating the need for multiple sketch papers, pencils, and drafting tools.
True
False
Hot Coffee
Engineering
Google Sketch-Up is easy to use!
Yes
No
Maybe if I understood it more...
Please give me graph paper, a ruler, and a pencil!
Google Sketch-Up could be used instead of?
Design Plan with a Detailed Journal
Tools, Devices and Hardware
Graph Paper, Ruler and Pencil
A List of Supplies Needed
Which company created Sketch-Up?
HP
Yahoo
Apple
What program can create a digital replica of an item?
Pro Cad
Sketch Up
Robot C
Which is not correct?
Google Sketch Up can only be accessed once a graph paper has been made
Google Sketch Up replaces a graph paper
Google Sketch Up can create a blue print
Google Sketch Up can be used to create an item which could be 3D printed
Google Sketch Up....
Rocks
Is the worst
Saves paper
The answer to my problems
What function does this icon represent?
Center align
Font name
Increase font
Underline
What function does this icon represent?
Font color
Font name
Increase font
Bold
What will happen to your Google Doc if you forget to save?
Nothing because Google Docs auto saves
Your document will be lost forever
Google Docs will send you an email
Who knows?
In a Google Doc there is a vertical blinking line. What is this line called?
Undo
Blinking line
Tab
Cursor
In order to find your document quickly and easily you should always...
Color code the document
Name your document
Print it out and carry it around with you
Send yourself an email
Which icon lets you insert an image?
Add a picture
Add text
Change text size
How can you copy something from a slide?
Use these icons to
change text size
change the font
add video to a slide
create lists
What is an animation on a slide?
Any animal.
A transition.
A cartoon.
Text boxes and pictures that move into or out of the slide.
Fill with color
To edit a video clip click on video and then click
undo
Transition
animate
format options
True or False: Transitions and Animations are only visible in slideshow mode
TRUE
FALSE
Click this icon to
crop an image
duplicate an image
delete an image
recolor an image
How do you change a form theme?
Click on the paint palette
Click on the settings icon
Click on the eye icon
Click on the three dots
What is the advantage of a dropdown list compared to a multiple choice question?
The checkboxes allow more than one selection
The multiple choice question allows more than one selection
The dropdown list allows more than one selection
the dropdown list saves space on the form
Which answer type is the best for creating a chart or graph?
ten seconds
10 s
10
10 sec
What sort of question type would you use when asking for a person's name?
Paragraph
Linear Scale
Multiple Choice
Short Answer
Is it possible to add an image into a form?
Yes
No
Only if you have a camera
When would you use a checkbox type question?
When you have a yes/no question
When you want to rate something
When you want more than one response
When you want one response only
How do you make a question "required"
Put it first in the list of questions
Write "REQUIRED" in the name of the question
Click the button that says "Required"
Make the title of the question BOLD
What does the icon underneath the red arrow do?
It deletes the question
It changes the type of question
It deletes the form
It is a chef's hat and leads to a secret kitchen
The red arrow points to an icon. What does that icon do?
It adds a sandwich to the form
It creates a new question
It adds a new section
It copies the form for others to use
The red arrow points to another icon. What does this icon do?
It copies the question
It duplicates the question
It erases the question
It deleted the question
Google drive is a
Video hosting service
Instant messaging service
File storage device
Web hosting service
Google drive was developed by?
Google Inc
Microsoft Inc
Apple Inc
Amazon Inc
When was Google drive launched?
2014
2010
2009
2012
What is the amount of free storage space offered to all users by Google drive?
20gb
15gb
10gb
5gb
Google drive is written in all these languages except?
Python
Objective C
WxPython
PHP
All of these platforms are supported by Google drive except?
A. Windows
B. IOS
C. Chrome OS
D. None
Google Drive is only available for Android.
Kitkat or later versions
Marshmallows or later versions
Jean Bean or later versions
Lollipop or later versions
Which of these services do not count towards the Google Drive storage limit?
Google docs
Gmail attachments
Google photos
Gmail messages
In Google drive, the owner of a file or folder is
The creator
The one with the link
The one opening the file
All of the above
How can files be shared on Google drive?
A. Creating and sharing the link
B. Sending the files
C. Using email addresses
D. All of the above
GIMP has ______ main selection tools
1
2
3
4
One of the main advanced selection tool is ______
Free Select Tool
Pixel Select
Select by Color
Fuzzy Select Tool
The _______ tool is used to select parts of an image in a rectangular or square shape
Cube Select
Free Select
Square Select
Rectangle Select
The Ellipse Select Tool is used to select parts of an image in an oval or ____ shape
Circular
Star
Triangle
Free Select
The ______ tool allows you to draw a free-hand selection
Rectangle Select
Ellipse Select
Free Select
Fuzzy Select
What does this tool do?
Scale the Image Size
Draw a Rectangle
Move
Crop Images
Which selection tool matches the following descriptions: Use to select a similar color using one click
Lasso Tool
Magic Wand
Select by Color
Path Tool
What represents the area that is selected?
Dancing Dashes
Skipping Lines
Dancing Dots
Marching Ants
How can you select the opposite of selection ?
select 2 options that are possible
Edit > Invert
Select > Invert
Right Click > Select > Invert
Color > Invert
Similar Resources on Wayground
150 questions
Flight Management System
Worksheet
•
9th - 12th Grade
150 questions
Tin học cơ bản – Hệ điều hành Windows (Trang 27–29/75)
Worksheet
•
10th Grade
146 questions
C-programming(Theory)
Worksheet
•
9th Grade - University
146 questions
Mastering Present Perfect Continuous
Worksheet
•
10th Grade
150 questions
Code.org Test 1
Worksheet
•
9th - 12th Grade
150 questions
PM 2025-FINAL
Worksheet
•
9th Grade - University
151 questions
Year 10 Big Fat Creative Media Quiz of the year
Worksheet
•
9th - 12th Grade
150 questions
RECF Pre-Test 1
Worksheet
•
8th - 12th Grade
