2021知到答案【 旅游目的地管理】智慧树网课章节测试答案

What is the text mainly about?

A. The research into war history.

B. The finding of a forgotten hero.

C. The pilots of the two world wars.

D.The importance of military studies.


正确答案:B


it is how important for the visitor to ____ an understanding of the language.

A、has

B、having

C、had

D、have


标准答案:D


__________ is the process of motivating a group of people towards achieving a common goal.

A、Planning

B、Organizing

C、Leading

D、Controlling


参考答案:C


I had better explain that I was a ______ visitor to the headmaster ’s study.

A: rare

B: silly

C: strange

D: frequent


参考答案:D


It mattered a great deal of her what other people thought of her.()

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


参考答案:错误


第 页2021知到答案【 旅游目的地管理 】智慧树网课章节测试答案 第五章 章节测试 1、选择题:An activity refers to the physical action taken by the CVB functional area. It helps the CVB and its staff to know whether the activity taken reaches its goal.选项:A:错B:对答案: 【错】2、选择题:What are the two fundamental topics CVBs deal with in the research process?选项:A:visitor studies and convention studiesB:visitor profiles and image studiesC:performance indicators and performance measuresD:destination research and CVB accountability research答案: 【destination research and CVB accountability research】3、选择题:Which is not included in direct data?选项:A:jobs produceB:economic multiplierC:payrollD:visitor spending答案: 【economic multiplier】4、选择题:CVB Performance Reporting process includes the following three functional areas:选项:A:convention salesB:operational definitions and measuresC:marketing and communicationD:travel trade sales答案: 【convention sales;marketing and communication;travel trade sales】5、选择题:Marketing productivity is measured through the number of visitors.选项:A:错B:对答案: 【错】 第六章 章节测试 1、选择题:Which of the following is an element of a communications plan?选项:A:Television interviewsB:StrategyC:ChairpersonD:Press releases答案: 【Strategy】2、选择题:News releases are written in which format?选项:A:HourglassB:ChronologicalC:Inverted pyramidD:Freestyle答案: 【Inverted pyramid】3、选择题:An important question to ask when planning an individual journalist visit to a destination is:选项:A:What kind of rental car would the journalist prefer?B:What is the journalists favorite restaurant?C:What is the story angle the journalist is pursuing?D:Will the trip be fully escorted, or will the journalist be on his or her own for part of the trip?答案: 【What is the story angle the journalist is pursuing?】4、选择题:Which of the following people would be the likeliest choice for a spokesperson for a CVB?选项:A:A local celebrityB:A customer service representativeC:Its director of marketing and salesD:One of its telephone operators答案: 【Its director of marketing and sales】5、选择题:A review of strengths and weaknesses and a competitive analysis is which part of an organizations communi

Please (填写)_____ this visitor’s registry book.

A.fill with

B.fill in

C.fill away

D.fill up


正确答案:B


What are two characteristics of the RED algorithm as implemented in JUNOS software?()

A. It profiles based on bandwidth.

B. It profiles based on loss priority.

C. It prevents traffic loss through buffering.

D. It prevents global synchronization with tail drops.


参考答案:B, D


What was burnt?

A. The piece of paper.

B. Mr. Smith.

C. The visitor.

D. The boy.


正确答案:A
A[解析]根据文章内容知道,烧掉的实际上是那张纸条,所以答案选A。


第五题 阅读以下说明和Java代码,填补代码中的空缺,将解答填入答题纸的对应栏内。
【说明】
以下Java代码实现一个超市简单销售系统中的部分功能,顾客选择图书等物件 (Item)加入购物车(ShoppingCart),到收银台(Cashier)对每个购物车中的物品统计其价格进行结账。设计如图5-1所示类图。

问题:5.1 【Java代码】
interface Item{
public void accept(Visitor visitor);
public double getPrice();
}

class Book (1){
private double price;
public Book(double price){(2);}
public void accept(Visitor visitor){ //访问本元素
(3);
}
public double getPrice() {
return price;
}
}
//其它物品类略
interface Visitor {
public void visit(Book book);
//其它物品的visit方法
}

