
Tournament 2 - A

Quiz
•
Computers
•
6th - 12th Grade
•
Hard
Brenda McLachlin
Used 4+ times
FREE Resource
15 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
True or False: Some numbers are too big or too small for the computer to understand
True
False
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
I am trying to draw a grid of squares. What should go in the empty line?
for (var i = 0; i < 400; i += 40) {
for (var j = 0; j < 400; j += 40) {
}}
rect(i, j, 20, 20);
rect(j, i, 20, 20);
rect(i * 40, j * 40, 10, 10);
rect(j, i, 40, 40);
3.
MULTIPLE SELECT QUESTION
45 sec • 1 pt
Select everything you need to make a recursive function:
recursive call (call itself inside the function)
end condition (when does it stop calling)
start condition (when does it start calling)
passed parameters
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
True or False: The number of lines of code a project has is directly connected to how good the code is
True
False
5.
FILL IN THE BLANK QUESTION
1 min • 1 pt
What is the length of the array nums?
var nums = [];
for (var i = 0; i < 10; i++) {
nums[i] = [];
for (var j = 0; j < 10; j++) {
nums[i].push(random(100));
}}
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What's wrong with this function?
var r = function(num) {
ellipse(200, 200, num, num);
r(num - 10);
};
It will never end
The ellipse won't appear because there is no fill
Function names have to be more than one letter long
Nothing - it will run fine
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is an appropriate case for this switch?
switch(mouseX > 200) {
case true:
case 150:
case mouseX:
case < 100:
Create a free account and access millions of resources
Similar Resources on Wayground
15 questions
JavaScript Basics

Quiz
•
12th Grade - University
20 questions
Bài 11: KIỂU MẢNG MỘT CHỀU

Quiz
•
1st - 10th Grade
10 questions
Y9 Java (Karel the dog)

Quiz
•
9th Grade
20 questions
Пишем код с HTML, CSS и JavaScript

Quiz
•
4th - 7th Grade
10 questions
Trắc nghiệm xâu

Quiz
•
9th - 12th Grade
11 questions
Java Script 1.3. Циклы

Quiz
•
1st - 12th Grade
10 questions
Data Conversion & User Input

Quiz
•
10th Grade
20 questions
Review JavaScript

Quiz
•
11th Grade - University
Popular Resources on Wayground
10 questions
Video Games

Quiz
•
6th - 12th Grade
20 questions
Brand Labels

Quiz
•
5th - 12th Grade
15 questions
Core 4 of Customer Service - Student Edition

Quiz
•
6th - 8th Grade
15 questions
What is Bullying?- Bullying Lesson Series 6-12

Lesson
•
11th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
22 questions
Adding Integers

Quiz
•
6th Grade
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade
Discover more resources for Computers
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade
20 questions
typing

Quiz
•
6th Grade
18 questions
Company Logos

Quiz
•
6th - 8th Grade
10 questions
Proper Keyboarding Techniques

Interactive video
•
6th - 10th Grade
14 questions
Inputs and Outputs: Computer Science Intro

Lesson
•
5th - 9th Grade
20 questions
Input, Output, Processing or Storage

Quiz
•
5th - 6th Grade
10 questions
Understanding Computers: Hardware, Software, and Operating Systems

Interactive video
•
7th - 12th Grade
29 questions
AP CSP Unit 2 Review (Code.org)

Quiz
•
10th - 12th Grade