填空题Auction,a public sale of property to the highest bidder。(翻译)()。

题目
填空题
Auction,a public sale of property to the highest bidder。(翻译)()。

相似考题
更多“填空题Auction,a public sale of property to the highest bidder。(翻译)()。”相关问题
  • 第1题:

    You are creating a Windows Communication Foundation (WCF) service that accepts messages from clients when they are started. The message is defined as follows:[MessageContract] public class Agent {

    A. Add a MessageBodyMember attribute to the CodeName property and set the ProtectionLevel to Sign. Add a MessageBodyMember attribute to the SecretHandshake property and set the ProtectionLevel to EncryptAndSign.

    B. Add a DataProtectionPermission attribute to the each property and set the ProtectData property to true.

    C. Add an xmlText attribute to the CodeName property and set the DataType property to Signed. Add a PasswordPropertyText attribute to the SecretHandshake property and set its value to true.

    D. Add an ImmutableObject attribute to the CodeName property and set its value property to true. Add a Browsable attribute to the SecretHandshake property and set its value to false.


    参考答案:A

  • 第2题:

    共用题干
    Auctions

    Auctions are public sales of goods,conducted by an officially approved auctioneer. He or she asks the assembled crowd in the auction-room to make offers,or"bids",for the various items on sale.He encourages buyers to bid higher figures,and finally names the highest bidder as the buyer of the goods.This is called"knocking down"the goods,for the bidding ends when the auctioneer bangs a small hammer on a table at which he stands.This is often set on a raised platform called a rostrum.
    The ancient Romans probably invented sales by auction,and the English word comes from the Latin auction,meaning"increase".The Romans usually sold in this way the spoils taken in war; these sales were called"sbu hasta",meaning"under the spear",a spear being stuck in the ground as a signal for a crowd to gather. In the eighteenth and nineteenth centuries goods were often sold "by the candle",a short candle was lit by the auctioneer;and bids could be made while it stayed alight.
    An auction is usually advertised beforehand with full particulars of the articles to be sold and where and when they can be viewed by possible buyers.If the advertisement cannot give full details, catalogues are printed,and each group of goods to be sold together,called a"lot",is usually given a number. The auctioneer need not begin with Lot 1 and continue in numerical order. He may wait until he registers the fact that certain dealers are in the room and then produce the lots they are likely to be interested in.The auctioneer's services are paid for in the form of a percentage of the price the goods are sold for. The auctioneer therefore has a direct interest in pushing up the bidding as high as possible.
    Practically all goods whose qualities vary are sold by auction.Among these are coffee,hides, skins,wool,tea,cocoa,furs,spices,fruit and vegetables and wines.Auction sales are also usual for land and property,antique,furniture,pictures,rare books,old china and similar works of art. The auction rooms at Christie's and Sotheby's in London and New York are world famous.

    The auctioneer may decide to sell the"lots"out of order.
    A:Right
    B:Wrong
    C:Not mentioned

    答案:A
    解析:
    文章第二段前面提到“The Romans usually sold in this way the spoils taken in war”,他们拍卖过战利品,但是没有详细说明哪些战利品,所以该判断文章没有提到,选C。
    第二段的最后一句说到“bids could be made while it stayed alight”。只要蜡烛没有熄灭就仍然可以竞价,即限制出价的时间,所以选A。
    该判断正确。第三段第三句提到“The auctioneer need not begin with Lot 1 and continue in numerical order”。不需要按照批次拍卖,拍卖师可以决定拍卖的顺序,所以选A。
    该判断错误。第一段的第三句“finally names the highest bidder as the buyer of the goods”。出价最高的买主得到商品,并非最低价,所以选B。
    文章最后一段虽然有提到“china”,但是它是小写的单词,意思是“瓷器”,文章其他地方没有涉及中国的拍卖,更无从得知中国什么时候开始有了拍卖行,因此选C。
    文章的第一段提到解释了为什么叫“敲定”,"for the bidding ends when the auctioneer bangs a small hammer on a table",拍卖结束后拍卖师会在桌面敲击一个小锤,以示买卖成交。因此A正确。
    第二段的首句“The ancient Romans probably invented sales by auction”,拍卖或许是古罗马人发明的,文章最后一句虽然提到了英国,但只是说到了英国著名的拍卖行,并没有提到英国人发明了拍卖方式。所以选B。

  • 第3题:

    The auctionneres shall issue the auction announcement 7 days before the auction。(翻译)()。


    正确答案:拍卖人应在拍卖日前7日内以前发布公告

  • 第4题:

    术语翻译:auction()


    正确答案: 拍卖

  • 第5题:

    翻译:Sale by Descriptions and Illustrations()


    正确答案:凭说明书和图样买卖

  • 第6题:

    the highest limit of the insured value可翻译为()

    • A、逾期保管费
    • B、物品价值
    • C、包裹重量
    • D、最高保价金额

    正确答案:D

  • 第7题:

    You are implementing an ASP.NET MVC 2 Web application that contains several folders. The Views/Shared/DisplayTemplates folder contains a templated helper named Score.ascx that performs custom formatting of integer values.  The Models folder contains a class named Player with the following definition.Public Class Player   Public Property Name As String   Public Property LastScore As IntegerPublic Property HighScore As IntegerEnd Class  You need to ensure that the custom formatting is applied to LastScore values when the HtmlHelper.DisplayForModel method is called for any view in the application that has a model of type Player. What should you do?()

    • A、Rename Score.ascx to LastScore.ascx.
    • B、Move Score.ascx from the Views/Shared/DisplayTemplates folder to the Views/Player/DisplayTemplates folder.
    • C、Add the following attribute to the LastScore property. <UIHint("Score")>
    • D、Add the following attribute to the LastScore property. <Display(Name:="LastScore", ShortName:="Score")>

    正确答案:C

  • 第8题:

    You are creating a Windows Communication Foundation (WCF) service that accepts messages from clients when they are started. The message is defined as follows. [MessageContract] public class Agent { public string CodeName { get; set; }public string SecretHandshake { get; set; } } You have the following requirements: "The CodeName property must be sent in clear text. The service must be able to verify that the property value was not changed after being sent by the client. "The SecretHandshake property must not be sent in clear text and must be readable by the service. What should you do?() 

    • A、 Add a MessageBodyMember attribute to the CodeName property and set the ProtectionLevel to Sign. Add a MessageBodyMember attribute to the SecretHandshake property and set the protectionLevel to EncryptAndSign.
    • B、 Add a DataProtectionPermission attribute to the each property and set the ProtectData property to true.
    • C、 Add an XmlText attribute to the CodeName property and set the DataType property to Signed. add a PasswordPropertyText attribute to the SecretHandshake property and set its value to true.
    • D、 Add an ImmutableObject attribute to the CodeName property and set its value property to true. Add a Browsable attribute to the SecretHandshake property and set its value to false.

    正确答案:A

  • 第9题:

    填空题
    Auction,a public sale of property to the highest bidder。(翻译)()。

    正确答案: 拍卖,就是把财产卖给出价最高的竞买人的一种公开的销售方式。
    解析: 暂无解析

  • 第10题:

    填空题
    The auctionneres shall issue the auction announcement 7 days before the auction。(翻译)()。

    正确答案: 拍卖人应在拍卖日前7日内以前发布公告
    解析: 暂无解析

  • 第11题:

    单选题
    You are creating a Windows Communication Foundation (WCF) service that accepts messages from clients when they are started. The message is defined as follows. [MessageContract] public class Agent { public string CodeName { get; set; }public string SecretHandshake { get; set; } } You have the following requirements: "The CodeName property must be sent in clear text. The service must be able to verify that the property value was not changed after being sent by the client. "The SecretHandshake property must not be sent in clear text and must be readable by the service. What should you do?()
    A

     Add a MessageBodyMember attribute to the CodeName property and set the ProtectionLevel to Sign. Add a MessageBodyMember attribute to the SecretHandshake property and set the protectionLevel to EncryptAndSign.

    B

     Add a DataProtectionPermission attribute to the each property and set the ProtectData property to true.

    C

     Add an XmlText attribute to the CodeName property and set the DataType property to Signed. add a PasswordPropertyText attribute to the SecretHandshake property and set its value to true.

    D

     Add an ImmutableObject attribute to the CodeName property and set its value property to true. Add a Browsable attribute to the SecretHandshake property and set its value to false.


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

  • 第12题:

    问答题
    术语翻译:Sale by sample()

    正确答案: 凭样品买卖
    解析: 暂无解析

  • 第13题:

    intellectual property(短语翻译)

    此题为判断题(对,错)。


    正确答案:知识产权

  • 第14题:

    共用题干
    Auctions

    Auctions are public sales of goods,conducted by an officially approved auctioneer. He or she asks the assembled crowd in the auction-room to make offers,or"bids",for the various items on sale.He encourages buyers to bid higher figures,and finally names the highest bidder as the buyer of the goods.This is called"knocking down"the goods,for the bidding ends when the auctioneer bangs a small hammer on a table at which he stands.This is often set on a raised platform called a rostrum.
    The ancient Romans probably invented sales by auction,and the English word comes from the Latin auction,meaning"increase".The Romans usually sold in this way the spoils taken in war; these sales were called"sbu hasta",meaning"under the spear",a spear being stuck in the ground as a signal for a crowd to gather. In the eighteenth and nineteenth centuries goods were often sold "by the candle",a short candle was lit by the auctioneer;and bids could be made while it stayed alight.
    An auction is usually advertised beforehand with full particulars of the articles to be sold and where and when they can be viewed by possible buyers.If the advertisement cannot give full details, catalogues are printed,and each group of goods to be sold together,called a"lot",is usually given a number. The auctioneer need not begin with Lot 1 and continue in numerical order. He may wait until he registers the fact that certain dealers are in the room and then produce the lots they are likely to be interested in.The auctioneer's services are paid for in the form of a percentage of the price the goods are sold for. The auctioneer therefore has a direct interest in pushing up the bidding as high as possible.
    Practically all goods whose qualities vary are sold by auction.Among these are coffee,hides, skins,wool,tea,cocoa,furs,spices,fruit and vegetables and wines.Auction sales are also usual for land and property,antique,furniture,pictures,rare books,old china and similar works of art. The auction rooms at Christie's and Sotheby's in London and New York are world famous.

    China has already had auction sales since earlier times.
    A:Right
    B:Wrong
    C:Not mentioned

    答案:C
    解析:
    文章第二段前面提到“The Romans usually sold in this way the spoils taken in war”,他们拍卖过战利品,但是没有详细说明哪些战利品,所以该判断文章没有提到,选C。
    第二段的最后一句说到“bids could be made while it stayed alight”。只要蜡烛没有熄灭就仍然可以竞价,即限制出价的时间,所以选A。
    该判断正确。第三段第三句提到“The auctioneer need not begin with Lot 1 and continue in numerical order”。不需要按照批次拍卖,拍卖师可以决定拍卖的顺序,所以选A。
    该判断错误。第一段的第三句“finally names the highest bidder as the buyer of the goods”。出价最高的买主得到商品,并非最低价,所以选B。
    文章最后一段虽然有提到“china”,但是它是小写的单词,意思是“瓷器”,文章其他地方没有涉及中国的拍卖,更无从得知中国什么时候开始有了拍卖行,因此选C。
    文章的第一段提到解释了为什么叫“敲定”,"for the bidding ends when the auctioneer bangs a small hammer on a table",拍卖结束后拍卖师会在桌面敲击一个小锤,以示买卖成交。因此A正确。
    第二段的首句“The ancient Romans probably invented sales by auction”,拍卖或许是古罗马人发明的,文章最后一句虽然提到了英国,但只是说到了英国著名的拍卖行,并没有提到英国人发明了拍卖方式。所以选B。

  • 第15题:

    Auction,a public sale of property to the highest bidder。(翻译)()。


    正确答案:拍卖,就是把财产卖给出价最高的竞买人的一种公开的销售方式。

  • 第16题:

    关于拍卖方式出售的物品,以下正确的的选项有()

    • A、卖家刊登一件或多件“拍卖”物品,不设定起拍价格
    • B、买家可在物品“拍卖/Auction”期间浏览物品详细信息并出价竞拍
    • C、“拍卖/Auction”结束后,最高“出价者/Bidder”以中标的金额买下物品
    • D、出价最高的买家即为该物品的中标者

    正确答案:B,C,D

  • 第17题:

    “公共关系”这个词是由英文()翻译过来的,简称“PR”。

    • A、 Public Relation
    • B、 Public Relations
    • C、 Public Relative
    • D、 Public Relational

    正确答案:B

  • 第18题:

    You use Microsoft Visual Studio 2010 and Microsoft . NET Framework 4 to create a Windows Presentation Foundation (WPF) application. You create a WPF window in the application. You add the following code segment to the application. public class ViewModel { public CollectionView Data { get; set; } } public class BusinessObject { public string Name { get; set; } } The DataContext property of the window is set to an instance of the ViewModel class. The Data property of the ViewModel instance is initialized with a collection of BusinessObject objects. You add a TextBox control to the Window. You need to bind the Text property of the TextBox control to the Name property of the current item of the CollectionView of the DataContext object. You also need to ensure that when a binding error occurs, the Text property of the TextBox control is set to N/A . Which binding expression should you use?()

    • A、 { Binding Path=Data/Name, FallbackValue='N/A' }
    • B、 { Binding Path=Data.Name, FallbackValue='N/A' }
    • C、 { Binding Path=Data/Name, TargetNullValue='N/A' } 
    • D、 { Binding Path=Data.Name, TargetNullValue='N/A' }

    正确答案:A

  • 第19题:

    You are creating a Windows Communication Foundation (WCF) service to process orders.The data contract for the order is defined as follows:[DataContract]public class Order{ [DataMember] public string CardHolderName { get; set; } [DataMember] public string CreditCardNumber { get; set; }}You have the following requirements: Enable the transmission of the contents of Order from the clients to the service. Ensure that the contents of CreditCardNumber are not sent across the network in clear text. Ensure that the contents of CreditCardNumber are accessible by the service to process the order.You need to implement the service to meet these requirements. What should you do?()

    • A、Add a DataProtectionPermission attribute to the CreditCardNumber property and set the ProtectData property to true.
    • B、Convert the DataContract to a MessageContract and set the ProtectionLevel property to SignAndEncrypt.
    • C、Change the data type of CreditCardNumber from string to SecureString.
    • D、Implement the CreditCardNumber property getter and setter In the setter, run the value of the CreditCardNumber through the MD5CryptoServiceProvider class TransformBlock method.

    正确答案:B

  • 第20题:

    单选题
    You use Microsoft Visual Studio 2010 and Microsoft . NET Framework 4 to create a Windows Presentation Foundation (WPF) application. You create a WPF window in the application. You add the following code segment to the application. public class ViewModel { public CollectionView Data { get; set; } } public class BusinessObject { public string Name { get; set; } } The DataContext property of the window is set to an instance of the ViewModel class. The Data property of the ViewModel instance is initialized with a collection of BusinessObject objects. You add a TextBox control to the Window. You need to bind the Text property of the TextBox control to the Name property of the current item of the CollectionView of the DataContext object. You also need to ensure that when a binding error occurs, the Text property of the TextBox control is set to N/A . Which binding expression should you use?()
    A

     { Binding Path=Data/Name, FallbackValue='N/A' }

    B

     { Binding Path=Data.Name, FallbackValue='N/A' }

    C

     { Binding Path=Data/Name, TargetNullValue='N/A' } 

    D

     { Binding Path=Data.Name, TargetNullValue='N/A' }


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

  • 第21题:

    填空题
    “800 sold to bidder NO.168.”所表示的中文意思是()。

    正确答案: 该标的以800元的价格卖给了第168号
    解析: 暂无解析

  • 第22题:

    填空题
    翻译:Sale by Descriptions and Illustrations()

    正确答案: 凭说明书和图样买卖
    解析: 暂无解析

  • 第23题:

    问答题
    术语翻译:auction()

    正确答案: 拍卖
    解析: 暂无解析

  • 第24题:

    单选题
    When Brad offered his old wooden desk at a garage sale, no one bought it, even though he offered it for only $10. When he offered it at the local auction house, however, someone bought it for $850.  Which of the following, if true, best explains why Brad was able to sell the desk for a high price at the auction while he could not sell it for a much lower price at the garage sale?
    A

    Brad advertised that the proceeds of the garage sale would benefit a local charity, while he made no such claims for the proceeds from the auction.

    B

    One of the legs of the desk was shorter than the other three, producing an unbalanced writing surface.

    C

    The auction house specializes in selling antique furniture, which is generally valued more highly than the discarded furniture sold at garage sales.

    D

    Brad insisted that anyone who bought the desk had to use it as an actual workspace.

    E

    Prospective buyers at auctions are often more interested in the auction process than in the items up for bid.


    正确答案: D
    解析:
    C项暗示Brad的桌子在典当行销售的时候被鉴定成为一件文物,而不是一件不用的旧家具,这样Brad卖出的价钱就增多了,故本题选C项。