Online Exam Quiz

questionQuestion  1 to 30

What is the root class of most UIKit classes?

  • UIView
  • UIResponder
  • NSView
  • UIObject
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 does the ?@IBAction? 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

Which framework is primarily used for handling data persistence in iOS apps?

  • Core Data
  • Room
  • SQLite
  • Core Storage
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

How do you handle errors in Swift?

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

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

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 declare a dictionary in Swift?

  • var dict = ["key": "value"]
  • var dict = {"key": "value"}
  • var dict = (key: value)
  • var dict = [key, value]
Mark for review

What is used to handle background tasks in iOS?

  • NSBackground
  • BGTask
  • BackgroundWorker
  • URLSession
Mark for review

Which protocol is used for table view data sources?

  • UITableViewDataSource
  • UITableViewDelegate
  • UITableViewSource
  • UITableViewHandler
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

How do you handle asynchronous code in Swift?

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

How do you define a function in Swift?

  • def myFunction() {}
  • func myFunction() {}
  • function myFunction() {}
  • function() myFunction {}
Mark for review

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

  • dismiss
  • remove
  • pop
  • close
Mark for review

What keyword is used to create a new instance of a class in Swift?

  • create
  • new
  • instantiate
  • init
Mark for review

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

  • UIApplication
  • UIAppController
  • AppDelegate
  • AppController
Mark for review

What method is used to remove an observer in NotificationCenter?

  • removeObserver
  • deleteObserver
  • unregisterObserver
  • clearObserver
Mark for review

Which of these is used to capture touch events in iOS?

  • UITapGestureRecognizer
  • UITouch
  • UIGestureRecognizer
  • UICapture
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

What is Core Animation used for in iOS?

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

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

How do you declare a variable in Swift?

  • var x = 10
  • let x = 10
  • int x = 10
  • var int x = 10
Mark for review

Mark for review

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

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

  • Android Monitor
  • Instruments
  • Debug Console
  • Logcat
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