一起答
单选

 ● 从网络环境来看,电子商务系统由三个部分组成,其以 (31) 为基础。

(31)

  • A. Intranet       
  • B. Extranet 
  • C. Internet       
  • D. VPN
参考答案
查看试卷详情
相关试题
  1. ● 有利于网站在搜索引擎中排名靠前的做法是 (70) 。

    (70)

    • A.首页最好使用 Frame. 结构  
    • B.将关键字放在网页中间
    • C.大量采用 flash 和图片  
    • D.在标题中使用关键词
  2. ● TCP/IP  (71)  layer protocols provide services to the application  (72) running on a computer. The application layer does not define the application itself, but rather it defines   (73)    that applications need—like the ability to transfer a file in the case of HTTP. In short, the application layer provides an  (74)   between software running on a computer and the network itself. The TCP/IP application layer includes a relatively large number of protocols, with HTTP being only one of those. The TCP/IP  (75)   layer consists of two main protocol options—the Transmission Control Protocol (TCP) and the User Datagram Protocol (UDP).

  3. ● 系统日志主要用于 (69) 。

    (69)

    • A.纠错性维护    
    • B.数据维护
    • C.安全维护    
    • D.系统运行维护
  4. ● 在 CSS中,以“ (68) ”开头来表示 ID选择器的定义。   

    (68)

    • A.&  
    • B.%  
    • C.#  
    • D./ 
  5. ● Windows 2000 操作系统集成的 Web 服务器软件是 (67) 。

    (67)

    • A.Internet Information Server
    • B.Appache Httpd
    • C.Websphere Application Server
    • D.ONE Web Server
  6. ● 电子商务常用的系统规划方法不包括 (65) 。

    (65)

    • A.关键成功因素法
    • B.面向对象分析方法
    • C.战略目标集转化法
    • D.企业系统规划法
  7. ● 在电子商务系统规划阶段,应完成 (64) 。

    (64)

    • A.系统说明书    
    • B.系统设计说明书
    • C.可行性分析报告   
    • D.系统测试分析报告
  8. ● 设计电子商务网站第一步要完成的工作是 (66) 。

    (66)

    • A.建立网站原型   
    • B.设计网站内容
    • C.设计网站功能   
    • D.网站需求分析
  9. ● 在 ADO中负责传递 SQL 命令的对象是 (63) 。

    (63)

    • A.connect 对象    
    • B.DSN对象
    • C.command 对象   
    • D.recordset 对象
  10. ● 下面是一段 javabean 程序,该程序的运行结果是  (62) 。

    public class NullTest

    {

    public static void main(String[] args)

    {

    int M = 0;

    String str = null;

    StringBuffer sb = new StringBuffer(“= “);

    sb.append(str);

    sb.append(M++);

    System.out.println(sb.toString());

    }

    }

    (62)

    • A.=null  
    • B.=null0  
    • C.=null1  
    • D.=nullM