研究生入学

Text 1 Denmark is once again distinguishing itself in the race against food waste-this time,with a supermarket hawking items once destined for the trash bin.Those items might include treats for a holiday that happened last week,a ripped box of comflakes,p

题目
Text 1 Denmark is once again distinguishing itself in the race against food waste-this time,with a supermarket hawking items once destined for the trash bin.Those items might include treats for a holiday that happened last week,a ripped box of comflakes,plain white rice mislabeled as basmati,or anything nearing its expiration date.In other words,perfectly edible items that are nonetheless considered unfit for salc by the retailers and manufacturers who donate them.WeFood is not the first grocer in Europe to sell surplus food.But unlike so-called"social supermarkets"-stores which serve almosL exclusively low-income people-WeFood's offerings are very intentionally aimed at the general public.High-income families will also choose WeFood for its environmental-friendly conception.The store's goods are priced 30 t0 50 percent lower than those in regular supermarkets,according to WeFood.The store has already been a huge success,attracting large numbers of customers.People have lined up before the store's opening every moming since its launch on Monday.But is this food safe to eat?Safety is always the first concern coming up to your mind.Well,the"sell by"date you see on many products actually refers to its freshness-not whether or not it's going to do you any harm.In many cases,food that's beyond this date won't be as fresh as it once was but is still perfectly edible.The food might have not yet gone bad when the"sell by"date expires.Of course you should still be careful to avoid eating food that's gone off,but you might find you don't have to throw away as much as you think you do.Denmark throws away about 700,000 tons of food every year,according to several estimates.In fact,food waste is a major problem for the whole world.Some 795 million people are undemourished globally,according to the World Food Program.Yet about a third of all food produced in the world-some l.3 billion tons-is wasted each year,according to the United Nations.The cost of global food wastage is about$1 trillion a year.All of the store's proceeds will go to DanChurchAid's work in developing nations like South Sudan and Bangladesh.
It can be learned from Paragraph l that a supermarket in Denmark——

A.recycles the wasted food in supermarket
B.runs a campaign against food waste
C.donates food to retailers and manufacturers
D.reuses mislabeled food in supermarket
参考答案和解析
答案:D
解析:
事实细节题。根据定位词定位到第一段。第一段指出丹麦在避免浪费食物方面从各国中脱颖而出,它的一家超市开始出售那些本该扔进垃圾箱的东西。那些东西可能包括上周刚过的一个节日剩下的一些宴飨,外包装破损了的玉米片,标签错贴成印度香米的普通大米,以及任何快到期的食品。只有D项“重新使用超市里贴错标签的食品”最符合原文的意思。【干扰排除】A项,recycles是指旧物利用。在此不存在旧物,而是一些不适合对外销售的食物,所以不正确;B项,文中并未说超市出售被浪费的食品是一项由丹麦发起的反对食物浪费的运动,故B项不正确;C项,原文说的是接受零售商和制造商的捐赠,而非向零售商和制造商捐赠食物,所以不正确。
如果没有搜索结果,请直接 联系老师 获取答案。
相似问题和答案

第1题:

(iv) Tyre recently undertook a sales campaign whereby customers can obtain free car accessories, by presenting a

coupon, which has been included in an advertisement in a national newspaper, on the purchase of a vehicle.

The offer is valid for a limited time period from 1 January 2006 until 31 July 2006. The management are unsure

as to how to treat this offer in the financial statements for the year ended 31 May 2006.

(5 marks)

Required:

Advise the directors of Tyre on how to treat the above items in the financial statements for the year ended

31 May 2006.

(The mark allocation is shown against each of the above items)


正确答案:
(iv) Car accessories
An obligation should not be recognised for the coupons and no provision created under IAS37 ‘Provisions, Contingent
Liabilities and Contingent Assets’. A provision should only be recognised where there is an obligating event. There has to be
a present obligation (legal or constructive), the probability of an outflow of resources and the ability to make a reliable estimate
of the amount of the obligation. These conditions do not seem to have been met. Until the vehicle is purchased the
accessories cannot be obtained. That is the point at which the present obligation arises, the outflow of resources occurs and
an estimate of the amount of the obligation can be made. When the car is purchased, the accessories become part of the
cost of the sale. The revenue recognised will be the amount received from the customer (the sales price). The revenue will
not be grossed up to include the value of the accessories.

第2题:

Current liabilities may include the following items ______.

A.taxes payable

B.dividends payable

C.accounts payable

D.all of the above


正确答案:D
解析:文章第二段提到Current liabilities are those obligations...and dividends payable.流动负债是指在一年内到期的短期债务,包括应付税款、应付利息、应付账款等,所以,本题应选D项。

第3题:

The music in the supermarket sounded so??____________ that I wanted to leave at once.

A. soft B. wonderful C. friendly D. noisy


正确答案:D

第4题:

_______ had he gone to sleep, than the telephone rang once again.

A、Hardly

B、Scarcely

C、Just

D、No sooner


参考答案:D

第5题:

引用列表框ListBox1最后一个数据项应使用()。

A、ListBox1.Items(ListBox1.Items.Count)

B、ListBox1.Items(ListBox1.Items.Count-1)

C、ListBox1.Text

D、ListBox1.Items(ListBox1.SelectedIndex)


参考答案:B

第6题:

各位大神求救。。。c语言玩猜数字游戏,单一局结束时,为什么不可以循环?下面代码:

#include<stdio.h>#include<time.h>#include<stdlib.h>void main(){ int a,b,c,num; char r; printf("welcom to guess number game,in this game you will have 10 chances to guess the right number.\n"); srand((unsigned) time(NULL)); num=rand()%100+1; printf("do you want to play this game? y/n :"); scanf("%c",&r); while(r=='y') { printf("start!!\n"); printf("please input a number between 1 and 100"); scanf("%d",&a); while(a!=num) { if(a>num) { printf("bigger,input once again:"); scanf("%d",&a); } if(a<num) { printf("smaller,input once again:"); scanf("%d",&a); } } printf("you are so clever,do you want to play once more? y/n :"); scanf("%c",&r); }}


#include<stdio.h> #include<time.h> #include<stdlib.h> void main() { int a,b,c,num; char r; printf("welcom to guess number game,in this game you will have 10 chances to guess the right number.\n"); srand((unsigned) time(NULL)); num=rand()%100+1; printf("do you want to play this game? y/n :"); scanf("%c",&r); while(r=='y') { printf("start!!\n"); printf("please input a number between 1 and 100"); scanf("%d",&a); while(a!=num) { if(a>num) { printf("bigger,input once again:"); scanf("%d",&a); } if(a<num) { printf("smaller,input once again:"); scanf("%d",&a); } } printf("you are so clever,do you want to play once more? y/n :"); getchar(); scanf("%c",&r); } }

第7题:

运行时(run-time)包含一个PHP脚本使用(),而编译时(compile-time)包含一个PHP脚本使用()。()

A.include_once,include

B.require,include

C.require_once,include

D.以上皆可


参考答案:D

第8题:

The like to take a vacation ().

A.one time the year

B.one time in a year

C.once a year

D.once in a year


参考答案:C

第9题:

以下哪项不是文件包含涉及的函数。()

A.require()

B.phpinfo()

C.include_once()

D.include()


正确答案:B

第10题:

向列表框中的最后填加一个新项目,正确的语句是()。

A、ListBox1.Items.Add(“HowareYou“)

B、ListBox1.Items.Insert(“HowareYou“)

C、ListBox1.Items.Add(2,“HowareYou“)

D、ListBox1.Items.Insert(2,“HowareYou“)


正确答案:A

更多相关问题