Search Header Logo

Properties in Swift coding

Authored by Harold Peaden

Computers

University

Used 4+ times

Properties in Swift coding
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

18 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Here is a link to the Google doc I copied from Apple's documentation for teaching this subject before students take this quiz:

https://docs.google.com/document/d/1PU7b5Y7A7QeeccukmfxwVeyo5z7IM1dyFX-NKbZZLqA/edit?usp=sharing

I understand

I don't understand

2.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

What is the primary purpose of properties in Swift?

A. To store values globally.

B. To associate values with a particular class, structure, or enumeration.

C. To execute functions inside an instance.

D. To monitor memory usage of an instance.

Answer explanation

Correct Answer: B
Explanation: Properties associate values with specific instances of a class, structure, or enumeration.

3.

MULTIPLE CHOICE QUESTION

30 sec • 6 pts

Which types of properties are provided by classes and structures in Swift?

A. Stored and computed properties.

B. Computed properties only.

C. Stored properties only.

D. None of the above.

Answer explanation

Correct Answer: A
Explanation: Both stored and computed properties are provided by classes and structures.

4.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Can enumerations in Swift have stored properties?

A. Yes, always.

B. No, enumerations can only have computed properties.

C. Yes, but only with property observers.

D. No, enumerations cannot have properties.

Answer explanation

Correct Answer: B
Explanation: Enumerations in Swift can only have computed properties, not stored ones.

5.

MULTIPLE CHOICE QUESTION

30 sec • 6 pts

On which types of properties can property observers be added?

A. Only stored properties defined by the user.

B. Only computed properties.

  • C. Both stored and computed properties.

D. Only inherited properties in a subclass.

Answer explanation

Correct Answer: A
Explanation: Property observers can be added to stored properties defined by the user or inherited from a superclass.

6.

MULTIPLE CHOICE QUESTION

30 sec • 6 pts

What are type properties in Swift?

  • A. Properties that calculate values for specific instances.

B. Properties shared across all instances of a type.

  • C. Properties that store values for enumerations.

D. Properties associated with functions.

Answer explanation

Correct Answer: B
Explanation: Type properties are shared by all instances of a type and are associated with the type itself.

7.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

What is the primary difference between stored properties and computed properties?

a) Stored properties calculate their value, while computed properties store it.

  • b) Stored properties store a value, while computed properties calculate it.

c) Both stored and computed properties are only provided by classes.

  • d) Stored properties and computed properties are always constant.

Answer explanation

Correct Answer: b
Explanation: Stored properties save a constant or variable value, while computed properties dynamically calculate their value using a getter and (optionally) a setter.

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?

Discover more resources for Computers