A: HELLO WORLD!
B: Hello World!
C: HELLO WORLD1
D: hELLO wORLD!
举一反三
- 执行下列代码后,结果字符串中的输出是() A: Hello World! B: World!Hello C: Hello D: World!
- 执行下列语句后的显示结果是( )world="world"print("hello"+world) A: helloword B: "hello"world C: hello world D: "hello"+world
- 下列代码执行后,新字符串的值是() A: Hello to you! B: Hello World! C: Hello World!! D: Hello tWorld!
- 下面代码的运行结果是( )。var str= "hello world" ;var str1=str.toUpperCase();var str2=str.toLowerCase() ;alert (str1) ;alert (str2) ; A: "HELLO WORLD","HELLO WORLD" B: "HELLO WORLD","hello world" C: "hello worl","HELLO WORLD" D: "hello world","hello world"
- 执行下列语句后的显示结果是什么? >>> world=”world” >>> print( “hello”+ world) A: helloworld B: “hello”world C: hello world
内容
- 0
若字符串 s = 'hello world',则语句 s.ljust(15, '.') 和 s.rjust(15) 的输出结果为? A: '....hello world'' hello world' B: 'hello world....'' hello world' C: 'hello world....''hello world ' D: 'hello world....''hello world'
- 1
print("hello"+"world")的输出结果是。 A: “hello”world B: hello world C: "hello"+world D: helloworld
- 2
已知$str = " Hello World! ";下列说法正确的是: A: trim($str)结果是" Hello World!"; B: ltrim($str)结果是"Hello World! "; C: trim($str)结果是" Hello World!"; D: trim($str)结果是"Hello World!";
- 3
给定一个java程序的代码片断如下,运行后正确的输出结果是( )。String s=”hello, world”;String str = s.replace(“,” , ” ”);System.out.println(str); A: hello world; B: hello, world C: HELLO WORLD D: HELLO ,WORLD;
- 4
11字符串测试1:下列字符串定义正确的是: A: String str="Hello World!"; B: Str str="Hello World!"; C: var str="Hello World!"; D: var str='Hello World!';