Online Exam Quiz

questionQuestion  1 to 30

Which class represents the app?s main event loop and high-level app behaviors?

  • UIApplication
  • UIAppController
  • AppDelegate
  • AppController
Mark for review

What is the purpose of a storyboard in iOS development?

  • Define the app's UI and navigation
  • Manage app resources
  • Store user data
  • Log errors
Mark for review

What does the ?@IBOutlet? keyword indicate in Swift?

  • A function that handles an event
  • A variable that can be used in Interface Builder
  • A constant value
  • A function that handles touch events
Mark for review

What is a closure in Swift?

  • A type of array
  • A reference to a function
  • An anonymous function
  • A type of constant
Mark for review

Which of the following is a dependency manager for iOS projects?

  • Maven
  • Gradle
  • CocoaPods
  • npm
Mark for review

Which method is called when a table view cell is about to be displayed?

  • cellForRowAt
  • willDisplayCell
  • cellWillAppear
  • tableViewCellWillAppear
Mark for review

What is the default layout model in UIKit?

  • Linear Layout
  • Grid Layout
  • Auto Layout
  • Constraint Layout
Mark for review

Which framework would you use for drawing 2D graphics in iOS?

  • Core Data
  • Core Graphics
  • Metal
  • SpriteKit
Mark for review

What is the file extension for a Swift source file?

  • .java
  • .kt
  • .swift
  • .py
Mark for review

What is the purpose of the 'defer' statement in Swift?

  • Execute code before a loop
  • Execute code after a loop
  • Execute code just before the function returns
  • Execute code when an error occurs
Mark for review

What is the primary programming language used for iOS development?

  • Java
  • Kotlin
  • Swift
  • Python
Mark for review

How do you declare an array in Swift?

  • var arr = [1, 2, 3]
  • var arr = {1, 2, 3}
  • var arr = (1, 2, 3)
  • var arr = [1; 2; 3]
Mark for review

Mark for review

Which of the following methods is called when a view is about to appear on the screen?

  • viewDidLoad
  • viewWillAppear
  • viewDidAppear
  • viewWillDisappear
Mark for review

Which of these is used to manage memory in Swift?

  • Automatic Reference Counting
  • Garbage Collection
  • Memory Management
  • Reference Counting
Mark for review

How do you create a computed property in Swift?

  • var computedProperty: Int { return 1 }
  • let computedProperty: Int { return 1 }
  • computed computedProperty: Int { return 1 }
  • def computedProperty: Int { return 1 }
Mark for review

What is the purpose of the ?lazy? keyword in Swift?

  • Declare a variable that is computed only once
  • Declare a variable that can be nil
  • Declare a variable that is mutable
  • Declare a variable that is immutable
Mark for review

Which type is used to represent text in Swift?

  • String
  • str
  • text
  • Txt
Mark for review

Which keyword is used to declare constants in Swift?

  • let
  • var
  • const
  • static
Mark for review

What does the '?' operator signify in Swift?

  • Optional
  • Constant
  • Variable
  • Closure
Mark for review

How do you declare a protocol in Swift?

  • protocol MyProtocol {}
  • interface MyProtocol {}
  • type MyProtocol {}
  • struct MyProtocol {}
Mark for review

Which method is used to dismiss a modal view controller in iOS?

  • dismiss
  • remove
  • pop
  • close
Mark for review

What is the root class of most UIKit classes?

  • UIView
  • UIResponder
  • NSView
  • UIObject
Mark for review

What is Core Animation used for in iOS?

  • Network operations
  • Data persistence
  • Animating views
  • Handling gestures
Mark for review

What is the name of Apple?s IDE for iOS development?

  • IntelliJ IDEA
  • Xcode
  • Android Studio
  • Visual Studio
Mark for review

What method is used to remove an observer in NotificationCenter?

  • removeObserver
  • deleteObserver
  • unregisterObserver
  • clearObserver
Mark for review

What is the purpose of the ?guard? statement in Swift?

  • Declare a variable
  • Ensure a condition is true
  • Handle errors
  • Create a loop
Mark for review

Which tool can be used for managing multiple Xcode versions?

  • xcode-select
  • xcode-manager
  • xcode-switcher
  • xcode-choose
Mark for review

Which method is used to animate views in UIKit?

  • animate
  • performAnimation
  • UIView.animate
  • UIView.performAnimation
Mark for review

Mark for review

blinkerOnline

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • Answered
  • Not Answered
  • Marked for Review