In the following essay, each blank has four choices. Choose the most suitable one from the four choices and write down in the answer sheet.
The key to SNMP(66)is its simplicity. It has a small command set that does a good job of collecting information from(67)any network device. In a SNMP environment,(68)of the work is handled by the network management system. Devices that are being managed are not(69)with processing(70)that might affect their performance.
A.popularity
B.function
C.efficiency
D.power
第1题:
How many approaches are mentioned to define a narrative?
A.One.
B.Two.
C.Three.
D.Four.
第2题:
下列程序的运行结果是( )。 SET EXACT ON s="ni"+SPACE(2) IF S=”ni” IF S=”ni” ?"one" ELSE ?"two" END IF ELSE IF S="ni" ?"three" ELSE ?"four" END IF END IF RETURN
A.one
B.two
C.three
D.four
第3题:
第4题:
下列语句能给数组赋值,而不使用for循环的是
A.myArray{[1]="One";[2]="Two";[3]="Three";}
B.String s[5]=new String[] {"Zero","One","Two","Three","Four"};
C.String s[]=new String[] {"Zero","One","Two","Three","Four"};
D.String s[]=new String[]= {"Zero","One","Two","Three","Four"};
第5题:
( 14 )下列程序的运行结果是
SET EXACT ON
s="ni"+SPACE(2)
IF s=="ni"
IF s="ni"
? "one"
ELSE
? "two"
ENDIF
ELSE
IF s="ni"
? "three"
ELSE
? "four"
ENDIF
ENDIF
RETURN
A) one
B) two
C)three
D)four
第6题:
下列给字符串二维数组进行赋值的语句中,错误的是()。
A.String s[ ] [ ] = new String [ ] [ ] { { “One “ , “ Two “ }, { “ Three “ , “ Four “ } } ;
B.String s[ ] [ ] = { { “ One “ , “Two “},{ “ Three “ , “ Four “ } } ;
C.String s[ ] [ ] = new String [ ] [ ] { { “Zero”} , { “ One ” , “Two” , “ Three” , “ Four” } } ;
D.String s[ 2] [2 ] = { { “ One ” , “Two”},{“ Three” , “ Four” } } ;