Online Exam Quiz

questionQuestion  1 to 30

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

  • viewDidLoad
  • viewWillAppear
  • viewDidAppear
  • viewWillDisappear
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 used to handle background tasks in iOS?

  • NSBackground
  • BGTask
  • BackgroundWorker
  • URLSession
Mark for review

What is the primary design pattern used in iOS development?

  • Singleton
  • Observer
  • MVC
  • MVVM
Mark for review

Mark for review

What is the file extension for a Swift source file?

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

Which tool is used for debugging and analyzing performance in Xcode?

  • Android Monitor
  • Instruments
  • Debug Console
  • Logcat
Mark for review

Which of the following is used to build user interfaces in iOS applications?

  • XML
  • HTML
  • Interface Builder
  • SwiftUI
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 type is used to represent text in Swift?

  • String
  • str
  • text
  • Txt
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 framework is primarily used for handling data persistence in iOS apps?

  • Core Data
  • Room
  • SQLite
  • Core Storage
Mark for review

Which method is called when an app receives a memory warning?

  • didReceiveMemoryWarning
  • memoryWarningReceived
  • handleMemoryWarning
  • onMemoryWarning
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

What does the '?' operator signify in Swift?

  • Optional
  • Constant
  • Variable
  • Closure
Mark for review

How do you define a function in Swift?

  • def myFunction() {}
  • func myFunction() {}
  • function myFunction() {}
  • function() myFunction {}
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

What is the root class of most UIKit classes?

  • UIView
  • UIResponder
  • NSView
  • UIObject
Mark for review

Mark for review

Which protocol is used for table view data sources?

  • UITableViewDataSource
  • UITableViewDelegate
  • UITableViewSource
  • UITableViewHandler
Mark for review

What method is used to remove an observer in NotificationCenter?

  • removeObserver
  • deleteObserver
  • unregisterObserver
  • clearObserver
Mark for review

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

  • UIApplication
  • UIAppController
  • AppDelegate
  • AppController
Mark for review

Which method is used to add a subview to a view in UIKit?

  • addSubView
  • appendView
  • insertSubView
  • addSubview
Mark for review

How do you handle errors in Swift?

  • try-catch
  • catch-try
  • do-try-catch
  • do-catch
Mark for review

How do you handle asynchronous code in Swift?

  • async-await
  • promise-then
  • dispatch-async
  • queue-async
Mark for review

Mark for review

What is the entry point of an iOS application?

  • Main.storyboard
  • AppDelegate
  • ViewController
  • SceneDelegate
Mark for review

Which of these is a valid way to unwrap an optional in Swift?

  • if let
  • try catch
  • unwrap
  • guard let
Mark for review

Which keyword is used to define an enumeration in Swift?

  • class
  • struct
  • enum
  • type
Mark for review

Which method is used to animate views in UIKit?

  • animate
  • performAnimation
  • UIView.animate
  • UIView.performAnimation
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