【单选题】【消耗次数:1】
5W法的5个W不包括下列选项中的( )。
Who are you
What do you want
What can you do
What are you doing
参考答案:
复制
纠错
相关题目
【单选题】 5W归零思考法中的What you can be in the end是指:( )。
①  自己最终的职业目标是什么
②  我想干什么
③  我能干什么
④  环境支持或允许我干什么
【单选题】 What can I do for you, madam?
①  I want a kilo of apples
②  You can go your own way
③  Thanks
④  Excuse me. I’m busy
【单选题】 _________ do you want to learn French? What is the reason?
①  When
②  Why
③  What
④  Which
【单选题】 —Hello there, what can I do for you, sir?—_____________________.
①  I can do it myself.
②  No, youre welcome.
③  I would like to buy a pair of glasses.
④  Yes, thank you.
【单选题】 It is what you do rather than what you say ___ matters.
①  that
②  what
③  which
④  this
【单选题】 What do you think _____solve the problem ?
①  you can do
②  can you do
③  you can do to
④  can you do to
【单选题】 When you make a self-introduction, you can tell what you do for a ______________.
①  job
②  life
③  living
④  taste
【判断题】 A: What can I do for you, sir? B: Nothing.
①  正确
②  错误
【单选题】 It is the ability to do the work ___ matters not where you come from or what you are.
①  one
②  that
③  what
④  it
【单选题】 A: What do you prefer, meat or fish? B: [填空].
①  Yes, thank you
②  All right
③  Help yourself, please
④  Either will do
随机题目
【简答题】 计算两个整数n和m(m1000)之间所有数的和。n和m从键盘输入。例如,当n=1,m=100时,sum=5050,当n=100,m=1000时,sum=495550。 #include#includemain() { int n,m; int sum; /************found************/[填空1] printf(\nInput n,m\n scanf(%d,%d,n, while( n=m ) { /************found************/[填空2] n++; } printf(sum=%d \n,sum); }
【简答题】 打印出1至1000中满足其个位数字的立方等于其本身的所有整数。本题的结果为:1 64 125 216 729。 #includemain() { int i,g; for(i=1;ii++) { /************found************/ g=i[填空1] /************found************/ if([填空2]) printf(%4d } printf(\n }
【单选题】 C语言程序的基本单位是
①  程序行
②  语句
③  函数
④  字符
【单选题】 以下一维数组a的正确定义是
①  int a(10);
②  int n=10,a[n];
③  int n;
④  #define SIZE 10 scanf(%d, int a[SIZE]; int a[n];
【单选题】 下面程序的输出结果是 #includevoid main() { int a=5,b=3; float x=3.14, y=6.5; printf(%d,%d\n,a+b!=a-b,x=(y-=6.1)); }
①  1,0
②  0,1
③  1,1
④  0,0
【单选题】 如果一个函数位于C程序文件的上部,在该函数体内说明语句后的复合语句中定义了一个变量,则该变量
①  为全局变量,在本程序文件范围内有效
②  为局部变量,只在该函数内有效
③  为局部变量,只在该复合语句中有效
④  定义无效,为非法变量
【单选题】 下列一组初始化语句中,正确的是
①  int a[8]={
②  int a[9]={0,7,0,4,8};
③  int a[5]={9,5,7,4,0,2};
④  int a[7]=7*6;
【单选题】 C语言规定,除主函数外,程序中各函数之间
①  既允许直接递归调用也允许间接递归调用
②  不允许直接递归调用也不允许间接递归调用
③  允许直接递归调用不允许间接递归调用
④  不允许直接递归调用允许间接递归调用
【单选题】 C语言中规定函数的返回值的类型是由
①  return语句中的表达式类型所决定
②  调用该函数时的主调用函数类型所决定
③  调用该函数时系统临时决定
④  在定义该函数时所指定的类型所决定
【单选题】 以下定义语句中,错误的是
①  int a[]={1,2};
②  char a[]={test
③  char s[10]={test
④  int n=5,a[n];