题目内容

&8226;Look at the statements below and the advice of four market experts on the opposite page.
&8226;Which expert's advice (A, B, C or D) does each statement (1-7) refer to?
&8226;For each statement (1-7), mark one letter (A, B, C or D) on your Answer Sheet.
&8226;You will need to use some of these letters more than once.
Flacks is a UK-based company that produces fashion accessories for
women. How can it continue to grow its business?
A Susan Falmer
Faced with a shrinking market, cheap imports and competitive pricing, Flacks will have to work hard to increase its margins. They need to move into a more promising market, one where demand is growing and where the company can exploit existing skills and contacts. They could think about brand extension -this would not be a giant leap and the sales force would take it in its stride. Also, they wouldn't need to re-equip their factory and could use non-UK sourcing if facilities here are in short supply.
B Mesut Guzel
They have the fundamentals of a survival strategy in a market where outsourced manufacture and brand differentiation hold the key to success. I think they should initially locate some of their production in another country, where manufacturing quality tends to be better and it is easier to meet changing customer demands. But they should also regularly monitor production in Britain and think about outsourcing all this work abroad at some point if they need it done faster. The company should continue to work on innovative products, and thorough market research will help to ensure any new ideas are well received.
C Gary Wilmot
In order to beat their rivals in a highly competitive market, Flecks should ensure their products are attractive and build on their relationships with the big stores rather than trying to go it alone and market directly. They should also consider refocusing production by using their UK factory for high-specification products. They could eventually build more production overseas in a cycle of continuous development.
D Michal Kaminski
The demand for fashion acessories is relatively fiat and the company should consider exploiting niche markets to improve its margins. But even within these, Flacks must distinguish its goods from those of its rivals in terms of quality, performance and design. Innovative sales, marketing and PR are vital to exploit these niche products. One competitive advantage that Flacks does have is production times. Many retail chains now have two-tier supply chains and Flacks could focus on top-up orders. They might also investigate other sales channels such as mail order.
It would be advisable for Flacks to consult customers before developing a new product.

查看答案
更多问题

阅读以下说明,回答问题1~5,将答案填入对应的解答栏内。
某校园网结构如图1-1所示,用户可以通过有线接入,也可以通过无线接入。用户接入采用web+DHCP方式,当用户连上校园网后,由DHCP服务器为用户自动分配IP地址,基于web的认证成功后即可访问Internet。认证过程采用SSL与RADIUS相结合的方式,以防止非法用户的盗用。
对PC机无线网卡进行配置时,在图1-2中SSID参数的主要作用是______。
备选答案: A.操作模式 B.扩展服务集 C.加密等级 D.工作频段

同事能力强,跟你性格不合,经常与其发生争执,你如何处理?

下面是公司总部的路由器R2的配置命令列表,在空白处填写合适的命令参数,实现R2的正确配置。
Router>an
Routerconf term
Router(config)hostname R2
R2(config-if)int s0
R2(config-if)ip address [ (4) ]
R2(config-if)no shutdown
R2(confiq-if)exit
R2(config)ip routing
R2(config)ip route [ (5) ]
R2(config)ip classless
R2(config)exit
R2copy run start

阅读以下说明和Java代码,将应填入(n)处的字句写在答题纸的对应栏内。
【说明】
某绘图系统存在Point、Line、Square三种图元,它们具有Shape接口,图元的类图关系如图6-1所示。现要将Circle图元加入此绘图系统以实现功能扩充。已知某第三方库已经提供了XCircle类,且完全满足系统新增的Circle图元所需的功能,但XCircle不是由Shape派生而来,它提供的接口不能被系统直接使用。代码6-1既使用了XCircle又遵循了Shape规定的接口,既避免了从头开发一个新的Circle类,又可以不修改绘图系统中已经定义的接口。代码6-2根据用户指定的参数生成特定的图元实例,并对之进行显示操作。
绘图系统定义的接口与XCircle提供的显示接口及其功能如下表所示:
【代码6-1】
class Circle (1) {
private (2) pxc;
public Circle(){pxc=new (3) ;
}
public void display(){
pxc. (4) ;
}
}
【代码6-2】
public class Factory{
public (5) getShapeInstance(int type){ //生成特定类实例
switch(type){
case 0: return new Point ();
case 1: return new Rectangle () ;
case 2: return new Line () ;
case 3: return new Circle () ;
default: return null;
}
}
public class App{
public static void main (String argv[] )
if (argv. length != l) {
System. out.println ("error parameters !");
return;
}
inttype= (new Integer (argv[0])) .intValue (
Factory factory = new Factory () ;
Shape s;
s=factory, (6)
if (s==null) {
System.out.println ("Error get instance !" )
return;
}
s.display () ;
return;
}
}

答案查题题库