class Cashier(4){
private double totalForCart;
//访问Book类型对象的价格并累加
(5){
//假设Book类型的物品价格超过10元打8折
if(book.getPrice()<10.0){
totalForCart+=book.getPrice();
} else
totalForCart+=book.getPrice()*0.8;
}
//其它visit方法和折扣策略类似,此处略

public double getTotal() {
return totalForCart;
}
}

class ShoppingCart {
//normal shopping cart stuff
private java.util.ArrayListitems=new java.util.ArrayList<>();
public double calculatePrice() {
Cashier visitor=new Cashier();

for(Item item:items) {
(6);
}
double total=visitor.getTotal();
return total;
}
public void add(Item e) {
this.items.add(e);
}
}


答案:
解析:
implements Item
(2)this.price=price
(3)visitor.visit(this)
(4)implements Visitor
(5)public void visit(Book book)
(6)item.accept(visitor)

【解析】

这里考察的是访问者模式。其定义如下:封装某些作用于某种数据结构中各元素的操作,它可以在不改变数据结构的前提下定义作用于这些元素的新的操作。
第一、四空为接口与实现,接口使用Interface,实现使用implements。第二空this表示类实例本身。第三空为访问本元素。第五空实现接口里面的方法。第六空调用accept方法。


第六题 阅读下列说明和C++代码,填补代码中的空缺,将解答填入答题纸的对应栏内。
【说明 】
以下C++代码实现一个超市简单销售系统中的部分功能,顾客选择图书等物品(Item)加入购物车(ShoppingCart),到收银台(Cashier)对每个购物车中的物品统计其价格进行结账,设计如图6-1所示类图。

using namespace std;
class Book;
class Visitor {
public:
virtual void visit(Book* book)=0;
//其它物品的visit方法
};

class Item {
public:virtual void accept(Visitor* visitor)=0;
virtual double getPrice()=0;
};

class Book (1){
private: double price;
public:
Book (double price){ //访问本元素
(2);
}
void accept(Visitor* visitor) {
(3);
}
double getPrice() { return price; }
};
class Cashier(4){
private;
double totalForCart;
public:
//访问Book类型对象的价格并累加
(5){
//假设Book类型的物品价格超过10元打8折
if(book->getPrice()<10.0) {
totalForCart+=book->getPrice();
} else
totalForCart+=book->getPrice()*0.8;
}
//其它visit方法和折扣策略类似,此处略
double getTotal() {
return totalForCart;
}
};

class ShoppingCart {
private:
vectoritems;
public:
double calculatePrice() {
Cashier* visitor=new Cashier();

for(int i=0;i (6);
}
double total=visitor->getTotal();
return total;
}

void add(Item*e) {
items.push_back(e);
}
};


答案:
解析:
(1):public Item
(2)this->price=price
(3)visitor->visit(this)
(4)public visitor
(5)void visit(Book*book)
(6)item->accept(visitor)

【解析】

这里考察的是访问者模式。其定义如下:封装某些作用于某种数据结构中各元素的操作,它可以在不改变数据结构的前提下定义作用于这些元素的新的操作。

更多 “2021知到答案【 旅游目的地管理】智慧树网课章节测试答案” 相关考题
考题 单选题Carroll’s statement cited in Lines 2-3, Paragraph 2 shows ______.A the absence of a proper understanding in the nature of language learning.B his anxiety over the situation in the studies of language learning.C the necessity for psychological research on language learning.D his promise of what he could offer for psycholinguistic studies.正确答案:A解析:推理判断题。根据题干信息定位到第二段首句“…We are fundamentally ignorant of the psychology of language learning.”,由此可知,卡洛认为“我们完全忽略了语言学习的心理因素”,由此推断他认为对学习第二语言的心理研究很有必要,故答案为C项。

考题 单选题_____A The woman is calling JackB There is a visitor at me door.C The door is open.D The telephone is ringing.正确答案:B解析:推断题。由男士的话“Someone is knocking at the door.”(有人在敲门)可推知,有客人来了,所以正确答案为B。【录音原文】M: Someone is knocking at the door.W: I think it’s Jack again.Q: What can we learn from the conversation?

