NEW
Font size
WorksheetsSkills Check: Canva and JavaScript
Total questions: 30
Worksheet time: 16mins
What does this icon mean?
Duplicate
Position
Transparency
Delete
what is a Graphic Design?
The art or skill of combining text and pictures in advertisements, magazines, web, video or books.
The action or business of promoting and selling products or services
The work of doing research, design, programming, and testing of computer software.
A type of design whose products are to be appreciated primarily or solely for their imaginative, aesthetic, or intellectual content.
What is a key feature of Canva's free version?
Advanced analytics
Basic design tools
Unlimited storage
Custom coding
What type of content can be created using Canva?
Text-based novels
Visual content
Audio tracks
Scientific formulas
Who primarily benefits from Canva's templates due to time constraints?
Marketers
Educators and students
Small businesses
Individuals
What type of tool is Canva described as?
Video editing tool
Graphic design tool
Data analysis tool
Programming tool
Which of the following is NOT a method to sign up for Canva?
Google account
Facebook account
Phone number
What can you create using Canva?
Social media designs
Office documents and presentations
Simple website pages
All of the above
How can you add animations to a Canva design?
Select the element and go to Animate
Click on the play button in the top right corner
Use the share button to get an online link
Go to Download to export the project
How can you edit a photo in Canva?
Go to Create a design, Edit photo
Apply effects, color corrections, and crop
Open it in a new Design project to add elements
All of the above
What are the commends that Karel can do?
Move();
Turnleft();
Putball();
Takeball();
turnLeft
move
putBall
takeBall
takeBall();
putBall();
turnLeft();
move();
Move;
Turnleft;
Putball;
Takeball;
Which code will put Karel in the position shown in second world?
putBall(); putBall(); move(); move();
move(); putBall(); move(); putBall();
putBall(); move(); putBall(); move();
move(); putBall(); putBall(); move();
What can be used to teach Karel to turn right?
Functions
Variables
Dog Treats
Karel can already turn right
How many times should the start function be called in a program?
0
1
2
However many times you like
What is a code comment?
A way to teach Karel a new word
A way to give notes to the reader to explain what your code is doing
A message to your teacher in code
A place to write whatever you want in your code
What is programming?
a set of related activities
someone who knows how to program
giving the computer a set of commands
a language where the codes are written in text
Programming is the same thing as coding.
True
False
What is a "bug" in programming?
an error in a code
a scratch on the screen
something is wrong with the computer
none of the above
What is "debugging" in programming?
a programming language of the web
an error in a code
giving the computer a set of commands
the process of finding and fixing errors in programming
Which of these Karel commands are written correctly?
move;
turnLeft();
putball
takeit();
Which line(s) contains the bug?
1 and 3
3 only
5 only
3 and 5
What is the right way to write the function:
makePancakes (Clue: this pancake will be made by putting 3 balls)
function makePancakes(){
putBall();
putBall();
putBall();
}
function makePancakes()
putBall();
putBall();
putBall();
function makePancakes: {
putBall();
putBall();
putBall();
}
function makePancakes(){
putBall();
}
Why do we use functions in programming?
Break down our program into smaller parts
Avoid repeating code
Make our program more readable
All of the above
If Karel is facing South and the code:
turnLeft();
turnLeft();
runs; which direction is Karel facing now?
North
South
East
West
Which of the following is a correct description of the `turn_around()` function?
It makes Karel move in a circle
It makes Karel turn 180 degrees
It makes Karel jump
It makes Karel pick up an object
