Properties in Swift coding

Properties in Swift coding

University

18 Qs

quiz-placeholder

Similar activities

pemrograman berbasis web

pemrograman berbasis web

University

15 Qs

OOP Lesson #1 Homework

OOP Lesson #1 Homework

12th Grade - University

19 Qs

MCS 602 - CSS

MCS 602 - CSS

University

20 Qs

OOP in Python

OOP in Python

University

15 Qs

Q5 - Info Mgt

Q5 - Info Mgt

University

15 Qs

IAM Roles

IAM Roles

University

20 Qs

Vue Behind the Scene

Vue Behind the Scene

University

14 Qs

DATABASE MANAGEMENT CT-1

DATABASE MANAGEMENT CT-1

University

20 Qs

Properties in Swift coding

Properties in Swift coding

Assessment

Quiz

Computers

University

Medium

Created by

Harold Peaden

Used 4+ times

FREE Resource

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.

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?