IBM认证考试

An administrator receives an error when attempting to execute a WebSphere Commerce command and decides to take the following steps to troubleshoot the problem:   Check to see if the request was processed by the WebSphere plug-in but was never received by 

题目

An administrator receives an error when attempting to execute a WebSphere Commerce command and decides to take the following steps to troubleshoot the problem:   Check to see if the request was processed by the WebSphere plug-in but was never received by the WebSphere Application Server  Check for Java errors from EJBs and servlets  Trace WebSphere Commerce Server subsystems and commands  Which of the following files should the administrator check to accomplish these steps?()

  • A、error.log
  • B、trace.log
  • C、http_plugin.log
  • D、servlet.log
  • E、SystemOut.log
如果没有搜索结果,请直接 联系老师 获取答案。
如果没有搜索结果,请直接 联系老师 获取答案。
相似问题和答案

第1题:

有以下程序

#include <stdio.h>

typedef struct

{ int num;double s ; }REC;

void fun1( REC x ){x.num=23; x.s=88.5;}

main()

{ REC a={16,90.0 };

fun1(a);

printf("%d\n",a.num);

}

程序运行后的输出结果是 【 1 4 】 。


正确答案:

第2题:

标准模块文件的扩展名是( )。

A、 .cls

B、 .frm

C、 .bas

D、 .rec


正确答案:C

第3题:

以下结构体类型说明和变量定义中正确的是

A)typedef struct

{int n; char c;} REC;

REC t1,t2;

B)struct REC;

{int n; char c;};

REC t1,t2;

C)typedef struct REC ;

{int n=0; char c='A';} t1,t2

D)struct

{int n;char c;}REC;

REC t1,t2;


正确答案:A

第4题:

如下函数调用语句func(rec1,rec2+rec3,rec4,rec5);该函数调用语句中,含的实参个数是().

A.3

B.4

C.5

D.有语法错误


正确答案:B

第5题:

以下函数调用语句中,含有的实参个数是().func(rec1,rec2+1,(rec3,rec4));

A.3

B.4

C.5

D.6


正确答案:A

第6题:

以下结构体类型说明和变量定义中正确的是( )。

A.typedef struct

B.struct REC; {int n;char c;}REC; {int n;char c;}; REC t1,t2; REC t1,t2;

C.typedef struct REC;

D.struct {int n=0;char c='A';}t1,t2; {int n;char c;}REC; REC t1,t2;


正确答案:A
解析:选项A中用typedef定义结构体类型名REC后,REC能够唯一地标识这种结构体类型,可以用REC定义变量,这是正确的结构体类型变量的定义,选项C是错误的。选项B中“struct REC;”后面不应该加分号。选项D中的结构体是一个无名结构体类型,REC是结构体变量,不是结构体类型,因此不能用来定义结构体变量。

第7题:

新闻组的英文名称是()。

A、Misc

B、Soc

C、NewsGroups

D、Rec


参考答案:C

第8题:

rec.autos.driving中的顶级域名为( )。

A.未列出

B.driving

C.autos

D.rec


正确答案:D

第9题:

有以下程序

include<stdio.h>

typedef struct

{int num;double s;}REC;

void funl(REC x){x.nllm=23;x.s=88.5;}

main( )

{REC a={16,90.0);

funl(A);

prinff(“%d\n”,a.num);

}

程序运行后的输出结果是【 】。


正确答案:16
16 解析:主函数中,通过funl()函数将a值传递给x。但没有把形参x的值返回,此时变量a的值并没有发生变化,所以输出a.hum的值为16。

第10题:

函数调用语句:func(rec1,rec2+rec3,(rec4,rec5))中,含有的实参个数是5。()

此题为判断题(对,错)。


参考答案:错误