Huawei H14-231_V1.0 - HCIP-HarmonyOS Application Developer V1.0
Which of the following belongs to the lifecycle of starting a Service Ability?
Thedefault size of shared memory in Harmony OS is ?
When a user is traveling by car, a navigation route is planned on the mobile phone, and after getting into the car, the user migrates the mobile phone navigation to the large screen of the car machine. In this scenario, which interface is used to implement cross-device migration?
Which of the following is the callback behavior of the Page Ability lifecycle that can destroy the page?
If there are 3 Ability sharing a Service instance, how can I exit the Service instance?
In order to ensure better responsiveness of the application, developers need to use the task distributor to design the priority of the task.
When a HarmonyOS app developer uses the form container, which of the following elements can be submitted and reset?
The developer uses device A (local device) to control device B (remote device) to open the album, which distributed task scheduling capability is used in this scenario?
Developers will use the UI framework provided by Harmony OS when developing mobile phone pages, which of the following is not a UI framework?
When a developer designs a PA (Particle Ability) application, which of the following development steps can be omitted?
If a developer wants to develop a page with a tab function, the developer can use theTabList component provided by HarmomyOS. If you want to set the horizontal center alignment of text, which of the following codes is correct?
A developer uses the threading function of HarmonyoS and writes the following code, which is the correct order of the execution result of the code?
TaskDispatcher globalTaskDispatcher =
getGlobalTaskDispatcher(TaskPriority.DEFAULT);
globalTaskDispatcher.syncDispatch(new
Runnable(){
@Override
public void run(){
HiLog.info (LABEL_LOG,"sync task1 run");//1
HiLog.info (LABEL_LOG, "after sync task1");//2
globalTaskDispatcher.syncDispatch(new
Runnable(){
@0verride
pub1ic void run(){
HiLog.info(LABEL_LOG,"sync task2 run"); 3
}
});
HiLog.info (LABEL_LOG, "after sync task2");//4
When a developer uses Page Ability to open a ServiceAbility, he needs to pass parameters through Intent, at what stage is the parameter obtained in the whole process null?
onStart( ) in A S ervice.
When a developer designs a navigation application and needs the system to provide accurate positioning, which subsystem will be used?
If a developer needs to add the Banner function to a page, which of the following components is most suitable for implementing the function?