【单选题】【消耗次数:1】
十进制数字限制:假设Schema的名字空间前缀为“xsd”,现在需要定义名为“coursegradeType”的简单类型,要求取值为[0,100]之间的小数,且小数位数只有一位,下面正确的选项是()。
xsd:simpleTypename=coursegradeTypexsd:restrictionbase=xsd:decimalxsd:totalDigitsvalue=1/xsd:minInclusivevalue=0/xsd:maxInclusivevalue=100//xsd:restriction/xsd:simpleType
xsd:simpleTypename=coursegradeTypexsd:restrictionbase=xsd:decimalxsd:totalDigits"xsd:simpleTypename=coursegradeTypexsd:restrictionbase=xsd:decimalxsdfractionDigitsvalue=1/xsd:minInclusivevalue=0/xsd:maxInclusivevalue=100//xsd:restriction/xsd:simpleType"value=1/xsd:minInclusivevalue=0/xsd:maxInclusivevalue=100//xsd:restriction/xsd:simpleType
xsd:simpleTypename=coursegradeTypexsd:restrictionbase=xsd:decimalxsd:totalDigitsvalue=4/xsd:minInclusivevalue=0/xsd:maxInclusivevalue=100//xsd:restriction/xsd:simpleType
xsd:simpleTypename=coursegradeTypexsd:restrictionbase=xsd:decimalxsd:fractionDigitsvalue=4/xsd:minInclusivevalue=0/xsd:maxInclusivevalue=100//xsd:restriction/xsd:simpleType
参考答案:
复制
纠错
相关题目
【单选题】 union类型:假设Schema的名字空间前缀为“xsd”,现在需要定义名为“contactType”的简单类型,要求取值为"phoneType"类型或“emailType”类型,下面正确的选项是()。
①  xsd:simpleTypename="contactType"xsd:unionunionType="phoneType"//xsd:simpleType
②  xsd:simpleTypename="contactType"xsd:unionunionType="phoneTypeemailType"//xsd:simpleType
③  xsd:simpleTypename="contactType"xsd:unionmemberType="phoneType"//xsd:simpleType
④  xsd:simpleTypename="contactType"xsd:unionmemberType="phoneTypeemailType"//xsd:simpleType
【多选题】 模式限制:假设Schema的名字空间前缀为“xsd”,现在需要定义名为“phoneType”的简单类型,在“string”类型的基础上增加模式限制,要求是手机号码,下面正确的选项是()。
①  xsd:simpleTypename="phoneType"xsd:restrictionbase="xsd:string"xsd:patternvalue="[0,9]{11}"//xsd:restriction/xsd:simpleType
②  xsd:simpleTypename="phoneType"xsd:restrictionbase="xsd:string"xsd:patternvalue="[0,9]{11}+"//xsd:restriction/xsd:simpleType
③  xsd:simpleTypename="phoneType"xsd:restrictionbase="xsd:string"xsd:patternvalue="[0,9]{11}?"//xsd:restriction/xsd:simpleType
④  xsd:simpleTypename="phoneType"xsd:restrictionbase="xsd:string"xsd:patternvalue="[0-9]{11}"//xsd:restriction/xsd:simpleType
【单选题】 范围限制:假设Schema的名字空间前缀为“xsd”,现在需要定义名为“namestringType”的简单类型,在“string”类型的基础上增加范围限制,要求字符串的最小长度为2,最大长度为20,下面正确的选项是()。
①  xsd:simpleTypename="namestringType"xsd:restrictionbase="xsd:string"xsd:minLengthvalue="2"/xsd:maxLengthvalue="20"//xsd:restriction/xsd:simpleType
②  xsd:simpleTypename="namestringType"xsd:restrictionbase="xsd:string"xsd:Lengthvalue="2"/xsd:maxLengthvalue="20"//xsd:restriction/xsd:simpleType
③  xsd:simpleTypename="namestringType"xsd:restrictionbase="xsd:string"xsd:minLengthvalue="2"xsd:Lengthvalue="20"/xsd:restriction/xsd:simpleType
④  xsd:simpleTypename="namestringType"xsd:restrictionbase="xsd:string"xsd:minLengthvalue="2"/xsd:Lengthvalue="20"//xsd:restriction/xsd:simpleType
【多选题】 假设complexType元素的名字空间前缀为“xsd”,现在需要定义一个复杂内容元素类型,该类型包含名称分别为“email”和“phone”的两个子元素,两个子元素的类型分别为事先已经定义好的“emailType”和“phoneType”,这两个子元素均出现一次,且可以以任意顺序出现,下面正确的选项是()。
①  xsd:complexTypename="contactType"xsd:allxsd:elementname="email"type="emailType"/xsd:elementname="phone"type="phoneType"//xsd:all/xsd:complexType
②  xsd:complexTypename="contactType"xsd:allxsd:elementname="email"type="emailType"minOccurs="1"/xsd:elementname="phone"type="phoneType"minOccurs="1"//xsd:all/xsd:complexType
③  xsd:complexTypename="contactType"xsd:allxsd:elementname="email"type="emailType"maxOccurs="1"/xsd:elementname="phone"type="phoneType"maxOccurs="1"//xsd:all/xsd:complexType
④  xsd:complexTypename="contactType"xsd:allxsd:elementname="email"type="emailType"minOccurs="1"maxOccurs="1"/xsd:elementname="phone"type="phoneType"minOccurs="1"maxOccurs="1"//xsd:all/xsd:complexType
【单选题】 空格及制表符会被替换为空格,开头和结尾的空格被移除,而多个连续的空格会被缩减为单一的空格,下面正确的选项是()。
①  xsd:simpleTypename="nameType"xsd:restrictionbase="xsd:string"xsd:whiteSpacevalue="collapse"//xsd:restriction/xsd:simpleType
②  xsd:simpleTypename="nameType"xsd:restrictionbase="xsd:string"xsd:whiteSpacevalue="replace"//xsd:restriction/xsd:simpleType
③  xsd:simpleTypename="nameType"xsd:restrictionbase="xsd:string"xsd:whiteSpacevalue="preserve"//xsd:restriction/xsd:simpleType
④  xsd:simpleTypename="nameType"xsd:restrictionbase="xsd:string"xsd:whiteSpacevalue="conpress"//xsd:restriction/xsd:simpleType
【单选题】 能正确表示x的取值范围在[0,100]和[-10,-5]内的表达式是。
①  (x=-10)||(x=-5)(x=0)||(x=100)
②  (x=-10)(x=-5)(x=0)(x=100)
③  (x=-10)(x=-5)||(x=0)(x=100)
④  (x=-10)||(x=-5)||(x=0)||(x=100)
【单选题】 能正确表示x的取值范围在[0,100]和[-10,-5]内的表达式是。
①  (x=-10)||(x=-5)(x=0)||(x=100)
②  (x=-10)(x=-5)||(x=0)(x=100)
③  (x=-10)(x=-5)(x=0)(x=100)
④  (x=-10)||(x=-5)||(x=0)||(x=100)
【判断题】 KDJ指标的J值的取值范围在0—100之间。
①  正确
②  错误
【单选题】 伸长率δ=(l-l0)/l0×100%,其中l为()。
①  试件的标距长度
②  试件的直径
③  试件的周长
④  试件拉断后的标距长度
【判断题】 KDJ指标的J值的取值范围在0-?-100?之间。
①  正确
②  错误
随机题目
【单选题】 企业发生的广告费应记入()。
①  销售费用
②  管理费用
③  营业外支出
④  所得税费用
【单选题】 某企业除销商品时知晚客户财务困难,不能确定能否收回货款,为了维持客户的长期合作关系仍将商品发出并开具销售发票,对于该赊销,不需要进行相关的会计处理。()
① 
②  ×
【单选题】 在某一时段内履行的履约义务,若能合理确定履约进度的,企业应于资产负债表日按照合同的交易价格总额乘以履约进度扣除以前会计期间累计己确认的收入后的金额,确认当期收入。( )
① 
②  ×
【单选题】 企业接受固定资产捐赠产生的利得计入资本公积。( )
① 
②  ×
【单选题】 年度终了,企业应将“本年利润”科目的本年累计余额转入“利润分配一未分配利润”科目。()
① 
②  ×
【单选题】 企业在确定商品销售收入时,应该考虑各种可能发生的现金折扣。( )
① 
②  ×
【多选题】 下列各项中,属于工业企业营业收入的有()。
①  债权投资的利息收入
②  出租无形资产的租金收入
③  销售产品取得的收入
④  出售无形资产的净收益
【多选题】 下列各项中,制造业企业应通过“其他业务收入”科目核算的有()。
①  出租包装物实现的收入
②  对外提供运输服务取得的收入
③  对外出租闲置设备取得的租金收入
④  出售自产产品取得的销售收入
【多选题】 下列各项中,企业不应计入销售费用的有()。
①  商标法侵权案发生的诉讼费
②  行政管理部门负担的工会经费
③  专设销售机构固定资产的折旧费
④  向中介机构支付的咨询费
【多选题】 下列各项中,应计入制造业企业其他业务成本的有()
①  经营租出固定资产的折旧额
②  经营租出无形资产的摊销额
③  销售原材料的实际成本
④  出租包装物的摊销额