Saltar al contenido principalSaltar al pie de página

Mobile Application | Development Exam Questions And Answers

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.

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

1. Which Android component is an entry point that runs in the background without a user interface? a) Activity b) Service ✅ c) Content Provider d) Broadcast Receiver

a) To store database records b) To efficiently display large lists of data ✅ c) To handle network requests d) To manage background services mobile application development exam questions and answers

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 )

// Handle the result override fun onRequestPermissionsResult( requestCode: Int, permissions: Array<out String>, grantResults: IntArray ) super.onRequestPermissionsResult(requestCode, permissions, grantResults) if (requestCode == CAMERA_PERMISSION_CODE) if (grantResults.isNotEmpty() && grantResults[0] == PackageManager.PERMISSION_GRANTED) openCamera() else // Show rationale or disable feature Toast.makeText(this, "Camera permission denied", Toast.LENGTH_SHORT).show()

a) onResume() b) onStart() c) onRestart() d) onRedraw() ✅ a) UIKit / SwiftUI ✅ b) CocoaPods c)

| Q# | Answer | |----|--------| | 1 | B | | 2 | B | | 3 | D | | 4 | A | | 5 | C | | 6 | B | | 7 | C | | 8 | B | | 9 | B | | 10 | A |

a) Kotlin b) Java c) Swift ✅ d) Dart

a) Background Thread b) Main Dispatch Queue (Main Thread) ✅ c) Global Queue d) Custom Serial Queue Which Android component is an entry point that

a) Declare in manifest only b) Request at runtime using requestPermissions() ✅ c) No need to request d) Use uses-permission-sdk only

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

Answer: The delegate pattern allows one object to act on behalf of or in coordination with another. For example, UITableView has a delegate property that conforms to UITableViewDelegate . The view controller implements methods like didSelectRowAt to handle row selection without subclassing UITableView . 15. Compare and contrast SQLite and Room Persistence Library for local data storage in Android. When would you use one over the other?

a) SQLite Database b) Internal Storage c) SharedPreferences ✅ d) Room Database

Tracking Pixel Contents