以下代码执行结果为()。
A: phper
B: hellophper
C: hello
D: 错误
A: phper
B: hellophper
C: hello
D: 错误
A
举一反三
- 以下代码执行结果为:()。 A: Hello B: phpmysql!! C: HelloHello D: Hellophpmysql!!
- 【单选题】以下代码执行结果为()。 <?php $a = "Hello"; function print_a() { $a = "php mysql !!"; global $a; echo $a; } echo $a; print_a(); ?> (5.0分) A. Hello B. php mysql !! C. Hello Hello D. Hello php mysql !!
- 执行下列代码后,结果字符串中的输出是() A: Hello World! B: World!Hello C: Hello D: World!
- 下列代码的执行结果为|var fn = "hello";|fn();|function fn(){ |console.log("world")|}; A: "hello" B: "world" C: undefined D: fn is not function
- 执行以下程序,结果为:s='hello!'for i in s: print(i, end=" , ") A: hello! B: hello! C: he D: hel
内容
- 0
执行如下代码段输出结果为char s1[10]="nanjing",s2[]="hello";strcpy(s1,s2);puts(s1); A: hello B: hellog C: hello\0g D: hellog
- 1
const{log}=console;log(’hello’)执行这个代码在控制台的结果是什么?() A: hello B: 报错 C: undefined D:
- 2
char s1[ ] = "hello ";char s2[ ] = "tangx ";strcpy(s1, s2);printf("%s\n", s1);以上代码段执行结果为哪个选项? A: hello tangx B: tangx hello C: hello D: tangx
- 3
以下代码片断运行结果为:Stringstr1=newString("Hello");Stringstr2=newString("Hello");System.out.println(str1.equals(str2)); A: 0 B: false C: 1 D: true
- 4
运行以下代码的结果是什么:a = 'Hello world'print(a[::-1]) A: Hello world B: Hello worl C: olleH D: dlrow olleH