首页 > 外贸类考试
题目内容 (请给出正确答案)
[主观题]

“What's the date today?” “It's _________.”

A.Tuesday

B.June Fourth

C.June the four

D.June the fourth

查看答案
答案
收藏
如果结果不匹配,请 联系老师 获取答案
您可能会需要:
您的账号:,可能还需要:
您的账号:
发送账号密码至手机
发送
安装优题宝APP,拍照搜题省时又省心!
更多““What's the date today?” “It's…”相关的问题
第1题
Witch acquired 70% of the 200,000 equity shares of Wizard, its only subsidiary, on 1
April 20X8 when the retained earnings of Wizard were $450,000.The carrying amounts of Wizard's net assets at the date of acquisition were equal to their fair values apart from a building which had a carrying amount of $600,000 and a fair value of $850,000.The remaining useful life of the building at the acquisition date was 40 years.

Witch measures non-controlling interest at fair value, based on share price.The market value of Wizard shares at the date of acquisition was $1.75.At 31 March 20X9 the retained earnings of Wizard were $750,000.

At what amount should the non- controlling interest appear in the consolidated statement of financial position of Witch at 31 March 20X9().

A、$195,000

B、$193,125

C、$135,000

D、$188,750

点击查看答案
第2题
设变量D为Date型、A为Integer型、S为String型、L为Long型,下面赋值语句中不能执行的是()。

A.D=#11:30:00 PM#

B.A= "182" * 182

C.S=Date

D.L="5487D4"

点击查看答案
第3题
The invention of telephone has greatly eased the communication among people,but callers
should be careful about when to make a phone call or it will cause embarrassments.

It is not customary to telephone someone very early in the morning in the USA. If someone is called very early in the morning,while he is shaving or having breakfast,the time of the call indicates great importance of the matter which requires immediate attention of the person called. The same implication is attached to telephone calls made after 11:00 p.m. at night. If someone receives a call during sleeping hours,he assumes it’s an urgency of life or death. The time chosen for the call communicates its importance. Time plays a very important role in our social life as you can imagine. In the USA an invitation should be sent to the guests in advance because guests usually believe that they are not highly regarded if the invitation to a dinner party is extended only three or four days before the party date. But it is not always necessarily true of the case all over the world. In some other countries,it may be taken stupid to make an appointment too far in advance because plans made for a date more than a week away tend to be forgotten. The concept of time varies in different regions of the world. Thus,misunderstandings are sometimes inevitable between men of different cultural backgrounds that treat time differently. Promptness is valued highly in America,for example. A lack of promptness is regarded as being impolite or not being fully responsible. In the US it would be incredible to keep a business partner or a guest waiting for an hour,and it would be too impolite and unacceptable by their social etiquettes. A person who is 5 minutes late is expected to give some words of explanation to the people waiting,though he might not complete his sentence.

16. What is the main idea of this passage?

A. It is not customary to telephone someone in the morning or in sleeping hours in the US.

B. The role of time in social life over the world..

C. If people are not prompt,they may be regarded as impolite or not fully responsible in the US.

D. Not every country treats the concept of time as the same.

17. What does it mean according to the passage if you call someone during his or her sleeping hours?

A. A matter of work.

B. A matter of life or death.

C. You want to see him or her.

D. You want to make an appointment with him or her.

18. Which of the following time is proper if you want to make an appointment with your friend?

A. At 7:00 a.m.

B. At 4:00 p.m.

C. At the midnight.

D. At 4:00 a.m.

19. Which of the following statements is true according to the passage?

A. In the USA guests tend to feel they are highly regarded if the invitation to a dinner party is expended only three or four days before the party date.

B. There id no misunderstanding between people from different cultures about the concept of time.

C. It may be considered foolish to make an appointment well in advance in the USA.

D. Being on time is highly valued in America.

20. From the passage we can infer that ____________.

A. it’s a matter of life or death if you call someone in daytime

B. the meaning of time differs in different parts of the world

C. it makes no difference in the US whether you are early or late for a business party

D. if a person is late for a date,he needn’t make any explanation

点击查看答案
第4题
为了使程序的输出的正确结果为:Now is 2004.7.1010:10:10.那么应在下列程序划线处填入的正确语句

为了使程序的输出的正确结果为: Now is 2004.7.10 10:10:10. 那么应在下列程序划线处填入的正确语句是()。 那么应在下列程序划线处填入的正确语句是()。 #include <iostream> using namespace std; class TIME; class DATE { public: DATE(int y=2004,int m=1,int d=1) { year=y; month=m; day=d; } friend void DateTime(DATE &d, TIME &t); private: int year, month, day; }; class TIME { public: TIME(iht h=0, int m=0,int s=0) { hour=h; minute=m; second=s; } friend void DateTime(DATE &d,TIME &t); private: int hour,minute, second; }; ______________________ //函数 DateTime 的首部 { cout<<"Now is"<<d.year<<'.'<<d.month<<'.'<<d.day<< ' '<<t.hour<<":"<<t.minute<<':'<<t.second<<'.'<<end1; } int main () { DATE d(2004,7,10); TIME t(10, 10, 10); DateTime(d,t); return 0; }

A.void DateTime(DATE &d,TIME &t)

B.void TIME::DateTime(DATE &d,TIME &t) const

