Mobile Application Development Exam Questions And Answers [ 4K ]

a) Model-View-Controller ✅ b) Module-View-Controller c) Model-View-Component d) Main-View-Controller

a) UIKit / SwiftUI ✅ b) CocoaPods c) CoreData d) Alamofire Section B: Short Answer Questions (4 Questions) 11. Explain the difference between native, hybrid, and cross-platform mobile app development. mobile application development exam questions and answers

a) Declare in manifest only b) Request at runtime using requestPermissions() ✅ c) No need to request d) Use uses-permission-sdk only mobile application development exam questions and answers

a) SQLite Database b) Internal Storage c) SharedPreferences ✅ d) Room Database mobile application development exam questions and answers

a) startApp() b) main() ✅ c) runApp() d) init()

private fun checkAndRequestCameraPermission() if (ContextCompat.checkSelfPermission( this, Manifest.permission.CAMERA ) == PackageManager.PERMISSION_GRANTED ) // Permission already granted openCamera() else // Request permission ActivityCompat.requestPermissions( this, arrayOf(Manifest.permission.CAMERA), CAMERA_PERMISSION_CODE )

a) onResume() b) onStart() c) onRestart() d) onRedraw() ✅