VISUAL BASIC

INTRODUCTION TO NET

APPLICATION DEVELOPMENT

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
Control is returned to the rule that called the original activity and the original activity ends when the called activity finishes.
A
Call
B
Branch
C
Either A or B
D
None of the above
Explanation: 

Detailed explanation-1: -Your app can start an activity in another application by passing an intent with startActivity(). The Android system knows about all the device’s installed apps and their activities, and uses the intent to start the correct activity.

Detailed explanation-2: -PEGA Interview Questions and Answers :: Discussion The Call instruction calls the another specified activity and execute it. When that activity completes, control returns to the calling activity. Use the Branch instruction to find another specified activity and branch to it without a return.

Detailed explanation-3: -onResume() This is called when the user starts interacting with the application.

Detailed explanation-4: -onResume() At this point, the activity remains in the foreground state unless something happens to the application. This may include overly (multi-window mode application) interaction from other applications such as a phone call or when a user navigates to another activity.

There is 1 question to complete.