Kuizi 15 - Web

Kuizi 15 - Web

10th Grade

15 Qs

quiz-placeholder

Similar activities

Computer Science Principles Unit 7 Parameters Returns Libraries

Computer Science Principles Unit 7 Parameters Returns Libraries

9th - 12th Grade

12 Qs

functions arguments reference coding

functions arguments reference coding

7th - 12th Grade

11 Qs

Define Function

Define Function

12th Grade

20 Qs

User Defined Method - 01

User Defined Method - 01

10th Grade

15 Qs

Computer 10: Date and Time, String Manipulation Functions

Computer 10: Date and Time, String Manipulation Functions

7th Grade - University

15 Qs

Functions and Parameters Quiz

Functions and Parameters Quiz

9th - 12th Grade

15 Qs

Functions and Parameters

Functions and Parameters

9th - 12th Grade

20 Qs

CodeHS Functions and Parameters

CodeHS Functions and Parameters

9th - 12th Grade

20 Qs

Kuizi 15 - Web

Kuizi 15 - Web

Assessment

Quiz

Computers

10th Grade

Hard

Created by

Shkodran Hasani

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a function declaration in JavaScript?

A function declaration is defined using the 'function' keyword, followed by a name, parameters, and a block of code.

A function declaration is a way to define variables in JavaScript.

A function declaration is created using the 'declare' keyword.

A function declaration is an object that contains methods.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you define a function expression?

A function expression is a function defined within an expression, typically assigned to a variable.

A function expression is a type of variable that holds a function's return value.

A function expression is a function that cannot be assigned to a variable.

A function expression is a function defined only in the global scope.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the syntax for an arrow function?

(parameters) => { statements } or (parameters) => expression

(parameters) : { statements }

(parameters) => [ statements ]

(parameters) -> { statements }

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What are parameters in a JavaScript function?

Parameters are fixed values defined in the function body.

Parameters are the return values of a function.

Parameters are the names of the functions themselves.

Parameters in a JavaScript function are variables that accept values when the function is called.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do arguments differ from parameters?

Arguments are the values supplied to a function, whereas parameters are the variables in the function definition that accept those values.

Arguments are the same as parameters.

Parameters are the values passed to a function.

Arguments are defined within the function body.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of the return statement in a function?

The return statement is used to define a function's parameters.

The return statement allows a function to run indefinitely without stopping.

The return statement pauses the function and waits for user input.

The return statement allows a function to output a value and terminate its execution.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Can a function return multiple values? If so, how?

Yes, a function can return multiple values using tuples, lists, or arrays.

A function can only return one value at a time.

Functions cannot return any values in programming.

Multiple values can only be returned as strings.

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?