Search Header Logo

Functions

Authored by Unknown Unknown

Information Technology (IT)

University

Used 1+ times

Functions
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which keyword is used to define a function in Swift?

func

function

def

method

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

func sum(_ numbers: Int...) -> Int {

var total = 0

for n in numbers {

total += n

}

return total

}

print(sum(1, 2, 3, 4))

10

1234

Error

nil

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

func outer() {

func inner() {

print("Inner function")

}

inner()

}

outer()

Inner function

outer

Error

nil

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

func divide(_ a: Double, _ b: Double) -> Double? {

if b == 0 {

return nil

}

return a / b

}

print(divide(10, 2)!)

5.0

nil

Error

Infinity

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

func factorial(_ n: Int) -> Int {

if n <= 1 { return 1 }

return n * factorial(n - 1)

}

print(factorial(4))

24

16

4

Error

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?