wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

MOD 2 TLE IDENTIFICATION

Total questions: 10

Worksheet time: 10mins

Name
Class
Date
1.

1. It determines the extent of a variable's availability within the JavaScript program i.e. where the variable can be used or accessed. (it must be Capitalized)

(a)  

2.

2.These are values received by the function when it is invoked. (it must be Capitalized)

(a)  

3.

3 It is a block of code designed to perform a particular task and executed when "something" invokes it. (It must be Capitalized)

(a)  

4.

4.The code inside the function will execute when "something" invokes the function. What is the other name of “invokes”? (It must be Capitalized)

(a)  

5.

5.Parameters are set on the first line of the function inside the set of (a)   ? (it must be Capitalized)

6.

6.It is where the function's code is placed. (It must be Capitalize)

(a)  

7.

7. Declaration of a function starts with the function keyword, followed by the name of the function. (it must be Capitalized)



(a)  

8.

8. The_______ work like placeholder variables within a_______; they are

replaced at run time by the values (known as argument) provided, What do you called the missing words?(it must be Capitalized)



(a)  

9.

9. You must include a return statement, followed by the value to be returned, before the function's end statement.(it must be Capitalized)



(a)  

10.

10. Undefined is the default value for a parameter in JavaScript. (it must be Capitalized)



(a)