CSDN首页 空间 新闻 论坛 Blog 下载 读书 网摘 搜索 .NET Java 视频 接项目 求职 在线学习 买书 程序员 通知
可用分押宝游戏火热进行中... 专题改版:Java Web 专题
CSDN社区
搜索 收藏 打印 关闭
CSDN社区 >  .NET技术 >  C#

哈哈,两道很简单的英文试题,可是他们认识我,我不认识他们,请大家帮忙!!!

楼主pbs2000()2006-11-10 15:35:31 在 .NET技术 / C# 提问

14.You   are   writing   code   for   a   Windows   Form   HR   application   that   will   allow   users   to   save   original   and   edited   data   on   employees.   You   use   data   sets   to   achieve   this.   You   will   be   using   the   WriteXml   method   to   write   the   XML.   The   WriteXml   method   accepts   an   XmlWriteMode   parameter   to   determine   the   XML   format.Which   member   of   the   XmlWriteMode   enumeration   should   you   select?   (Select   the   best   choice.)   (   )  
  A.   The   default   member       B.   WriteSchema         C.   DiffGram         D.   IgnoreSchema  
   
  15.You   develop   a   Windows-based   application   that   includes   the   following   code   segment.   (Line   numbersare   included   for   reference   only.)  
  01   Public   CreditCard_Validating   (Object   sender   _  
  02   ,   System.ComponentModel.CancelEventArgs   e   _   05){If   !ValidCreditCard()   {  
  06   'Insert   new   code.  
  07   }  
  08   }  
  You   must   ensure   that   users   cannot   move   control   focus   away   from   textCreditCard   if  
  ValidCreditCard   returns   a   value   of   False.   You   will   add   the   required   code   on   line   6.  
  Which   code   segment   should   you   use?   (   )  
  A.   sender   =   textName                                                 B.   CreditCard.AcceptsTab   =   False  
  C.   e.Cancel   =   True                                                     D.   CreditCard.CausesValidation   =False  
  问题点数:40、回复次数:20Top

1 楼lookatliu(独孤常败)回复于 2006-11-10 15:40:06 得分 2

15:   C  
  14题不懂Top

2 楼Eddie005(♂) №.零零伍 (♂)回复于 2006-11-10 15:43:54 得分 8

14:选C  
   
      成员名称   说明    
    DiffGram   作为   DiffGram   写入整个   DataSet,包括原始值和当前值。若要生成只包含已更改的值的   DiffGram,请调用   GetChanges,然后在返回的   DataSet   上作为   DiffGram   调用   WriteXml。      
    IgnoreSchema   以   XML   数据形式写入   DataSet   的当前内容,不带   XSD   架构。如果无数据加载到   DataSet   中,则不写入任何内容。      
    WriteSchema   以   XML   数据形式写入   DataSet   的当前内容,以关系结构作为内联   XSD   架构。如果   DataSet   只有架构而无数据,那么只写入内联架构。如果   DataSet   没有当前架构,则不写入任何内容。      
  Top

3 楼lizhizhe2000(武安侯)回复于 2006-11-10 15:45:55 得分 4

C  
  CTop

4 楼cnnetfan(cnnetfan)回复于 2006-11-10 15:46:01 得分 8

14  
  Answer:   C  
  The   XmlWriteMode   parameter   of   the   XmlWriter   class,   when   set   to   DiffGram,   creates   a   DiffGram   XML  
  document   from   a   data   set.   The   Diffgram   XML   document   format   stores   the   original   and   current   data   in   the  
  same   XML   document.   Setting   the   XmlWriteMode   parameter   to   IgnoreSchema   writes   the   contents   of   the  
  data   set   to   XML   without   including   a   schema.   Specifying   WriteSchema   will   write   both   the   data   and   the  
  schema   from   a   DataSet   object.   The   default   member   of   the   XmlWriteMode   enumeration   is   WriteSchema.  
   
  大哥你要考316?Top

5 楼Eddie005(♂) №.零零伍 (♂)回复于 2006-11-10 15:46:48 得分 2

15   不是C#Top

6 楼Eddie005(♂) №.零零伍 (♂)回复于 2006-11-10 15:48:42 得分 2

15题   不是C#,非要选的话就选c  
  Top

7 楼h110807877()回复于 2006-11-10 16:10:34 得分 1

顶  
  学学习Top

8 楼Homers()回复于 2006-11-10 16:25:49 得分 8

14.你正在写一个应有程序来保存原始的和编辑的员工信息,你将用   WriteXml   这个方法来生成xml,这个   writexml方法接受一个   xmlnode   的参数来决定   xml   的格式,   你将会选择     XmlWriteMode   的哪个枚举成员?(最好的一种)  
   
  14     :     C  
   
  15   :   CTop

9 楼pbs2000()回复于 2006-11-10 16:34:48 得分 0

非常感谢大家。  
   
  to:cnnetfan(cnnetfan),什么是316  
   
  我们公司正准备做欧美的项目,就我这英语,愁啊。Top

10 楼sanmu_bradley()回复于 2006-11-10 16:42:17 得分 1

15为什么选C?  
  Top

11 楼free_wang()回复于 2006-11-10 16:49:23 得分 0

upTop

12 楼deadshot123(空调=头晕)回复于 2006-11-10 16:56:00 得分 1

事件执行结束Top

13 楼cjnet(孤星剑)回复于 2006-11-10 17:41:58 得分 1

14.寫出數據,選擇C  
  15.取消非有效值焦點移動事件,選CTop

14 楼zhongwanli(㊣【为了老婆,二次重构____然后升★★】㊣)回复于 2006-11-10 17:48:40 得分 1

D  
   
  CTop

15 楼Forever4158(做人不能忘本,今生以孝为先!)回复于 2006-11-10 19:20:41 得分 1

请问     DiffGram  
  是什么     本人菜鸟   刚学Top

16 楼Forever4158(做人不能忘本,今生以孝为先!)回复于 2006-11-10 19:21:27 得分 0

IgnoreSchema是什么意思Top

17 楼lextm(LeLe)回复于 2006-11-10 20:26:54 得分 0

我就纳闷了,十五题怎么就不是C#了?Top

18 楼xuwei(夕阳西下,断肠人在天涯)回复于 2006-11-10 20:33:48 得分 0

也不懂,帮顶Top

19 楼cime63(流浪的孩子)回复于 2006-11-11 11:30:35 得分 0

not   very   difficultTop

20 楼zerohk(零度空间)回复于 2006-11-11 14:19:30 得分 0

c  
  cTop

相关问题

关键词

得分解答快速导航

  • 帖主:pbs2000
  • lookatliu
  • Eddie005
  • lizhizhe2000
  • cnnetfan
  • Eddie005
  • Eddie005
  • h110807877
  • Homers
  • sanmu_bradley
  • deadshot123
  • cjnet
  • zhongwanli
  • Forever4158

相关链接

  • CSDN .NET频道
  • .NET类图书
  • C#类图书
  • .NET类源码下载

广告也精彩

反馈

请通过下述方式给我们反馈
反馈
提问
网站简介|广告服务|VIP资费标准|银行汇款帐号|网站地图|帮助|联系方式|诚聘英才|English|问题报告
世纪乐知(北京)网络技术有限公司 版权所有, 京 ICP 证 020026 号
北京创新乐知广告有限公司 提供技术支持
Copyright © 2000-2007, CSDN.NET, All Rights Reserved
GongshangLogo