Mobile OS Interview Questions
Questions Answers Views Company eMail

Swift defines the AnyObject type alias to represent instances of any reference type, and it’s internally defined as a protocol. Consider the following code: var array = [AnyObject]() struct Test {} array.append(Test()) This code generates a compilation error, with the following error message: Type 'Test' does not conform to protocol 'AnyObject' The failure is obvious because a struct is a value and not a reference type, and as such it doesn’t implement and cannot be cast to the AnyObject protocol. Now consider the following code: var array = [AnyObject]() array.append(1) array.append(2.0) array.append("3") array.append([4, 5, 6]) array.append([7: "7", 8: "8"]) struct Test {} array.append(Test()) The array array is filled in with values of type respectively int, double, string, array and dictionary. All of them are value types and not reference types, and in all cases no error is reported by the compiler. Why?

1 2289

Consider the following code: let op1: Int = 1 let op2: UInt = 2 let op3: Double = 3.34 var result = op1 + op2 + op3 Where is the error and why? How can it be fixed?

1 3189

Consider the following code: var defaults = NSUserDefaults.standardUserDefaults() var userPref = defaults.stringForKey("userPref")! printString(userPref) func printString(string: String) { println(string) } Where is the bug? What does this bug cause? What’s the proper way to fix it?

1 2643

The following code snippet results in a compile time error: struct IntStack { var items = [Int]() func add(x: Int) { items.append(x) // Compile time error here. } } Explain why a compile time error occurs. How can you fix it?

1 3245

In Swift enumerations, what’s the difference between raw values and associated values?

1 6132

The String struct doesn’t provide a count or length property or method to count the number of characters it contains. Instead a global countElements() function is available. When applied to strings, what’s the complexity of the countElements function: O(1) O(n) and why?

1 2053

struct Planet { var name: String var distanceFromSun: Double } let planets = [ Planet(name: "Mercury", distanceFromSun: 0.387), Planet(name: "Venus", distanceFromSun: 0.722), Planet(name: "Earth", distanceFromSun: 1.0), Planet(name: "Mars", distanceFromSun: 1.52), Planet(name: "Jupiter", distanceFromSun: 5.20), Planet(name: "Saturn", distanceFromSun: 9.58), Planet(name: "Uranus", distanceFromSun: 19.2), Planet(name: "Neptune", distanceFromSun: 30.1) ] let result1 = planets.map { $0.name } let result2 = planets.reduce(0) { $0 + $1.distanceFromSun } What are the types and values of the result1 and result2 variables? Explain why.

1 2519

Consider the following code: var array1 = [1, 2, 3, 4, 5] var array2 = array1 array2.append(6) var len = array1.count What’s the value of the len variable, and why?

1 3063

what is the procedure of using D2MS server in cloud messaging in android

Tech Mentro,

1228

what is preferences

Google, Tech Mentro,

1197

sap bw online classes

SAP Labs,

1 1351

What is the APK format in Android?

Arigo Infotech,

555

Who calls the main function of you app during the app launch cycle in iOS operating system?

TryTechnicals Pvt Ltd,

525

What is App Bundle in iOS operating system?

TryTechnicals Pvt Ltd,

501

What are all the difference between categories and subclasses in iOS operating system?

TryTechnicals Pvt Ltd,

424


Un-Answered Questions { Mobile OS }

Which is better redhat or ubuntu?

367


What is build.gradle?

499


How to use core data objects between two threads?

401


Do you know which json framework is supported by ios?

404


Can I watch netflix on ubuntu?

375






In my code the method marked by [ondeserialized] is never called after deserialization. Is this a known issue?

477


What features are in a release?

528


Is ubuntu better than linux?

380


What is Broadcast Receiver in Android?

544


Why uicontrol is provided if we can create custom uiview?

449


What do I need to submit an application?

496


Explain difference between coredata & sqlite?

491


What is a tuple in swift?

387


What is the meaning of question mark "?" In swift?

488


What is error in application in iphone?

422