更多"(75) is a clickable string or graph"的相关试题:
[单项选择]A clickable string or graphic that points to another Web page or document is called (18) 。
A. Link
B. Anchor
C. Browser
D. Hyperlink
[单项选择] (73) is a clickable string or graphic that points to another Web page or document.
A. Anchor
B. Browser
C. Hypertext
D. Hyperlink
[单项选择]() is a clickable string or graphic that points to another Web page or document.
A. Link
B. Anchor
C. Browser
D. Hyperlink
[单项选择] (75) is a clickable string or graphic that points to another Web page or document。
A. Anchor
B. Browser
C. Hypertext
D. Hyperlink
[单项选择](74) is a clickable string or graphic that points to another Web page or document.
A. Link
B. Hyperlink
C. Browser
D. Anchor
[单项选择]______is a clickable string or graphic that points to another Web page or document.
A. Link
B. Anchor
C. Browser
D. Hyperlink
[单项选择]下列程序段:
String s1=new String("How");
String s2=new String("How");
System.out.println(!(s1==s2));
的结果为
A. false
B. true
C. 1
D. 0
[单项选择]假定有以下函数过程:
Function Fun(S As String) As String
Dim sl As String
For i=1 To Len(S)
s1=UCase (Mid(S,i,1))+s1
Next i
Fun=s1
End Function
则Str2=Fun("abcdefg”)的输出结果为( )。
A. abcdefg
B. ABCDEFG
C. gfedcba
D. GFEDCBA
[单项选择]假设有以下代码:
String s="hello";
String t="hello";
char c[ ]='h','e','l','l','o';
下列选项中,返回false的语句是______。
A. equals(t);
B. equals(c);
C. s==t;
D. equals(new String("hello"));
[单项选择]假设有以下代码:
String s="hello";
String t="hello";
char c[]='h', 'e', 'l', 'l', 'o';
下列选项中,返回false的语句是______。
A. s.equals(t);
B. t.equals(c);
C. s==t;
D. t.equals (new String("hello"));
[单项选择]在某类的公共部分有声明string operator++( );和string operator++(int);则说明
A. string operator++();是前置自增运算符声明
B. string operator++();是后置自增运算符声明
C. string operator++(int); 是前置自增运算符声明
D. 两条语句无区别
[单项选择]执行String[] s=new String[10]后,哪个结论是正确的 ( )
A. s[10]为""
B. s[9]为null
C. s[0]为未定义
D. length为101
[单项选择]假定有如下语句:
answer $ =MsgBox("String1", , "String2", "String3", 2)
执行该语句后,将显示一个信息框,单击其中的“确定”按钮,则answer $的值为( )。
A. String1
B. String2
C. String3
D. 1