IBM认证考试

If a parent organization is not specified when registering a user, which organization will the user be a member of?()A、Buyer OrganizationB、Default OrganizationC、No OrganizationD、Root OrganizationE、Seller Organization

题目

If a parent organization is not specified when registering a user, which organization will the user be a member of?()

  • A、Buyer Organization
  • B、Default Organization
  • C、No Organization
  • D、Root Organization
  • E、Seller Organization
如果没有搜索结果,请直接 联系老师 获取答案。
如果没有搜索结果,请直接 联系老师 获取答案。
相似问题和答案

第1题:

请分析下列程序。 int main() { printf("This is in main program"); if(fork()==0) printf("I am in child process"); else printf("I am in parent process");} 程序正确运行后结果是

A.This is in main program I am in child process I am in parent process

B.This is in main program I am in child process

C.This is in main program I am in parent process

D.This is in main program I am in child process This is in main program I am in parent process


正确答案:A

第2题:

调用对象方法的格式正确的是()。

A.Object.Method

B.MethodObject

C.Parent.Object.Method

D.Parent.Method


正确答案:C

第3题:

有如下程序:

#include

using namespace std;

class PARENT

{

public:

PARENT(){cout<<"PARENT";}

};

class SON:public PARENT

{

public:

SON(){cout<<"SON";}

};

int main()

{

SON son;

PARENT *p;

p = &son;

return 0;

}

执行上面程序的输出是 【 12 】 。


正确答案:

第4题:

在Visual FoxPro中,关键字Parent的含义是指


正确答案:B
在VisualFoxPr0中,Parent所指的是当前对象的直接容器对象,当前对象的关键字是This,当前对象所在的表单的关键字为ThisForm,而ThisFormSet所指的是当前对象所在的表单集。

第5题:

有如下程序: include using namespace std; class PARENT { public: PARENT() { cout

有如下程序:

include <iostream>

using namespace std;

class PARENT

{

public:

PARENT() { cout <<"PARENT"; }

};

class SON : public PARENT

{

public:

SON() {cout << "SON"; }

};

int main()

{

SON son;

PARENT *p;

p = &son;

return 0;

}

执行上面程序的输出是______。


正确答案:PARENTSON
PARENTSON 解析:此题考查的是派生类的构造。主函数开始在定义SON类的对象son时,会先执行PARENT类的构造函数再执行SON类的构造函数,输出 “PAKENTSON”;接下来的语句定义PARENT和让指针p指向son对象,都并未创建任何对象,所以不会调用构造函数。故最终的输出结果是:PARENTSON。

第6题:

Sometimes one parent of a child will kidnap his or her own child. In this case, ______ the Care Alert

program.

A. publics will get information from

B. television may not get information from

C. the parent will be punished by

D. the child will be saved by


正确答案:B
37.第四段。文中说,“保护警报”机构就是将诱拐儿童的信息报告给各电台、电视台,通过它们传给公众。但如果是父母诱拐了自己的孩子,就不用于此机构。既然如此,各电台就不会报导此消息。选项B是正确的。

第7题:

________ are contrary terms.

A、dead / alive

B、parent / child

C、single / married

D、like / dislike


参考答案:D

第8题:

假定一个表单里有一个文本框Textl和一个命令按钮组CommandGroup1,命令按钮组是一个容器对象,其中包含Command1和Command2两个命令按钮,如果要在Command1命令按钮的某个方法中访问文本框Value属性值,下面______是正确的。

A.This.Thisform.Text1.Value

B.This.Parent.Parent.Text1.Value

C.Parent.Parent.Text1.Value

D.This.Parent.Text1.Value


正确答案:B
解析:在表单中如果需要访问某个对象的属性值,可以通过表示该对象的变量来访问。在本题中,需要访问文本框Text1的Value属性,那么首先需要等到表示该文本框的变量,因为命令按钮Command1存在于容器对象 CommandGroup1中,而容器对象CommandGroup1则存在于表单中,因此如果Command1命令按钮需要访问Text1,则必须先访问Com-mandGroup1,然后再到表单,最后通过表单访问Text1,当访问到Text1之后,通过属性名Value就可以得到属性值。通过以上的分析,可以判断选项

第9题:

假定一个表单里有一个文本框Text1和一个命令按钮组CommandGroup1。命令按钮组是一个容器对象,其中包含Command1和Command2两个命令按钮。如果要在Command1命令按钮的某个方法中访问文本框的Value属性值,正确的表达式是( )。

A. This.This Form.Text1.Value

B. This.Parent.Parent.Text1.Value

C. Parent.Parent.Text1.Value

D. This.Parent.Text1.Value


正确答案:B
关键字This表示当前对象,而Parent属性用于引用一个控件的容器对象,因此,对于命令按钮Command1来说,This.Parent表示命令按钮组CommandGroup1, This.Parent.Parent表示表单。按照题目的要求访问文本框的
Value属性,关键是要找到文本框的位置,根据容器对象里控件的访问方法可知文本框的访问方法为“表单.文本框”。

第10题:

假定一个表单里有一个文本框Textl和一个命令按钮组CommandGroupl。命令按钮组是一个容器对象,其中包含Commandl和Command2两个命令按钮。如果要在Cornmandl命令按钮的某个方法中访问文本框的Value属性值,正确的表达式是( )。

A.This.ThisForm.Textl.Value

B.This.Parent.Parent.Textl.Value

C.Parent.Parent.Textl.Value

D.This.Parent.Textl.Value


正确答案:B
B。【解析】在文件系统的层次目录结构中,要标识一个文件,单用文件名往往是不够的,一般还要指明文件的位置,即目录路径。类似地,在对象的嵌套层次关系中,要引用其中的某个对象,也需要指明对象在嵌套层次中的位置。因为命令按钮组是一个容器对象,所以This.Parent表示按钮组,This.Parent.Parent表示表单,所以正确的表达式是选项B。

更多相关问题