微型轿车的排气量应()。A、小于1L B、小于1.5L C、等于1L D、无标准

题型:单项选择题

问题:

微型轿车的排气量应()。

A、小于1L

B、小于1.5L

C、等于1L

D、无标准

考点:汽车营销师考试汽车营销师考试题库
题型:单项选择题

下列属于书面合同的有()。

A.合同

B.倡议书

C.确认书

D.协议书

题型:单项选择题

Positive thinkers admit when they feel frustrated(受挫折的) or depressed, they don't ignore it.But they don't blame themselves either.Instead, they try to understand the negative thoughts and feelings and counter(反击) them with more positive ones.

So how do you stay positive, maintain motivated and sustain(保持) healthy behaviors? Here are some tips:

Look for a good role model.There is always someone who seems to be doing just what you want to be doing.Maybe they've scheduled exercise into their workday and switched from coffee to green tea.Learn from a successful friend, family member or colleague.Ask them how they keep healthy and follow in their footsteps.

Try some positive self-talk and avoid negative-talk.Take a minute to give yourself an ego boost.Repeat some motivational words out loud to yourself.Negative talk such as "I can't do it," "I'm fat," is dangerous for your well-being and healthy goals.Try to avoid the negative self-talk before it harms you.Remind yourself that you deserve happiness and can make positive changes.

Get support.Tell your friends and family about your healthy habits.It helps to have an encouraging network.

Reward yourself.Treat yourself to something for your healthy efforts.Take a nice bath, get a massage, and enjoy a new DVD or CD.

Have a plan.Making a plan to exercise or eat healthy lunches with a friend can mean the difference of sticking with your goals or falling off track.If you've planned for an activity, you'll likely stick with it.You may even find that writing down your goals and steps to achieve them can help you stay on track.Take it day by day or week by week.The process of writing down your personal action plan is a good way to keep you honest and watch your progress or failures.

1.By writing the text the author intends to _______.

A.offer some advice on how to stay positive

B.persuade readers to learn from a role model

C.provide some solutions to personal problems

D.inform readers of some tips on physical health

2.What does the phrase “to give yourself an ego boost” in Paragraph 4 mean?

A.to get lost in deep thought.      B.to think about the hardships.

C.to check what mistake you made. D.to make you feel better about yourself.

3.Which of the following would the author Not agree to?

A.Saying some positive words to yourself helps you to feel good.

B.By staying with your companion you can avoid the negative-talk.

C.A successful friend, relative or colleague can be your role model.

D.Creating a helpful network is a good way to keep you motivated.

4.To make sure that you always stay on track, what should you do?

A.Eat out with your best friends.        B.Relax yourself after a hard day.

C.Write down what you want to achieve        D.Modify your plans as often as you can.

题型:单项选择题

下列药物中,可在光的作用下发生歧化反应的药物是()

A.硝苯地平

B.普萘洛尔

C.非诺贝特

D.盐酸可乐定

E.卡托普利

题型:单项选择题

PowerPoint 2000的各视图方式中,以下说法中正确的是()。

A.在普通视图中,可以输入、查看每张幻灯片的主题、小标题以及备注等

B.在大纲视图中,可以查看整个演示文稿的主要结构,可插入新的大纲文件

C.在幻灯片视图中,可同时看到整个演示文稿中各张幻灯片的主要内容,并直接对其进行编辑

D.在幻灯片浏览视图中,可同时显示多张幻灯片并对其进行添加、删除和移动等操作

题型:单项选择题

已知数据文件IN68.DAT中存有200个4位数,并已调用读函数readDat()把这些数存入数组a中,请编制一函数jsVal(),其功能是:如果4位数各位上的数字均是奇数,则统计出满足此条件的个数cnt,并把这些4位数按从大到小的顺序存入数组b中。最后调用函数writeDat()把结果cnt及数组b中符合条件的4位数输出到OUT68.DAT文件。
注意:部分源程序已给出。
程序中已定义数组:a[200],b[200],已定义变量:cnt。
请勿改动主函数main()、读函数readDat()和写函数writeDat()的内容。
试题程序:
#include<stdio.h>
#define MAX 200
int a[MAX],b[MAX],cnt=0;
void jsVal()


void readDat ( )

int i;
FILE *fp;
fp= fopen ("IN68. DAT", "r");
for (i=0; i<MAX; i++)
fscanf (fp, "%d", &a [i])
fclose (fp);

void main ( )

int i;
readDat ( );
jsVal ( );
printf ("满足条件的数=%d\n", cnt);
for (i=0; i<cnt; i++)
printf ("%d",b[i]);
printf ("\n");
writeDat ( );

writeDat ( )

FILE *fp;
int i;
fp= fopen ("out68.dat", "w");
fprintf (fp, "%d\n", cnt);
for (i=0; i<cnt; i++)
fprintf (fp, "%din", b [i]);
fclose (fp);

更多题库