Code.org functions

Code.org functions

10th Grade

10 Qs

quiz-placeholder

Similar activities

Game 14: Quizizz! game

Game 14: Quizizz! game

1st - 12th Grade

10 Qs

Networking Fundementals

Networking Fundementals

9th Grade - University

15 Qs

Unit 2 Quiz - Bootstrap: Algebra

Unit 2 Quiz - Bootstrap: Algebra

6th - 12th Grade

11 Qs

CodeHS 5.2

CodeHS 5.2

6th - 10th Grade

15 Qs

IF and Vlookup Function

IF and Vlookup Function

9th - 10th Grade

15 Qs

Google Apps Chapter 1 Quiz

Google Apps Chapter 1 Quiz

9th - 12th Grade

15 Qs

Java  Quiz (Who knows java best?)

Java Quiz (Who knows java best?)

7th - 10th Grade

10 Qs

CP M9 Assessment Review

CP M9 Assessment Review

9th - 12th Grade

12 Qs

Code.org functions

Code.org functions

Assessment

Quiz

Computers

10th Grade

Hard

Created by

Khalil Youssef

Used 8+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following is true regarding naming functions? 
Function names can be reused multiple times
A function name should be as descriptive as possible to indicate what the function does.
Function names should be organized alphabetically
The function name should begin with a number that indicates the order in which it should be executed.

2.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

What is the correct format to define a function?

Note: The name of the Function is "multiplyBy2"

multiplyBy2();

function multiplyBy2(){

//steps to execute function

}

function multiplyBy2

multiplyBy2{5}{

//steps of function

}

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

How do you call a function in JavaScript?
(assume the function name is doStuff)
function doStuff()
doStuff()
doStuff();
function do Stuff(){
//list of steps to execute
}

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

His name is Fred and he is less than 16 years old

if (name = "fred" && age < 16 )

if (name === "fred" && age < 16 )

if (name = "fred" || age < 16 )

if (name === "fred" || age < 16 )

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Repeat something 10 times

repeat 10

for (var i=0; i<10; i++)

repeat { } until 10;

while (i = 10)

6.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

How many times will the following code print "Welcome to Java"?
int count = 0;
while (count < 10) {
 System.out.println("Welcome to Java");
 count++;
}
8
9
10
0

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In a loop that runs from 0 to 9. What goes in the blank space?

var i;

for ( i= 0 ; i < ___ ; i++ ) {

console.log (i);

}

10

9

5

4

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?