When defining a function activity, what is true about the Result Type?() (Choose two.)A. Result Type is optional.B. Result Type is mandatory.C. Result Type can be changed after it is assigned to the function activity.D. Result Type should belong to the sa

题目
When defining a function activity, what is true about the Result Type?() (Choose two.)

A. Result Type is optional.

B. Result Type is mandatory.

C. Result Type can be changed after it is assigned to the function activity.

D. Result Type should belong to the same item type as the function activity


相似考题
更多“When defining a function activity, what is true about the Result Type?() (Choose two.) ”相关问题
  • 第1题:

    下面程序段; boolean a=false; boolean b=true; boolean c=(a||b)&&(b); boolean result=(a|b)&(b); 执行完后,正确的结果是

    A.c=false;result=false

    B.c=true;result=true

    C.c=true;result=false

    D.c=false;result=true


    正确答案:B
    解析:本题考查Java中的运算符。考试重点内容,历次考试都有题目涉及。首先要清楚,“&&”是逻辑与运算符:“&”是按位与运算符:“||”是逻辑或运算符:“|”是按位或运算符。“a||b”的结果为true,所以“true&&true”结果为true。而“a|b”的结果也为true,故result=(a,b)&(b)语句的结果也为true,选项B正确。

  • 第2题:

    健康计划的总体目标中的三个“W”指

    A:what,when,where

    B:who,what,when

    C:when,where,which

    D:who,what,which

    E:what,when,why


    正确答案:B
    解析:总体目标的三个“W”分别指who-对象;what-实现什么变化;when-实现变化的期限。

  • 第3题:

    计划的主要内容包括______计划必须清楚的确定和描述这些内容。

    A.What,Why,Who,Where,When,How many,How much

    B.What,Why,We,Where,When,How to,How much

    C.What,Why,We,Where,When,How,How much

    D.What,Why,Who,Where,When,How,How much


    确定组织发展目标制定全局战略;开发出一组广泛的相关计划;制定战略实施和资源分配方案

  • 第4题:

    健康计划的总体目标中的三个"W"指

    A、who,what,when

    B、what,when,why

    C、who,what,which

    D、what,when,where

    E、when,where,which


    参考答案:A

  • 第5题:

    健康计划的总体目标中的三个"W"指

    A.who,what,when
    B.what,when,why
    C.who,what,which
    D.what,when,where
    E.when,where,which

    答案:A
    解析:
    总体目标的三个"W"分别指who-对象;what-实现什么变化;when-实现变化的期限。

  • 第6题:

    在activity1中启动activity2时如果需要从activity2中回传数据,设置数据传递成功或失败需要参数resultCode,可以设置为哪些值()?

    A.RESULT_OK

    B.RESULT_CANCEL

    C.RESULT_FINISH

    D.RESULT_EXIT


    正确