【判断题】【消耗次数:1】
新闻5要素包括who、what、when、why 、where
正确
错误
参考答案:
复制
纠错
相关题目
【判断题】 新闻六要素包括:what who when where why how。
①  正确
②  错误
【简答题】 Who was the old man? And what was he doing when they saw him?
【单选题】 What role does a teacher play in the following activity? When the students have in groups decided where to go for a spring outing, the teacher asks each group to tell the others why they have made such a choice.
①  Controller
②  Assessor
③  Organizer
④  Prompter.
【单选题】 When you meet someone who ____ deeply about something, you probably will want to ask them why they do so.?
①  absorbs ?
②  cares ?
③  considers ?
④  minds?
【单选题】 Who _______ your pets when you are not at home?
①  takes care
②  looks care
③  takes care of
【多选题】 新闻要素是指构成新闻的必须材料,包括( )
①  发生新闻的主角
②  发生的事情
③  发生的时间
④  发生的地点
⑤  发生的原因
【判断题】 A: Where to? Im so thirsty. B: Why dont we enjoy some beer at that bar?
①  正确
②  错误
【单选题】 It is the ability to do the work ___ matters not where you come from or what you are.
①  one
②  that
③  what
④  it
【多选题】 5、新闻场由那几个要素组成?
①  客观事件
②  事象呈现
③  表达方式
④  社会功能
【多选题】 新闻五要素是指( )
①  何时(When)
②  何地(where)
③  何事(what)
④  何因(why)
⑤  何人(wh
随机题目
【单选题】 假定一个二维数组的定义语句为“int a[3][4]={{3,4},{2,8,6}};”,则元素a[1][2]的值为( )。
①  2
②  4
③  6
④  8
【单选题】 一个二维字符数组a[M][N]能够至多存储( )个字符串。
①  M
②  N
③  M-1
④  N-1
【单选题】 在下面循环语句中内层循环体S语句的执行次数为( )。 for(int i=0;i<n;i++) for(int j=i;j<n;j++)S;
①  n2
②  (n+1)/2
③  n(n-1)/2
④  n(n+1)/2
【单选题】 当在程序中执行到( )语句时,只结束本层循环类语句或switch语句的执行。
①  continue
②  break
③  goto
④  return
【单选题】 假定对二维数组a[3][4]进行初始化的数据为{{3,5,6},{2,8},{7}},则a[1][1]元素被初始化为( )。
①  6
②  2
③  5
④  8
【单选题】 假定a是一个一维数组,则以字节为单位的a[i]存储地址为( )。
①  (char*)a+i*sizeof(a[i])
②  a+i*sizeof(a[i])
③  (char*)a+i
④  a+i
【单选题】 在下面的一维数组定义中,( )语句有语法错误。
①  int a[]={1,2,3};
②  int a[10]={0};
③  int a[];
④  int a[5];
【单选题】 用calloc函数创建具有10个整型元素的一维数组的正确语句是( )。
①  int *p=calloc(10,2);
②  int *p=callo(10;
③  int *p=calloc(10,4);
④  int *p=malloc(10);
【单选题】 for语句能够被改写为( )语句。
①  复合
②  if
③  switch
④  While
【单选题】 数组元素a[i]是该数组中的第( )个元素。
①  i
②  i+1
③  i-1
④  i*2