Properties in Swift coding

Properties in Swift coding

University

18 Qs

quiz-placeholder

Similar activities

Philippine Constitution, General Information, Current Events

Philippine Constitution, General Information, Current Events

10th Grade - University

20 Qs

Quiz 1 PBO

Quiz 1 PBO

University

20 Qs

Web Development

Web Development

12th Grade - University

15 Qs

Quiz_Area of computer ethic

Quiz_Area of computer ethic

University

20 Qs

VB

VB

University

20 Qs

Q4 - Info. Mgt

Q4 - Info. Mgt

University

15 Qs

KSK2023 ulangkaji v1.2 (1-6)

KSK2023 ulangkaji v1.2 (1-6)

KG - University

16 Qs

INTRO APP INVENTOR

INTRO APP INVENTOR

University

16 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?