考题 阅读以下说明和Java代码,填补代码中的空缺,将解答填入答题纸的对应栏内。 【说明】 以下Java代码实现一个超市简单销售系统中的部分功能,顾客选择图书等物件 (Item)加入购物车(ShoppingCart),到收银台(Cashier)对每个购物车中的物品统计其价格进行结账。设计如图5-1所示类图。【Java代码】 interface Item{ public void accept(Visitor visitor); public double getPrice();}class Book (1){ private double price; public Book(double price){(2);} public void accept(Visitor visitor){ //访问本元素 (3); } public double getPrice() { return price; }}//其它物品类略 interface Visitor { public void visit(Book book); //其它物品的visit方法 } class Cashier(4){ private double totalForCart; //访问Book类型对象的价格并累加 (5){ //假设Book类型的物品价格超过10元打8折 if(book.getPrice()(); public double calculatePrice() { Cashier visitor=newCashier(); for(Item item:items) { (6); } doubletotal=visitor.getTotal(); return total; } public void add(Item e) { this.items.add(e); }}答案:解析:(1)implements Item (2)this.price=price (3)visitor.visit(this) (4)implements Visitor (5)public void visit(Book book) (6)item.accept(visitor)【解析】 这里考察的是访问者模式。其定义如下:封装某些作用于某种数据结构中各元素的操作,它可以在不改变数据结构的前提下定义作用于这些元素的新的操作 第一、四空为接口与实现,接口使用Interface,实现使用implements。第二空this表示类实例本身。第三空为访问本元素。第五空实现接口里面的方法。第六空调用accept方法

考题 填空题What will happen if a visitor breaks this agreement?The visitor will be denied access to this____.正确答案:website解析:细节题。从文章第二段第一句话We reserve the right to deny access to this website...”可知,如果访问者违反了协议,网站有权禁止他再次光临本站。

考题 单选题Which of the following is TRUE according to the passage?A The host talks little with the visitorB The child accompanies the visitor to the gate of the houseC The host offers the visitor a seat onlyD The visitor takes some food with him when he leaves.正确答案:C解析:原文第四段指出“When the visitor is leaving,he is often given some food”,故D项表述正确。原文中说来访者会被问道他们的旅途如何,为什么来到此地等,他们的谈话在饭后仍会继续,故A项“talks little”错误。原文中说的是孩子把来访者送到“to the nearest station”,故B项“to the gate of the house”错误。C项“offers the visitor a seat only”也错误,文中提到主人们会给来访者提供座位、茶水和食物,并且会打包点食物让他们带走,而不仅仅是提供一个座位。故正确选项为D。

考题 判断题General linguistics, which relates itself to the research of other areas, studies the basic concepts, theories, descriptions, models and methods applicable in any linguistic study.A 对B 错正确答案:错解析:暂无解析

考题 The great changes of the city astonished every visitor to that city.A:attacked B:surprised C:attracted D:interested答案:B解析:本句意思:这个城市的巨大变化使所有来这个城市参观的人感到震惊。astonish意为 “使惊讶”,与surprise(使惊奇)意思相近。attack攻击;attract吸引;intrest使感兴趣。

考题 单选题A: Tom, why didn’t you come to the class yesterday?  B: ______A I had come, but there was a visitor at home.B I was going to, but I had an unexpected visitor.C No way, as a visitor was coming to visit me.D I’m sorry. I won’t miss the class again.正确答案:B解析:该题测试的是对询问的回答。从双方的对话语气看可能是老师与学生之间的对话。A问B为什么昨天没来上课,B应正面回答原因。A项是在说谎或狡辩,因为该项前后内容自相矛盾。C项和D项没有正面回答问题,而且语言也不得体。只有B项是正确回答。

考题 判断题选择题由题干和多个选项组成。A 对B 错正确答案:对解析:暂无解析

考题 A company installed a new server to manage its electronic image storage.  They have two distinct image sizes: 2KB and 16KB.  Two distinct arrays are created on a ServeRAID adapter.  The first array will store all of the 2KB images, and the second array will store all the 16KB images.  The RAID stripe size was left at the default size of 8KB.  After installation, a performance problem is identified. According to performance monitoring, 80% of the images are 16KB.  Which of the following will best optimize performance?()A、Change the stripe size on the RAID controllerB、Change the stripe size to 1024K on the RAID controllerC、Change the stripe size on the RAID controller for the first arrayD、Change the stripe size on the RAID controller for the second array正确答案:A