多选题You need to store elements in a collection that guarantees that no duplicates are stored. Which two interfaces provide that capability?()AJava.util.MapBJava.util.SetCJava.util.ListDJava.util.StoredSetEJava.util.StoredMapFJava.util.Collection

题目
多选题
You need to store elements in a collection that guarantees that no duplicates are stored. Which two interfaces provide that capability?()
A

Java.util.Map

B

Java.util.Set

C

Java.util.List

D

Java.util.StoredSet

E

Java.util.StoredMap

F

Java.util.Collection


相似考题
更多“You need to store elements in a collection that guarantees t”相关问题
  • 第1题:

    You need to store elements in a collection that guarantees that no duplicates are stored and all elements can be accessed in natural order. Which interface provides that capability?()  

    • A、Java.util.Map.
    • B、Java.util.Set.
    • C、Java.util.List.
    • D、Java.util.StoredSet.
    • E、Java.util.StoredMap.
    • F、Java.util.Collection.

    正确答案:D

  • 第2题:

    You work as an application developer at Certkiller .com. Certkiller .com has been hired by a small local private school to develop a class library that will be used in an application named ManageAttendance for the purpose of managing student records.You are responsible for developing this class library. Certkiller .com has instructed you to create a collection in the application to store learners’ results. The school has informed you that they currently only have seven learners, but that this value will triple in the following year. Due to the limited resources, you need to ensure that the collection you create consumes a minimum amount of resources. What should you use to create the collection?()

    • A、 The HybridDictionary collection class.
    • B、 The HashTable collection class.
    • C、 The ListDictionary collection class.
    • D、 The StringCollection collection class.

    正确答案:A

  • 第3题:

    You are creating a Windows Communication Foundation (WCF) service. The service endpoints change frequently. On the service, you add a new ServiceDiscoveryBehavior to the Behaviors collection of the ServiceHost Description property. You need to ensure that client applications can communicate with the service and discover changes to the service endpoints. What should you do?()

    • A、Add a new ServiceDiscoveryBehavior to the Behaviors collection in the client application.
    • B、Add a new AnnouncementClient to the Behaviors collection in the client application.
    • C、Use the FindCriteria class and the UdpDiscoveryEndpoint class to set up the binding in the client application.
    • D、Use the DiscoveryProxy class and the EndpointDiscoveryMetadata class to set up the binding in the client application.

    正确答案:C

  • 第4题:

    You work as an application developer at Certkiller .com. Certkiller .com has been contracted to develop an application for the local bank.You have been given the responsibility of creating this application and need to store each transaction record, which is identified using a complex transaction identifier,in memory. The bank informs you that the total amount of transaction records could reach 200 per day. To achieve this, you decide to utilize one of the existing collection classes in the .NET 2.0 class library. You need to ensure that you the collection class you select is the most efficient one for storing transaction records.What should you do?()

    • A、 Select the ListDictionary collection class.
    • B、 Select the HashTable collection class.
    • C、 Select the Queue collection class.
    • D、 Select the StringCollection collection class.

    正确答案:B

  • 第5题:

    You work in a company which is named Wiikigo Corp. The company uses SQL Server 2008. You are the administrator of the company database. Now you are in charge of a SQL Server 2008 instance. You are going to use the data collector to gather performance data periodically on all instances. You must store all collected data in the same database. This database is hosted on a single instance. Every five hours, you have to collect and load performance data in the management data warehouse. Which data collection process should you implement? () 

    • A、You should create a cached data collection 
    • B、You should create an on-demand non-cached data collection 
    • C、You should create a scheduled non-cached data collection. 
    • D、You should create two different SQL Agent jobs. The two jobs are scheduled at the same time. One job uploads the data collection and the other job creates a data collection.

    正确答案:C

  • 第6题:

    单选题
    You create a Web Form with several UI elements on it. During a code review, you realize that some of the UI elements can be grouped into user controls. You need to create a Web control to group the UI elements that do not require server-side processing. Doing so will enable you to programmatically add or remove the UI elements from the page. You want to maintain the UI elements' style properties. What should you do? ()
    A

    Use System.Web.UI.TemplateControl to group the UI elements.

    B

    Use System.Web.UI.HtmlControls.HtmlControl to group the UI elements.

    C

    Use System.Web.UI.LiteralControl to group the UI elements.

    D

    Use System.Web.UI.WebControls.Literal to group the UI elements.


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

  • 第7题:

    单选题
    Why can’t we divide film into various elements for analysis?
    A

    Because these elements are interwoven with each other and cannot be separated without failing to appreciate a film as a whole.

    B

    Because films cannot be written down and it is inconvenient to analyze them

    C

    Because films elements are too complicated.

    D

    Because films need not to be analyzed in detail.


    正确答案: C
    解析:
    由文章第四段第一句:Dividing film into its various elements for analysis is a somewhat artificial process, for the elements of any art form never exist in isolation可知,电影中的各个元素是相互交织、相互影响的,不能分割研究,否则会影响对整体意思的理解。

  • 第8题:

    单选题
    You use Microsoft .NET Framework 4 to create a Windows Presentation Foundation (WPF) application that allows users to arrange images. You need to ensure that users can arrange child elements in a panel without affecting the size of the elements. You also need to ensure that child elements are oriented horizontally. Which control should you use?()
    A

     ListBox

    B

     DockPanel

    C

     WrapPanel

    D

     StackPanel


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

  • 第9题:

    单选题
    Which statement is true for the class java.util.ArrayList?()
    A

     The elements in the collection are ordered.

    B

     The collection is guaranteed to be immutable.

    C

     The elements in the collection are guaranteed to be unique.

    D

     The elements in the collection are accessed using a unique key.

    E

     The elements in the collections are guaranteed to be synchronized.


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

  • 第10题:

    单选题
    You need to store elements in a collection that guarantees that no duplicates are stored and all elements can be accessed in natural order. Which interface provides that capability?()
    A

     Java.util.Map.

    B

     Java.util.Set.

    C

     Java.util.List.

    D

     Java.util.StoredSet.

    E

     Java.util.StoredMap.

    F

     Java.util.Collection.


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

  • 第11题:

    单选题
    You are developing a custom-collection class.You need to create a method in your class. You need to ensure that the method you create in your class returns a type that is compatible with the Foreach statement. Which criterion should the method meet?()
    A

    The method must return a type of either IEnumerator or IEnumerable.

    B

    The method must return a type of IComparable.

    C

    The method must explicitly contain a collection.

    D

    The method must be the only iterator in the class.


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

  • 第12题:

    单选题
    You are loading a new assembly into an application. You need to override the default evidence for the assembly. You require the common language runtime (CLR) to grant the assembly a permission set,as if the assembly were loaded from the local intranet zone.  You need to build the evidence collection. Which code segment should you use?()
    A

    A

    B

    B

    C

    C

    D

    D


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

  • 第13题:

    You are evaluating a Windows Azure application.  The application includes the following elements:   - A web role that provides the ASP.NET user interface and business logic   - A single SQL Azure database that contains all application data    Each page must receive data from the business logic layer before returning results to the client.  Traffic has increased significantly.   The business logic is causing high CPU usage.   You need to recommend an approach for scaling the application.  What should you recommend?()

    • A、 Move business logic to a worker role.
    • B、 Vertically partition the SQL Azure database.
    • C、 Store business logic results in Windows Azure local storage.
    • D、 Store business logic resultsin Windows Azure Table storage

    正确答案:A

  • 第14题:

    请选择合适的选项,补充下列英文句子: Thank you for your() to my store, you can find the products you need from my store.

    • A、visitted
    • B、visited
    • C、visits
    • D、visiting

    正确答案:D

  • 第15题:

    You are developing a custom-collection class.You need to create a method in your class. You need to ensure that the method you create in your class returns a type that is compatible with the Foreach statement. Which criterion should the method meet?()

    • A、The method must return a type of either IEnumerator or IEnumerable.
    • B、The method must return a type of IComparable.
    • C、The method must explicitly contain a collection.
    • D、The method must be the only iterator in the class.

    正确答案:A

  • 第16题:

    You use Microsoft .NET Framework 4 to create a Windows Presentation Foundation (WPF) application. You use the ClickOnce deployment methodology to distribute the application. You need to store application-specific data along with read/write permissions without requiring elevated permissions for the application. Where should you store the application data?()

    • A、 In isolated storage.
    • B、 On the database server.
    • C、 In the ClickOnce data directory.
    • D、 In the App.config file of the application.

    正确答案:A

  • 第17题:

    单选题
    An application is using WebLogic JMS Store and Forward to forward messages from a local JMS queue a remote WebLogic JMS destination. You need to determine if the messages are being  sent from the local Weblogic Server. Where do you find information and metrics about Store and Forward components in the WebLogic Admin Console?()
    A

    JMS Persistent Store

    B

    JMS Server  

    C

    JMS Distributed Destination

    D

    JMS Store and Forward  

    E

    Automatic Service Migration


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

  • 第18题:

    单选题
    After you back up /export using a file system snapshot, and you have removed the snapshot, you also need to remove the backing store. If the snapshot was created with:  # mkdir /var/tmp/backup-snaps  # fssnap -o  bs=/var/tmp/backup-snaps /export   Which file do you need to remove? ()
    A

    A

    B

    B

    C

    C

    D

    D


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

  • 第19题:

    单选题
    You need to design the storage of the application texts for UI elements to fulfill the requirements. Which table and column design should you use?()
    A

    Languages (LanguageID, Name)Elements (ElementID, Description)ElementLanguages (ElementID, LanguageID, Text) 

    B

    Languages (LanguageID, Name)Elements (ElementID, LanguageID, Description, Text) 

    C

    Languages (LanguageID, Name)ElementTexts (LanguageID, Text)ElementDescriptions (ElementID, Description) 

    D

    Languages (LanguageID, Name)Elements (ElementID, Description, Text)


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

  • 第20题:

    单选题
    You()to the meeting this afternoon if you have something important to do.
    A

    needn't to come

    B

    don't need come 

    C

    don't need coming

    D

    needn't come


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

  • 第21题:

    单选题
    You work in a company which is named Wiikigo Corp. The company uses SQL Server 2008. You are the administrator of the company database. Now you are in charge of a SQL Server 2008 instance. You are going to use the data collector to gather performance data periodically on all instances. You must store all collected data in the same database. This database is hosted on a single instance. Every five hours, you have to collect and load performance data in the management data warehouse. Which data collection process should you implement? ()
    A

    You should create a cached data collection 

    B

    You should create an on-demand non-cached data collection 

    C

    You should create a scheduled non-cached data collection. 

    D

    You should create two different SQL Agent jobs. The two jobs are scheduled at the same time. One job uploads the data collection and the other job creates a data collection.


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

  • 第22题:

    单选题
    You have an Exchange Server 2010 organization.You plan to enable Federated Sharing.You need to create a DNS record to store the Application Identifier (AppID) of the domain for the federated trust. Which type of record should you create?()
    A

    A

    B

    CNAME

    C

    SRV

    D

    TXT


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

  • 第23题:

    单选题
    You need to store elements in a collection that guarantees that no duplicates are stored and all elements can be accessed in natural order. Which interface provides that capability?()
    A

    Java.util.Map.

    B

    Java.util.Set.

    C

    Java.util.List.

    D

    Java.util.StoredSet.

    E

    Java.util.StoredMap.

    F

    Java.util.Collection.


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