下列关于IBM Data Studio的说法,哪一项是正确的?()A、安装DB2时自动安装Data StudioB、当CREATE TRIGGER语句作为脚本执行时,Data Studio可以用于开发触发器C、Data Studio独立程序包是免费的,但是IDE程序包是收费的D、无论哪一个版本的安装程序包,Data Studio均支持shell共享

题目

下列关于IBM Data Studio的说法,哪一项是正确的?()

  • A、安装DB2时自动安装Data Studio
  • B、当CREATE TRIGGER语句作为脚本执行时,Data Studio可以用于开发触发器
  • C、Data Studio独立程序包是免费的,但是IDE程序包是收费的
  • D、无论哪一个版本的安装程序包,Data Studio均支持shell共享

相似考题
更多“下列关于IBM Data Studio的说法,哪一项是正确的?()A、安装DB2时自动安装Data StudioB、当CREATE TRIGGER语句作为脚本执行时,Data Studio可以用于开发触发器C、Data Studio独立程序包是免费的,但是IDE程序包是收费的D、无论哪一个版本的安装程序包,Data Studio均支持shell共享”相关问题
  • 第1题:

    下面类的声明中的几个语句,正确的是(设定语句是主函数中的语句)( )。 class TestClass { private: int data; public: TestClass(int g_data) { data=g_data; } void show(){cout<<data<<end1;) };

    A.TestClass *p;

    B.TestClass m;

    C.TestClass.data=8;

    D.TestClass.show();


    正确答案:A
    解析:C++中,若没有类的显式声明构造函数则系统会为其提供一个默认的构造函数,若提供了构造函数则会将系统提供的默认的构造函数覆盖。调用构造函数时,实参必须与形参匹配。但是如果声明一个对象指针时,不是定义一个对象,不调用对象的构造函数。

  • 第2题:

    若要对Data类中重载的加法运算符成员函数进行声明,下列选项中正确的是( )。 A.Data+(DatA.;SXB

    若要对Data类中重载的加法运算符成员函数进行声明,下列选项中正确的是( )。

    A.Data+(DatA.;

    B.Data operator+(DatA.;

    C.Data+operator(DatA.;

    D.operator+(Data,DatA.;


    正确答案:B
    根据重载加法运算符的格式,只有B选项正确。

  • 第3题:

    在linux中,如何执行当前目录的Shell脚本文件data.sh?()。

    • A、shdata.sh
    • B、./data.sh
    • C、../data.sh
    • D、data.sh

    正确答案:A,B,C

  • 第4题:

    假设蓝鲸社区版安装在/data/bkce目录下,那么SaaS应用日志查询方式是?()

    • A、/data/bkce/paas_agent/apps/logs/$appcode
    • B、/data/bkce/paas/apps/logs/$appcode
    • C、/data/bkce/apps/logs/$appcode

    正确答案:A

  • 第5题:

    在Visual Studio 2008环境中开发网站必须安装IIS。


    正确答案:错误

  • 第6题:

    在扩容RRM模块时,新安装的MP里哪些目录下的老文件可以清空()

    • A、/data/work
    • B、/data/rollback
    • C、/measure
    • D、/fm
    • E、/trace

    正确答案:A,B,C,D,E

  • 第7题:

    下列哪一项正确描述了Visual Studio.NET与.NET Framework之间的关系()。

    • A、Visual Studio.NET与.NET Framework之间没有关系
    • B、可以使用Visual Studio.NETIDE或者简单的文本编辑器创建应用程序,应用程序运行时需要使用.NET Framework
    • C、开发应用程序时需要.NET Framework,但是在运行Visual Studio.NET创建的应用程序时不需要它
    • D、都不对

    正确答案:D

  • 第8题:

    You use Microsoft Visual Studio 2010 and Microsoft .NET Framework 4 to create a Windows Presentation Foundation (WPF) application. You plan to implement a test strategy for the application. You need to ensure that the test strategy meets the following requirements: Test data can be added to the test project without recompiling. Multiple variations of a test can be executed at run time. What should you do? ()

    • A、 Use IntelliTrace.
    • B、 Use data-driven tests.
    • C、 Create a single test class.
    • D、 Create a test method for each data variation.

    正确答案:B

  • 第9题:

    You use Microsoft Visual Studio 2010 and Microsoft .NET Framework 4 to create a Windows Presentation Foundation (WPF) application. The application uses data-bound controls. You discover that when the application is executed by users, one of the controls is not displayed properly. You need to view the property values assigned to the controls. What should you do?()

    • A、 Use IntelliTrace. 
    • B、 Use PresentationTraceSource.
    • C、 Run the application in debug mode with Visual Studio 2010. Use the Auto window while you step through the application code.
    • D、 Run the application in debug mode with Visual Studio 2010. Use the WPF Visualizer while you step through the application code.

    正确答案:D

  • 第10题:

    单选题
    You use Microsoft Visual Studio 2010 and Microsoft . NET Framework 4 to create a Windows Presentation Foundation (WPF) application. You create a WPF window in the application. You add the following code segment to the application. public class ViewModel { public CollectionView Data { get; set; } } public class BusinessObject { public string Name { get; set; } } The DataContext property of the window is set to an instance of the ViewModel class. The Data property of the ViewModel instance is initialized with a collection of BusinessObject objects. You add a TextBox control to the Window. You need to bind the Text property of the TextBox control to the Name property of the current item of the CollectionView of the DataContext object. You also need to ensure that when a binding error occurs, the Text property of the TextBox control is set to N/A . Which binding expression should you use?()
    A

     { Binding Path=Data/Name, FallbackValue='N/A' }

    B

     { Binding Path=Data.Name, FallbackValue='N/A' }

    C

     { Binding Path=Data/Name, TargetNullValue='N/A' } 

    D

     { Binding Path=Data.Name, TargetNullValue='N/A' }


    正确答案: C
    解析: 暂无解析

  • 第11题:

    单选题
    You use Microsoft Visual Studio 2010 and Microsoft .NET Framework 4 to create a Windows Presentation Foundation (WPF) application. The application uses data-bound controls. You discover that when the application is executed by users, one of the controls is not displayed properly. You need to view the property values assigned to the controls. What should you do?()
    A

     Use IntelliTrace. 

    B

     Use PresentationTraceSource.

    C

     Run the application in debug mode with Visual Studio 2010. Use the Auto window while you step through the application code.

    D

     Run the application in debug mode with Visual Studio 2010. Use the WPF Visualizer while you step through the application code.


    正确答案: A
    解析: 暂无解析

  • 第12题:

    单选题
    有以下程序:#include struct link{ int data; struct link *next;};main(){ struct link *h,a,b; h=&a; a.data=10; a.next = &b; b.data = 20;}程序运行时不能输出10,20的语句是(  )。
    A

    printf(%d,%d,h->data,a.next.data);

    B

    printf(%d,%d,a.data,(*a.next).data);

    C

    printf(%d,%d,h->data,(*a.next).data);

    D

    printf(%d,%d,a.data,a.next->data);


    正确答案: A
    解析:
    可用以下3种形式来引用结构体变量中的成员:①结构体变量名.成员名;②指针变量名->成员名;③(*指针变量名).成员名。主函数定义了两个结构体变量a,b,其成员data分别为10和20,且a成员指针指向b。A选项中a.next为指针,其引用格式为a.next->data与(*a.next).data,A项错误。B项a.data=10,(*a.next).data=20,能正确输出10,20;C项h->data=10,(*a.next).data=20,能正确输出10,20;D项a.data=10,a.next->data=20,能正确输出10,20。答案选择A选项。

  • 第13题:

    若要对Data类中重载的加法运算符成员函数进行声明,下列选项中正确的是( )。

    A) Data+(DatA) ;

    B) Data operator+{Data};

    C) Data+operator{Data};

    D) operator+(Data,DatA) ;

    A.

    B.

    C.

    D.


    正确答案:B

  • 第14题:

    TPC软件由多个组件组成,下列哪一项不是TPCServer的组件()。

    • A、CIMON Agent
    • B、Data Server
    • C、Device Server
    • D、DB2 data repository

    正确答案:A

  • 第15题:

    如果发现前台激活的版本错误,可以通过删除前台/IDE0/256/DATA0和/IDE0/256/DATA1路径下()文件,重新上传激活版本。


    正确答案:VERCONF_DB.ZDB

  • 第16题:

    SolidWorks的模板有两个存放地址,以下哪个路径是其中一个存放地址?()

    • A、安装目录/data/user
    • B、安装目录/data/templates
    • C、安装目录/samples

    正确答案:B

  • 第17题:

    下列关于VisualStudio2008的叙述中,哪一条是不正确的?()

    • A、Visual  Studio  2008彻底解决了需要绑定一个特定版本的CLR(通用语言框架机制)的问题
    • B、Visual  Studio  2008实现了Dreamwaver网页编辑的功能
    • C、Visual  Studio  2008对AJAX和JavaScript提供了更丰富的支持
    • D、Visual  Studio  2008允许编写使用LINQ的代码

    正确答案:A

  • 第18题:

    AXE功能块的程序包括哪些部分()

    • A、Parameter Sector
    • B、Declare sector
    • C、Program sector
    • D、Data sector

    正确答案:A,B,C,D

  • 第19题:

    TPC软件由多个组件组成,下列哪一项不是 TPC Server 的组件:()

    • A、CIMON Agent
    • B、Data Server
    • C、Device Server
    • D、DB2 data repository

    正确答案:A

  • 第20题:

    You use Microsoft Visual Studio 2010 and Microsoft . NET Framework 4 to create a Windows Presentation Foundation (WPF) application. You create a WPF window in the application. You add the following code segment to the application. public class ViewModel { public CollectionView Data { get; set; } } public class BusinessObject { public string Name { get; set; } } The DataContext property of the window is set to an instance of the ViewModel class. The Data property of the ViewModel instance is initialized with a collection of BusinessObject objects. You add a TextBox control to the Window. You need to bind the Text property of the TextBox control to the Name property of the current item of the CollectionView of the DataContext object. You also need to ensure that when a binding error occurs, the Text property of the TextBox control is set to N/A . Which binding expression should you use?()

    • A、 { Binding Path=Data/Name, FallbackValue='N/A' }
    • B、 { Binding Path=Data.Name, FallbackValue='N/A' }
    • C、 { Binding Path=Data/Name, TargetNullValue='N/A' } 
    • D、 { Binding Path=Data.Name, TargetNullValue='N/A' }

    正确答案:A

  • 第21题:

    单选题
    下列关于VisualStudio2008的叙述中,哪一条是不正确的?()
    A

    Visual  Studio  2008彻底解决了需要绑定一个特定版本的CLR(通用语言框架机制)的问题

    B

    Visual  Studio  2008实现了Dreamwaver网页编辑的功能

    C

    Visual  Studio  2008对AJAX和JavaScript提供了更丰富的支持

    D

    Visual  Studio  2008允许编写使用LINQ的代码


    正确答案: A
    解析: 暂无解析

  • 第22题:

    单选题
    You use Microsoft Visual Studio 2010 and Microsoft .NET Framework 4 to create a Windows Presentation Foundation (WPF) application. You plan to implement a test strategy for the application. You need to ensure that the test strategy meets the following requirements: Test data can be added to the test project without recompiling. Multiple variations of a test can be executed at run time. What should you do? ()
    A

     Use IntelliTrace.

    B

     Use data-driven tests.

    C

     Create a single test class.

    D

     Create a test method for each data variation.


    正确答案: C
    解析: 暂无解析

  • 第23题:

    单选题
    下列关于IBM Data Studio的说法,哪一项是正确的?()
    A

    安装DB2时自动安装Data Studio

    B

    当CREATE TRIGGER语句作为脚本执行时,Data Studio可以用于开发触发器

    C

    Data Studio独立程序包是免费的,但是IDE程序包是收费的

    D

    无论哪一个版本的安装程序包,Data Studio均支持shell共享


    正确答案: A
    解析: 暂无解析