题目内容 (请给出正确答案)
[主观题]

Section BDirections: There are 2 passages in this section. Each passage is followed by som

Section B

Directions: There are 2 passages in this section. Each passage is followed by some questions or unfinished statements. For each of them there are four choices marked A, B, C and D. You should decide on the best choice.

Going online is a favorite pastime for millions of American children. Almost 10 million (14 percent) of America's 69 million children are online. The Internet both entertains and educates children, however, there are some possible negative consequences for children who access kid-based Web sites. Advertising on kid-based Web sites has become both a rapidly growing market for consumer companies and a concern for parents. With a click on an icon, children can link to advertisers and be granted tremendous spending power. Children are an important target group for consumer companies. Children under age 12 spent $ 14 billion, teenagers another $ 67 billion, and together they influenced $ 160 billion of their parents' incomes.

Many critics question the appropriateness of targeting children in Internet advertising and press to require that children be treated as a "special case" by advertisers. Because children lack the analytical abilities and judgment of adults, they may be unable to evaluate the accuracy of information they view, or understand that the information they provide to advertisers is really just data collected by an advertiser. Children generally lack the ability to give consent to the release of personal information to an advertiser, an even greater problem for children when they are offered incentives for providing personal information, or when personal information is required before they are allowed to register for various services. Children may not realize that in many cases these characters provide hotlinks directly to advertising sites.

The Internet does present some challenges for advertisers who want to be ethical in their marketing practices. Many advertisers argue that we underestimate the levels of media awareness shown by children. By the age of seven or eight most children can recognize an advertisement and know that its purpose is to sell something and are able to make judgments about the products shown in advertisements. However, this somewhat optimistic and decidedly libertarian view of children runs aground when we realise that they are (like a surprising number of adults) unable to judge accurately between entertainment and advertising. Adults can fend for themselves but, as marketers, we should be explicit about our purpose when advertising to children on the Internet.

According to the first paragraph, children as an internet market.

A.are using it at an earlier and earlier age

B.is overtaking the adult market due to their spending power

C.is growing at an incredible rate

D.has brought about advertisements both beneficial and harmful

查看答案
如搜索结果不匹配,请 联系老师 获取答案
您可能会需要:
您的账号:,可能会需要:
您的账号:
发送账号密码至手机
发送
更多“Section BDirections: There are…”相关的问题

第1题

下列引用的定义中,()是错误的。A.int i; int &j=i;B.int i; int &j; j=i:C.float i; floa

下列引用的定义中,()是错误的。

A.int i; int &j=i;

B.int i; int &j; j=i:

C.float i; float &j=i;

D.char d; char &k=d;

点击查看答案

第2题

下列引用的定义中,()是错误的。A.int i; int &j=i;B.int i; int &j; j=i;C.float i; floa

下列引用的定义中,()是错误的。

A.int i; int &j=i;

B.int i; int &j; j=i;

C.float i; float &j=i;

D.chard; char &k=d;

点击查看答案

第3题

下列的变量定义中,错误的是A.int a;bB.float a,b1=1.23f;C.char ch='d';D.public int i=100,j;

下列的变量定义中,错误的是

A.int a;b

B.float a,b1=1.23f;

C.char ch='d';

D.public int i=100,j;

点击查看答案

第4题

下列对变量的引用中,错误的是()。A.int a;int &p=a;B.char a;char &p=a;C.int a;int &

下列对变量的引用中,错误的是()。

A.int a;int &p=a;

B.char a;char &p=a;

C.int a;int &p;p=a;

D.float a;float &p=a;

点击查看答案

第5题

下列对变量的引用中,错误的是A.int a; int &p=a;B.char a; char &p=a;C.int a; int &

下列对变量的引用中,错误的是

A.int a; int &p=a;

B.char a; char &p=a;

C.int a; int &p;p=a;

D.float a; float &p=a;

点击查看答案

第6题

下列定义中不正确的是()。

A.int i,j;

B.int i=2,j=3;

C.int i=j=2;

D.int i;int j;

点击查看答案

第7题

下列选项中哪一个编译不出现错误 ()A.int i=0; i(i){ System.out.println("Hi"); }B.

下列选项中哪一个编译不出现错误 ()

A.int i=0; i(i){ System.out.println("Hi"); }

B.int il=5; int i2=5; i(i1=i2){ System.out.println("So true"); }

C.int i=1; int j=2; i(i==1||j==2) System.out.println("OK");

D.int i=1; int j=2; i (i==1 &&|j==2) System.out.println("OK");

点击查看答案

第8题

若有定义:int a[4][10];,则以下选项中对数组元素a[i][j]引用错误的是______。(0<=i<4,0<=j<10)A.*

若有定义:int a[4][10];,则以下选项中对数组元素a[i][j]引用错误的是______。(0<=i<4,0<=j<10)

A.*(&a[0][0]+10*i+j)

B.*(a+i)+j

C.*(*(a+i)+j)

D.*(a[i]+j)

点击查看答案

第9题

下列选项中哪一个编译不出现错误()A.int i=0; if(i){ System.out.println("Hi"); }B.int il=5; i

下列选项中哪一个编译不出现错误 ()

A.int i=0; if(i){ System.out.println("Hi"); }

B.int il=5; int i2=5; if(i1=i2){ System.out.println("So true"); }

C.int i=1; int j=2; if(i==1||j==2) System.out.println("OK");

D.int i=1; int j=2; if (i==1 &&|j==2) System.out.println("OK");

点击查看答案

第10题

下列有关指针的用法中,错误的是()。A.int i;int *p=&i;B. int i;int *p;i=*p;C. int *p;p=0;D

下列有关指针的用法中,错误的是()。

A.int i;int *p=&i;

B. int i;int *p;i=*p;

C. int *p;p=0;

D.int i=5;int *p;p=&i;

点击查看答案
热门考试 全部 >
相关试卷 全部 >
账号:
你好,尊敬的上学吧用户
发送账号至手机
密码将被重置
获取验证码
发送
温馨提示
该问题答案仅针对搜题卡用户开放,请点击购买搜题卡。
马上购买搜题卡
我已购买搜题卡, 登录账号 继续查看答案
重置密码
确认修改
谢谢您的反馈

您认为本题答案有误,我们将认真、仔细核查,
如果您知道正确答案,欢迎您来纠错

警告:系统检测到您的账号存在安全风险

为了保护您的账号安全,请在“上学吧”公众号进行验证,点击“官网服务”-“账号验证”后输入验证码“”完成验证,验证成功后方可继续查看答案!

微信搜一搜
上学吧
点击打开微信
警告:系统检测到您的账号存在安全风险
抱歉,您的账号因涉嫌违反上学吧购买须知被冻结。您可在“上学吧”微信公众号中的“官网服务”-“账号解封申请”申请解封,或联系客服
微信搜一搜
上学吧
点击打开微信