C.friend void DateTime(DATE &d,TIME &t)

D.void DATE::DateTime(DATE &d,TIME &t)

点击查看答案
第5题
为使下列程序的正确输出结果为: Now is 2004-7-6 12:12:12 那么应该在程序划线处填入的语句是()。

为使下列程序的正确输出结果为: Now is 2004-7-6 12:12:12 那么应该在程序划线处填入的语句是()。 #include <iostream> using namespace std; class TIME; class DATE { public: DATE(int y=2004,int m=1,int d=1) { year=y; month=m; day=d; } void DateTime(TIME &t); private: int year,month, day; }; class TIME { public: TIME(int h=0,int m=0,int s=0) { hour=h; minute=m; second=s; } ______________; //将类 DATE 中成员函数 DateTime 声明为类 TIME 的友元函数 private: int hour,minute, second; }; void DATE: :DateTime(TIME &t) { cout<<"Now is "<<year<<'-'<<month<<'-'<<day<< ' '<<t.hour<<":"<<t.minute<<': '<<t.seoond<<'.'<<end1; } int main () { DATE d(2004,7,6); TIME t (12, 12, 12); d. DateTime (t); return 0; }

A.friend void DateTime(TIME &t);

B.friend void DATE::DateTime(TIME &0;

C.void DateTime(TIME &t);

D.friend void DateTime(TIME &t);

点击查看答案
第6题
DATE AND METHOD OF SHIPMENT:20 June,2007-30 June,2007 by sea; otherwise 1 July,2007-15 Ju

DATE AND METHOD OF SHIPMENT:20 June,2007-30 June,2007 by sea;

otherwise 1 July,2007-15 July,2007 on seller's account by air.

(1) 翻译:

(2) 该合同下的货能否在18 June,2007或18 July,2007装运,为什么?

点击查看答案
第7题
以下程序设计功能是:将结构体变量time 中的内容写到文件中。include <iostream>using namespace s

以下程序设计功能是:将结构体变量time 中的内容写到文件中。

include <iostream>

using namespace std;

struct date

{

int year;

int month;

int day;

}

int main ()

{

date time = { 2005, 1, 1 };

ofstream outdate;

outdate.open("d:\\date.txt", ios :: binary );

outdate.write(____________, sizeof(tt ) );

outdate.close();

return 0;

}

则程序中空白处应该填入的语句为【 】。

点击查看答案
第8题
Terry receives investment property from her mother as a gift in 2018. Her mother paid
$15,000 for the property in 2012, and it is valued at $18,000 on the date of the gift. Terry sells the property eight months later for $16,000. Terry's gain or loss is()。

A、Short-term ordinary loss

B、Short-term capital gain

C、Short-term capital loss

D、Long-term ordinary gain

E、Long-term capital gain

点击查看答案
第9题
一转让信用证以甲公司为受益人。甲公司转让行申请转让给最终供货方第二受益人丙公司。转让金额为US
D8,000.00。原可转让信用证条款如下: FROM:ABN AMRO BANK ,NEW YORK TO:BANK OF CHINA,JIANGSU EXPIRY DATE AND PLACE:041112 ISSUING BANK’S COUNTER AMT:USD100,000.00 LATEST SHIPMENT DATE:041015 BENEFICIARY: A COTTON SHIRTS USD10.00/PC,FOB NANJING DOCUMENTS REQUIRED: * INVOCES ISSUED IN TRIPLICATE IN FAVOR OF B COMPANY * FULL SET OF BILL OF LADING MADE OUT TO ORDER OF SHIPPER NOTIFYING THE APPLICANT MARKED FREIGHT COLLECT. * BENFICIARY’S FAX SENT TO APPLICANT (FAX NO.1-212-345-6789)ADVISING SHIPMENT DETAILS INCLUDING UNIT PRICE,TTL AMT,SHIPMENT DATE AND ETC WTTHIN 2DAYS AFTER SHIPMENT. 结合UCP500的规定,为了转让信用证转让的目的并便于业务操作,甲公司在申请转让时应联系乙公司修改的条款是:

A.发票抬头

B.提单通知人

C.受益人传真

D.贸易术语

点击查看答案
第10题
The earned value technique is a commonlyused method of performance measurement. It integra
tes project scope, cost, andschedule measures to help the project management team assess projectperformance.If a project’s Schedule Performance Index(SPI=EV/PV) value less than 1.0, itmeans that (74).

A.the project is ahead of its planned schedule

B.less work was completed than was planned

C.the cost overrun for work completed

D.the cost under-run of performance to date

点击查看答案
第11题
在命令窗口中执行下面命令序列,最后一条命令的输出结果是()。 SET CENTURY ON SET MARK T0〝?〞 S

在命令窗口中执行下面命令序列,最后一条命令的输出结果是()。

SET CENTURY ON

SET MARK T0〝?〞

SET DATE TO YMD

?{^2013-11-30)

A.2013-11-30

B.13-11-30

C.2013/11/30

D.2013? 11? 30

点击查看答案
退出 登录/注册
发送账号至手机
密码将被重置
获取验证码
发送
温馨提示
该问题答案仅针对搜题卡用户开放,请点击购买搜题卡。
马上购买搜题卡
我已购买搜题卡, 登录账号 继续查看答案
重置密码
确认修改