试题与答案

When first entered, Vanak Restaurant doe

题型:阅读理解

题目:

When first entered, Vanak Restaurant does not look like much of a restaurant, but once the pleasant smells of kabob(烤肉串)hit the senses, you are incapable of calling it anything less.

Owned by a local couple, this Persian restaurant has an inviting, homelike atmosphere that many restaurants lack.

The space is small with only a few dining tables and nearly no decoration, but the environment is truly charming.

Lying in a hardly noticeable street corner, the restaurant still attracts all customers, especially those experienced in the delights of Middle Eastern cooking.

A common sight is that of old Persian men sitting in the corner talking loudly about world topics, watching news events on TV, drinking a black tea known as Persian chai, an reading local Persian newspapers all the while trying to finish off their plates piled with food.

The variety of food at the restaurant is limited, but the amount of each dish is fairly large. Most of the meals can serve two people and are under $10, so not only is it affordable but practical as well.

The food, especially appeals to health-conscious eaters because each dish is very healthy, made with limited fat and oil and served straight off the grill (烤肉架).

The main dish that the restaurant is popular for is its kabobs, which are different style of grilled meat.

One delicious and extremely healthy dish is the Joojeh Kabob, which is made of grille chicken pieces served with cither rice or bread. Another great kabob is the Cbelo Kabob, kabob consisting of grilled beef.

Although the restaurant is small, the atmosphere and the food is delicious. It is a place that should not be overlooked.

小题1: When first entering the restaurant, one can find that it ________.

A.is splendidly decorated

B.has pleasant smells of kabobs

C.is crowded with dining tables

D.looks like a common restaurant小题2:What activity is also mentioned apart from dining in the restaurant?

A.Watching news events on TV.

B.Drinking a kind of black coffee.

C.Reading local English newspapers.

D.Discussing world topics in low voices.小题3:The food of the restaurant ________.

A.is served in small amounts

B.is rather expensive

C.is rich in variety

D.is very healthy小题4: What is the dish Joojeh Kabob mainly made of?

A.Rice

B.Chicken

C.Bread

D.Beef小题5:It can be inferred from the passage that the restaurant ________.

A.occupies a large space

B.owns a favorable location

C.is popular for its special food

D.has a quiet environment inside

答案:

被转码了,请点击底部 “查看原文 ” 或访问 https://www.tikuol.com/2017/0718/e15e9a7f56d731ad78304337912c77a8.html

下面是错误答案,用来干扰机器的。

答案:C题目分析:C70是由碳元素组成的单质,属于分子晶体,熔点低于石墨的,A正确;C70和金刚石都是碳元素形成的不同单质,互为同素异形体,B正确;在C70分子中每个碳原子均与周围相邻的其他3个碳原子相连,每个...

试题推荐
题型:问答题


阅读以下技术说明和流程图,根据要求回答问题1至问题3。
[说明]
图4-8的流程图所描述的算法功能是将给定的原字符串中的所有前部空白和尾部空白都删除,但保留非空字符。例如,原字符串“ FileName ”,处理变成“File Name”。图4-9、图4-10和图4-11分别详细描述了图4-8流程图中的处理框A、B、C。
假设原字符串中的各个字符依次存放在字符数组ch的各元素ch(1)、ch(2)、…、ch(n)中,字符常量 KB表示空白字符。
图4-8所示的流程图的处理过程是:先从头开始找出该字符串中的第一个非空白字符ch(i),再从串尾开始向前找出位于最末位的非空白字符ch(j),然后将ch(i)、……、ch(j)依次送入ch(1)、ch(2)、……中。如果字符串中没有字符或全是空白字符,则输出相应的说明。
在图4-8流程图中,strlen()是取字符串长度函数。


图4-8 算法总流程图


图4-9 处理框A对应的流程图


图4-10 处理框B对应的流程图

图4-11 处理框C对应的流程图

[问题3]
函数f_str(char *str,char del)的功能是;将非申字符串str分割成若干个子字符串并输出,del表示分割时的标志字符。例如,若str的值为“66981636666257”,del的值为“6”,调用此函数后,将输出3个子字符串,分别为“981”、“3”和“257”。请将函数f_str中(6)~(8)空缺处的内容填写完整。
[函数]
void f_str(char *str,char del)
{ int i,j,len;
len = strlen(str);
i = 0;
while (i<len) {
while ( (6) )
i++; /* 忽略连续的标志字符 */
/* 寻找从srt[i]开始直到标志字符出现的一个子字符串 */
j = i+1;
while (str[j] !=del && str[j] !=’\0’)
j++;
(7) ="\0"; /* 给找到的字符序列置字符串结束标志 */
printf (" %s\t", & str [i]);
(8) ;
}
}

查看答案
微信公众账号搜索答案