COMP130_Functions

COMP130_Functions

University

8 Qs

quiz-placeholder

Similar activities

Session 2 | U

Session 2 | U

University

10 Qs

Pemrograman Android 01 - Pengantar Android & Kotlin

Pemrograman Android 01 - Pengantar Android & Kotlin

University

6 Qs

Final Exam Review

Final Exam Review

University

13 Qs

Ms Excel Functions

Ms Excel Functions

University

10 Qs

PDS - 04225 Trees - Chapter 6

PDS - 04225 Trees - Chapter 6

University

10 Qs

Funktionen und Modularisierung in Python

Funktionen und Modularisierung in Python

University

9 Qs

bài 28

bài 28

11th Grade - University

10 Qs

ITP  Quiz

ITP Quiz

University

10 Qs

COMP130_Functions

COMP130_Functions

Assessment

Quiz

Computers

University

Hard

Created by

W Mao

Used 7+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

MATLAB® program files can contain code for more than one function. In a function file, the first function in the file is called the main function,

which must have the same name as the file it is defined in.

True

False

2.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

What will happen if you define a sub-function with the same name as a built-in function?

There is an error

Your sub-function will be used in preference to the built-in function any time it is called within the same file.

Both the built-in function and your sub-function will be run when the function is called.

The built-in function will take precedence and your sub-function will be ignored.

3.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Given the following function header:

function f = func(alpha, beta)

Which of the following statements is the best way to invoke the function?

out = f(5, 6)

f(5, 6)

func(5, 6)

func([5, 6])

func(5)

4.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Using functions make the program run faster and more efficiently.

True

False

5.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

The following command can be used to determine the

number of inputs from function cos:

nargin(cos)

True

False

6.

FILL IN THE BLANK QUESTION

1 min • 5 pts

What’s the result to the following code?

myfunction = @(x,y) (x + y^2 + x*y);

x=2;

y=1;

z = myfunction(x, y)

7.

FILL IN THE BLANK QUESTION

1 min • 5 pts

What is the command used to change where

MATLAB® looks for function definitions?

8.

OPEN ENDED QUESTION

3 mins • Ungraded

Tips for your classmates when writing functions:

Evaluate responses using AI:

OFF