Swift Language Essentials
Protocols, extensions, generics, property wrappers, type casting, advanced enums
1What is an Array in Swift?
What is an Array in Swift?
Odpowiedź
Array is an ordered collection storing elements of the same type and allowing duplicates. Elements are accessible by index starting from 0. Array maintains insertion order and suits scenarios where element order matters.
2What characterizes a Set in Swift?
What characterizes a Set in Swift?
Odpowiedź
Set is an unordered collection of unique elements. Each element appears only once. Set is optimal for fast membership testing and guaranteeing uniqueness. Unlike Array, insertion order is not preserved.
3What is a Dictionary in Swift?
What is a Dictionary in Swift?
Odpowiedź
Dictionary is an unordered collection of key-value pairs. Each key is unique and enables quick access to its associated value. Dictionary suits storing related data identified by a key, like a phone directory where the name is the key. Key-based access is constant time O(1).
What is a stored property in Swift?
What is a computed property in Swift?
+12 pytań z rozmów
Inne tematy rekrutacyjne iOS
Swift Basics
UIKit Fundamentals
UIViewController Lifecycle
UserDefaults & Keychain
Application Lifecycle
Auto Layout & Constraints
UITableView & UICollectionView
SwiftUI Basics
SwiftUI State Management
SwiftUI Navigation
Networking & URLSession
Codable & JSON Parsing
Core Data
Protocol Oriented Programming
MVVM Architecture
Push Notifications
Unit Testing & XCTest
UI Testing
Xcode & Build System
Swift Package Manager
Memory Management & ARC
Combine Framework
Concurrency & async/await
iOS Design Patterns
Performance Optimization
Security & Encryption
SwiftUI Advanced
iOS Application Architecture
Opanuj iOS na następną rozmowę
Uzyskaj dostęp do wszystkich pytań, flashcards, testów technicznych, ćwiczeń code review i symulatorów rozmów.
Zacznij za darmo