重要提示: 请勿将账号共享给其他人使用,违者账号将被封禁!
查看《购买须知》>>>
找答案首页 > 全部分类 > 计算机类考试
搜题
网友您好, 请在下方输入框内输入要搜索的题目:
搜题
题目内容 (请给出正确答案)
[单选题]

您正在编写自定义字典。该自定义字典类名为MyDictionary。您需要确保该字典是类型安全的字典。您应该使用哪个代码段?()

A.您正在编写自定义字典。该自定义字典类名为MyDictionary。您需要确保该字典是类型安全的字典。

B. 您正在编写自定义字典。该自定义字典类名为MyDictionary。您需要确保该字典是类型安全的字典。

C. 您正在编写自定义字典。该自定义字典类名为MyDictionary。您需要确保该字典是类型安全的字典。

D.您正在编写自定义字典。该自定义字典类名为MyDictionary。您需要确保该字典是类型安全的字典。

查看答案
更多“您正在编写自定义字典。该自定义字典类名为MyDictionary。您需要确保该字典是类型安全的字典。您应该使用哪个代码段?()”相关的问题

第1题

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());

点击查看答案

第2题

Your network contains an Active Directory domain named contoso.com. The domain contains tw

o sites named Site1 and Site2. The servers for the sites are configured as shown in the following table.Server name Server role Site name Server1 Domain controller, DNS Site1 Server2 DNS Site2 Server1 hosts a standard primary zone for contoso.com. Server2 hosts a secondary zone for contoso.com.You need to ensure that all DNS replication traffic between Server1 and Server2 is encrypted.What should you do?()

A. On Server1, configure DNSSEC for the contoso.com zone.

B. On Server1, convert the contoso.com zone to an Active Directory-integrated zone.

C. On each server, create connection security rules.

D. On each server, enable Encrypting File System (EFS) encryption for the contoso.com.dns file.

点击查看答案

第3题

你正在创建一个内容页,它引用了另一个开发人员开发的母版页。已知,母版页公开了几个public属性:company,street,address,city,state,和phoneNumber;现在,你需要在你的PhoneNumberTextBox控件中显示phoneNumber的值(在母版页定义的)。你应该使用那一段代码?()

A.PhoneNumberTextBox.Text = Master.PhoneNumber;

B.PhoneNumberTextBox.Text = this.PhoneNumber;

C.PhoneNumberTextBox.Text = Content.PhoneNumber;

点击查看答案

第4题

Your company has multiple DNS servers in the main office. You plan to install DNS on a mem

ber server in a branch office. You need to ensure that the DNS server in the branch office is able to query and DNS server in the main office, and you need to limit the number of DNS records that are transferred to the DNS server in the branch office. What should you do?()

A.Configure a secondary zone on the DNS server in the branch office.

B.Configure a stub zone on the DNS server in the branch office.

C.Configure a stub zone on the DNS server in the main office.

D.Configure a primary zone on the DNS server in the branch office.

点击查看答案

第5题

Your network contains a single Active Directory domain named contoso.com.The domain contai

ns a DNS server named Server1 that hosts the contoso.com zone.The network is connected to the network of a partner company. The partner companys network contains a DNS server that hosts a zone named nwtraders.com.You need to ensure that computers in contoso.com can resolve the names of computers in nwtraders.com.The solution must not require any changes to the zone configuration of nwtraders.com.What should you configure on Server1?()

A. a conditional forwarder

B. a GlobalNames zone

C. a secondary zone

D. a zone delegation

点击查看答案

第6题

Your network consists of single active domain. The domain contains a serve named server1 t

hat runs windows server 2008 all client computers run windows vista. All computers are members of the active directory domain. You assign the secure server (Require Security) IPsec policy to server1 by using a GPO. Users report that they fail to connect to server1. You need to ensure that users can connect to server1. All connections to server1 must be encrypted. What should you do?()

A.Restart the IPsec policy agent service on server1.

B.Assign the client (Respond only ) IPsec policy to Server1.

C.Assign the server (Request Security) ipsec policy to server1.

D.Assign the client (Respond Only) IPsec policy to all client computes.

点击查看答案

第7题

您需要写一个代码段来执行以下任务:检索每个暂停服务的名称,通过集合名称为Collection1的Add方法添加到集合中。您应该用哪个代码实现?()

A.A

B.B

C.C

D.D

点击查看答案

第8题

您正在创建名为Age 的类。您需要确保编写的Age 类的对象所构成的集合能够被排序。您应该使用哪个代码段?()

A.

B.

C.

D.

点击查看答案

第9题

Your company has a single active directory forest that has an active directory domain name

d na.contoso.com. a member server named server2 runs the DNS server role. The server2 DNS service hosts multiple secondary zones including na.contoso.com. you need to reconfigure server2 as a caching-only DNS server. What should you do?()

A.Uninstall and reinstall the DNS service on server2.

B.Change all the DNS zones on server2 to stub zones.

C.Disable and then enable the DNS service on server2.

D.Delete the na.contoso.com DNS zone domain from server2. Restart the DNS service on server2.

点击查看答案

第10题

You are developing a new version of an existing message contract named CustomerDetailsVers

ion1. The new version of the message contract must add a Department field of type String to the SOAP header.You create a new class named CustomerDetailsVersion2 that inherits from CustomerDetailsVersion1. You need to ensure that all client applications can consume the service.Which code segment should you use?()

A.

B.

C.

D.

点击查看答案
下载上学吧APP
客服
TOP
重置密码
账号:
旧密码:
新密码:
确认密码:
确认修改
购买搜题卡查看答案
购买前请仔细阅读《购买须知》
请选择支付方式
微信支付
支付宝支付
选择优惠券
优惠券
请选择
点击支付即表示你同意并接受《服务协议》《购买须知》
立即支付
搜题卡使用说明

1. 搜题次数扣减规则:

功能 扣减规则
基础费
(查看答案)
加收费
(AI功能)
文字搜题、查看答案 1/每题 0/每次
语音搜题、查看答案 1/每题 2/每次
单题拍照识别、查看答案 1/每题 2/每次
整页拍照识别、查看答案 1/每题 5/每次

备注:网站、APP、小程序均支持文字搜题、查看答案;语音搜题、单题拍照识别、整页拍照识别仅APP、小程序支持。

2. 使用语音搜索、拍照搜索等AI功能需安装APP(或打开微信小程序)。

3. 搜题卡过期将作废,不支持退款,请在有效期内使用完毕。

请使用微信扫码支付(元)
订单号:
遇到问题请联系在线客服
请不要关闭本页面,支付完成后请点击【支付完成】按钮
遇到问题请联系在线客服
恭喜您,购买搜题卡成功 系统为您生成的账号密码如下:
重要提示: 请勿将账号共享给其他人使用,违者账号将被封禁。
发送账号到微信 保存账号查看答案
怕账号密码记不住?建议关注微信公众号绑定微信,开通微信扫码登录功能
警告:系统检测到您的账号存在安全风险

为了保护您的账号安全,请在“上学吧”公众号进行验证,点击“官网服务”-“账号验证”后输入验证码“”完成验证,验证成功后方可继续查看答案!

- 微信扫码关注上学吧 -
警告:系统检测到您的账号存在安全风险
抱歉,您的账号因涉嫌违反上学吧购买须知被冻结。您可在“上学吧”微信公众号中的“官网服务”-“账号解封申请”申请解封,或联系客服
- 微信扫码关注上学吧 -
请用微信扫码测试
选择优惠券
确认选择
谢谢您的反馈

您认为本题答案有误,我们将认真、仔细核查,如果您知道正确答案,欢迎您来纠错

上学吧找答案