Mobile Apps Developer

  Home  Mobile Technologies  Mobile Apps Developer


“Mobile Apps Developer related Frequently Asked Questions by expert members with job experience as Mobile Apps Developer. These questions and answers will help you strengthen your technical skills, prepare for the new job interview and quickly revise your concepts”



52 Mobile Apps Developer Questions And Answers

2⟩ Do you know how To Avoid An Anr?

A follow-up to the previous question, there are a number of possible answers here. What you want to hear is that you want as little work done as possible on the main thread, also known as the "UI thread".

Since that is the core single thread that your application runs on, you would want to keep activities that require more complex computations or network and database connections, for example, on separate worker threads so as not to slow down the main thread.

 154 views

4⟩ What is an App Widgets?

Also referred to simply as Widgets, App Widgets in the Android world are miniature views that are embedded within Android apps and typically display periodic updates. Music players, weather updates, sports scores, and stock price changes are all examples of data that can be displayed in an App Widget.

 171 views

6⟩ Explain me how To Port Applications To Multiple Platforms?

We have created a single unified architecture that covers all platforms, so that we can ensure a common user experience across devices. However, different platforms utilise different operating systems and system tools, so we have to create a unique client code base for each platform - iOS, Android, and Blackberry. It is possible to reuse some code across Blackberry and Android.

 156 views

9⟩ What is an ANR?

ANR stands for "Application Not Responding". It's a dialog box that appears when an application doesn't respond for more than 10 seconds (sometimes it can be less than 10 seconds). The ANR dialog box offers the user the option of either closing the app or waiting for it to finish running.

 158 views

11⟩ Please explain where Test Apple Iphone Apps If Don't Have The Device?

iOS Simulator can be used to test mobile applications. Xcode tool that comes along with iOS SDK includes Xcode IDE as well as the iOS Simulator. Xcode also includes all required tools and frameworks for building iOS apps. However, it is strongly recommended to test the app on the real device before publishing it.

 155 views

13⟩ Do you know which Special Skills And Roles Are Required?

The important ones are flexibility, speed, and a keen understanding of the user experience. Mobile development jobs require you to work quickly and be ready to respond to lots of changes, such as hardware and software updates, patches and design changes. The tablet is a great example - we have entered into a 'post PC era' and the types of things that a tablet will be used for is still evolving.

 148 views

14⟩ Tell us how To Respond To State Transitions On Your App?

On state transitions can be responded to state changes in an appropriate way by calling corresponding methods on app's delegate object.

Example:

☛ applicationDidBecomeActive method can be used to prepare to run as the foreground app.

☛ applicationDidEnterBackground method can be used to execute some code when app is running in the background and may be suspended at any time.

☛ applicationWillEnterForeground method can be used to execute some code when your app is moving out of the background

☛ applicationWillTerminate method is called when your app is being terminated.

 164 views

16⟩ Do you know Folder, File & Description Of Android Apps?

☛ src:

This contains the .java source files for your project.

☛ gen:

contains the .R file, a compiler-generated file that references all the resources found in your project. You should not modify this file.

☛ bin:

contains the Android package files .apk built by the ADT during the build process and everything else needed to run an Android application.

☛ res/drawable-hdpi

This is a directory for drawable objects that are designed for high-density screens.

☛ res/layout

This is a directory for files that define your app's user interface.

☛ res/values

This is a directory for other various XML files that contain a collection of resources, such as strings and colors definitions.

☛ AndroidManifest.xml

This is the manifest file which describes the fundamental characteristics of the app and defines each of its components.

 157 views

17⟩ Tell us what Are The Advance Features Of Android Os?

☛ Google now (voice assistant)

☛ NFC (Near Field Communication)

☛ Unlock your phone by your face

☛ Use your phone with joystick to enjoy gaming experience

☛ Connect your phone with LED TV via MHL or micro HDMI cable

☛ Screen Capture

☛ Multitasking Future (Task Switcher)

☛ Data Usages (Check and also set limit from device)

 192 views

20⟩ Explain me how The Mobile Applications Scoped And Specified?

Scoping starts with a long, hard look at the device. Mobile devices offer different form factors, screen size and resolution, computing power and functionality. They run different operating systems and have other methods of retrieving data such as wifi or 3G.

The challenge is to understand the device and how it will be used to the best advantage: focus on the benefits of the device, such as size and portability, and ensure that the user experience will be optimised.

 152 views