单选题The direct way to use XPages in a notes 8.5.1 client is which of the following?()A Through a composite application componentB Through use of a file URLC Client database Launch propertyD XPages are accessed through eclipse and not a notes client

题目
单选题
The direct way to use XPages in a notes 8.5.1 client is which of the following?()
A

Through a composite application component

B

Through use of a file URL

C

Client database Launch property

D

XPages are accessed through eclipse and not a notes client


相似考题
更多“单选题The direct way to use XPages in a notes 8.5.1 client is which of the following?()A Through a composite application componentB Through use of a file URLC Client database Launch propertyD XPages are accessed through eclipse and not a notes client”相关问题
  • 第1题:

    ( )The capability provided to the consumer is to use provider’s applications running on a cloud infrasture. The applications are accessible from various client devices through either a thin client inface, such as a web browser(e.g.,erb-based E- mail),or aprogram interface.

    A.laaS
    B.PaaS
    C.SaaS
    D.DaaS

    答案:C
    解析:
    提供给消费者的能力是使应用程序运行在云上。应用程序可以通过各种客户端设备通过客户机内接口,如Web浏览器(如:erb-basede-mail)或aprogram接口。

  • 第2题:

    You work as an application developer at Certkiller .com. Certkiller .com wants you to develop an application that stores and retrieves client information by means of a unique account number.You create a custom collection class, which implements the IDictionary interface,named ClientDictionary. The following code have been included into the new application. //Create Client objects Client c1 = new Client ("AReid", "Andy Reid", Status.Current); Client c2 = new Client ("DAustin", "Dean Austin", Status.New); //Create ClientDictionary object IDictionary cData = new ClientDictionary (); cData.Add ("10001", c1); cData.Add ("10002", c2); You use the same method to add other Client objects to the collection. You need to ensure that you are able to retrieve client information associated with the account number 10111.What should you do?()

    • A、 Use the following code: Client foundClient;foundClient = (Client) cData.Find ("10111"); 
    • B、 Use the following code: Client foundClient;if (cData.Contains ("10111")) foundClient = cData ["10111"]; 
    • C、 Use the following code: Client foundClient;if (cData.Contains ("10111"))foundClient =(Client) cData ["10111"]; 
    • D、 Use the following code: Client foundClient;foreach (string key in cData.Keys {if (key == "10111")foundClient = (Client) cData.Values ["10111"]; }

    正确答案:C

  • 第3题:

    Which of the following BEST describes the function of a DNS server?()

    • A、Secures network traffic through shared key encryption.
    • B、Provides resolution of host names to IP addresses.
    • C、Provides security for a network through the use of ACLs.
    • D、Dynamically assigns IP addresses for easy client configuration.

    正确答案:B

  • 第4题:

    Which of the following cannot be translated from Classic Notes to XPages?()

    • A、Embedded views
    • B、Section
    • C、Hide When Formula
    • D、Framesets

    正确答案:D

  • 第5题:

    The direct way to use XPages in a notes 8.5.1 client is which of the following?()

    • A、Through a composite application component
    • B、Through use of a file URL
    • C、Client database Launch property
    • D、XPages are accessed through eclipse and not a notes client

    正确答案:C

  • 第6题:

    You are developing a Windows Communication Foundation (WCF) client application. The client application contains the following code. [ServiceContract] public interface ISocialStatus { [OperationContract] [WebInvoke(UriTemplate = "/statuses/update.xml?status-{text}")] void UpdateStatus(string text); } public class SocialClient : ClientBase, ISocialStatus { ... } The configuration file contains the following lines. binding="webHttpBinding" contract="SocialApp.ISocialStatus" bindingConfiguration="BindingConfig" /> You need to ensure that the service is consumed. Which code segment should you use?()

    • A、var client = new SocialClient("SocialClient"); client.Endpoint.Behaviors.Add(new WebHttpBehavior());
    • B、var client = new SocialClient("SocialClient"); client.Endpoint.Behaviors.Add(new WebScriptEnablingBehovior());
    • C、var client = new SocialClient("POST"); client.Endpoint.Behaviors.Add(new WebHttpBehovior());
    • D、var client = new SocialClient("POST"); client.Endpoint.Behaviors.Add(new WebScriptEnablingBehavior());

    正确答案:A

  • 第7题:

    Your company plans to upgrade 1,000 client computers to Windows 7.   The company uses a custom line-of-business application that is frequently updated.  The application is not compatible with Windows 7.   You need to ensure that the company can use the application.   You also need to ensure that the application can be updated with the least amount of administrative effort.   What should you do?()

    • A、 Deploy Microsoft Enterprise Desktop Virtualization (MED-V) v2 to all Windows 7 client computers, and distribute thevirtual machine image and updates through MED-V TrimTransfer.
    • B、 Deploy Microsoft Enterprise Desktop Virtualization (MED-V) v2 to all Windows 7 client computers, and distribute thevirtual machine image and updates through Microsoft System Center Configuration Manager.
    • C、 Configure Windows XP Mode on all Windows 7 client computers, and distribute the virtual machine image and updates through a file share resource.
    • D、 Configure Windows XP Mode on all Windows 7 client computers, and distribute the virtual machine image and updates through Microsoft System Center Configuration Manager.

    正确答案:A

  • 第8题:

    单选题
    You are developing a Windows Communication Foundation (WCF) client application. The client application contains the following code. [ServiceContract] public interface ISocialStatus { [OperationContract] [WebInvoke(UriTemplate = "/statuses/update.xml?status-{text}")] void UpdateStatus(string text); } public class SocialClient : ClientBase, ISocialStatus { ... } The configuration file contains the following lines. binding="webHttpBinding" contract="SocialApp.ISocialStatus" bindingConfiguration="BindingConfig" /> You need to ensure that the service is consumed. Which code segment should you use?()
    A

    var client = new SocialClient(SocialClient); client.Endpoint.Behaviors.Add(new WebHttpBehavior());

    B

    var client = new SocialClient(SocialClient); client.Endpoint.Behaviors.Add(new WebScriptEnablingBehovior());

    C

    var client = new SocialClient(POST); client.Endpoint.Behaviors.Add(new WebHttpBehovior());

    D

    var client = new SocialClient(POST); client.Endpoint.Behaviors.Add(new WebScriptEnablingBehavior());


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

  • 第9题:

    单选题
    You are developing a client application that consumes a Windows Communication Foundation (WCF) service. You use the svcutil.exe utility to create a proxy for the service. You use the svcutil.exe switches that generate asynchronous calls. GetFlight is a service operation that takes no parameters and returns a string. The GetFlightCallback method must be called when the service operation returns.You create an instance of the client proxy with the following code:var client = new TranvelServiceClient( );You need to ensure that a callback is received when the GetFlight operation is called asynchronously. Which code segment should you use?()
    A

    client.BeginGetFlight(GetFlightCallback, null); client.GetFlight();

    B

    client.GetFlight(); client.BeginGetFlight(GetFlightCallback, null);

    C

    client.GetFlightCompleted += new EventHandler(GetFlightCallback); client.GetFlightAsync();

    D

    IAsyncResult asyncResult = client.BeginGetFlight(GetFlightCallback, client); client.EndGetFlight(asyncResult);


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

  • 第10题:

    单选题
    Which correctly describes the tiers of the Oracle Workflow architecture?()
    A

    Oracle Database tier and Application server tier only

    B

    Oracle Database tier, Application server tier, and End-user client tier only

    C

    Oracle Database tier, Application server tier, and Development client tier only

    D

    Oracle Database tier, Application server tier, Development client tier, and End-user client tier


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

  • 第11题:

    单选题
    Which of the following is used to connect existing Notes Forms to XPages?()
    A

    Data Source

    B

    Schema Definition

    C

    Domino Document

    D

    Data Binding


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

  • 第12题:

    单选题
    The direct way to use XPages in a notes 8.5.1 client is which of the following?()
    A

    Through a composite application component

    B

    Through use of a file URL

    C

    Client database Launch property

    D

    XPages are accessed through eclipse and not a notes client


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

  • 第13题:

    A system is being designed with many LPARs which will be clients of dual VIO Servers. The VIO Servers must be redundant so that, in the event of scheduled maintenance, the clients do not need to be shut down. Which of these strategies could be used to ensure that the client LPARs continue to be able to use the network in the event of a VIO Server being shut down?()

    • A、ImplementPowerHA SystemMirror on both VIO servers.
    • B、ConfigureEtherchannel between the client LPARs and the two VIO servers
    • C、Configure Network Interface Backup between the two VIO servers and use each VIO server to access the  network.
    • D、Implement Shared Ethernet Adapter failover and have all client partitions access the network through the   shared adapters.

    正确答案:C

  • 第14题:

    You develop a Windows Communication Foundation (WCF) service that uses basic authentication for client credentials. This service is currently configured to use message security. The service is hosted on a server in workgroup mode.Users report that their passwords are stolen when they use public computers.You need to ensure that messages are secure and users are authenticated.You prevent the service from being called over HTTP through Microsoft Internet Information Services (IIS) configuration. What should you do next?()

    • A、Use the transport security mode and specify None for transport client credential type.
    • B、Use the transportWithMessageCredential security mode and specify Basic for the transport client credential type.
    • C、Use the message security mode and specify Basic for the transport client credential type.
    • D、Use the transportWithMessageCredential security mode and specify None for the transport client credential type.

    正确答案:B

  • 第15题:

    Which of the following is used to connect existing Notes Forms to XPages?()

    • A、Data Source
    • B、Schema Definition
    • C、Domino Document
    • D、Data Binding

    正确答案:A

  • 第16题:

    A "trusted" client needs to communicate with a server that has been configured to use CLIENT authentication. Which of the following will be used to verify passwords?()

    • A、User ID/password file
    • B、Communications layer
    • C、Client applications
    • D、Operating system

    正确答案:D

  • 第17题:

    How can you make a shared server-side initialization parameter file available to all instances of a Real Application Clusters database?()

    • A、Include an SPFILE parameter in each instance-specified initialization file.
    • B、Create an SPFILE copy on each client from which the instance will be started.
    • C、Store the SPFILE in a raw partition with a vendor-specifies location and name.
    • D、Use a single client to start the instances and create the SPFILE on this client.

    正确答案:A

  • 第18题:

    You are developing a client application that consumes a Windows Communication Foundation (WCF) service. You use the svcutil.exe utility to create a proxy for the service. You use the svcutil.exe switches that generate asynchronous calls. GetFlight is a service operation that takes no parameters and returns a string. The GetFlightCallback method must be called when the service operation returns.You create an instance of the client proxy with the following code:var client = new TranvelServiceClient( );You need to ensure that a callback is received when the GetFlight operation is called asynchronously. Which code segment should you use?()

    • A、client.BeginGetFlight(GetFlightCallback, null); client.GetFlight();
    • B、client.GetFlight(); client.BeginGetFlight(GetFlightCallback, null);
    • C、client.GetFlightCompleted += new EventHandler(GetFlightCallback); client.GetFlightAsync();
    • D、IAsyncResult asyncResult = client.BeginGetFlight(GetFlightCallback, client); client.EndGetFlight(asyncResult);

    正确答案:C

  • 第19题:

    单选题
    Which of the following BEST describes the function of a DNS server?()
    A

    Secures network traffic through shared key encryption.

    B

    Provides resolution of host names to IP addresses.

    C

    Provides security for a network through the use of ACLs.

    D

    Dynamically assigns IP addresses for easy client configuration.


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

  • 第20题:

    单选题
    A system is being designed with many LPARs which will be clients of dual VIO Servers. The VIO Servers must be redundant so that, in the event of scheduled maintenance, the clients do not need to be shut down. Which of these strategies could be used to ensure that the client LPARs continue to be able to use the network in the event of a VIO Server being shut down?()
    A

    Implement PowerHA SystemMirror on both VIO servers.

    B

    Configure Etherchannel between the client LPARs and the two VIO servers.

    C

    Configure Network Interface Backup between the two VIO servers and use each VIO server to access the  network.

    D

    Implement Shared Ethernet Adapter failover and have all client partitions access the network through the shared adapters.


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

  • 第21题:

    单选题
    A system is being designed with many LPARs which will be clients of dual VIO Servers. The VIO Servers must be redundant so that, in the event of scheduled maintenance, the clients do not need to be shut down. Which of these strategies could be used to ensure that the client LPARs continue to be able to use the network in the event of a VIO Server being shut down?()
    A

    ImplementPowerHA SystemMirror on both VIO servers.

    B

    ConfigureEtherchannel between the client LPARs and the two VIO servers

    C

    Configure Network Interface Backup between the two VIO servers and use each VIO server to access the  network.

    D

    Implement Shared Ethernet Adapter failover and have all client partitions access the network through the   shared adapters.


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

  • 第22题:

    单选题
    Which of the following cannot be translated from Classic Notes to XPages?()
    A

    Embedded views

    B

    Section

    C

    Hide When Formula

    D

    Framesets


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

  • 第23题:

    单选题
    Your company plans to upgrade 1,000 client computers to Windows 7.   The company uses a custom line-of-business application that is frequently updated.  The application is not compatible with Windows 7.   You need to ensure that the company can use the application.   You also need to ensure that the application can be updated with the least amount of administrative effort.   What should you do?()
    A

     Deploy Microsoft Enterprise Desktop Virtualization (MED-V) v2 to all Windows 7 client computers, and distribute thevirtual machine image and updates through MED-V TrimTransfer.

    B

     Deploy Microsoft Enterprise Desktop Virtualization (MED-V) v2 to all Windows 7 client computers, and distribute thevirtual machine image and updates through Microsoft System Center Configuration Manager.

    C

     Configure Windows XP Mode on all Windows 7 client computers, and distribute the virtual machine image and updates through a file share resource.

    D

     Configure Windows XP Mode on all Windows 7 client computers, and distribute the virtual machine image and updates through Microsoft System Center Configuration Manager.


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

  • 第24题:

    单选题
    You work as an application developer at Certkiller .com. Certkiller .com wants you to develop an application that stores and retrieves client information by means of a unique account number.You create a custom collection class, which implements the IDictionary interface,named ClientDictionary. The following code have been included into the new application. //Create Client objects Client c1 = new Client ("AReid", "Andy Reid", Status.Current); Client c2 = new Client ("DAustin", "Dean Austin", Status.New); //Create ClientDictionary object IDictionary cData = new ClientDictionary (); cData.Add ("10001", c1); cData.Add ("10002", c2); You use the same method to add other Client objects to the collection. You need to ensure that you are able to retrieve client information associated with the account number 10111.What should you do?()
    A

     Use the following code: Client foundClient;foundClient = (Client) cData.Find (10111); 

    B

     Use the following code: Client foundClient;if (cData.Contains (10111)) foundClient = cData [10111]; 

    C

     Use the following code: Client foundClient;if (cData.Contains (10111))foundClient =(Client) cData [10111]; 

    D

     Use the following code: Client foundClient;foreach (string key in cData.Keys {if (key == 10111)foundClient = (Client) cData.Values [10111]; }


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