参考答案和解析
参考答案:c
更多“– Hello! ()– Hello, this is Michael from Tianjin Vanguard Trading Inc. ”相关问题
  • 第1题:

    下列字符型常量Hello,world!表示方法中,错误的是______。

    A.[Hello,world!]

    B.'Hello,wOrld!'

    C.Hello,world!,

    D.{Hello,world!}


    正确答案:D

  • 第2题:

    4、以下语句的输出结果是: print("hello",end='+') print("world")

    A.hello+world

    B.hello+ world

    C.hello world

    D.hello+ world+


    B 解析:Mid(s$,i,n)表示从字符串s$的第i个字符开始向后截取n个字符,Len(s$)返回字符串s$的长度。

  • 第3题:

    39、以下语句的输出结果是: print("hello",end='+') print("world")

    A.hello+world

    B.hello+ world

    C.hello world

    D.hello+ world+


    C

  • 第4题:

    有字符串'hello',下列索引能够提取出'ell'的()

    A.'hello'[1]

    B.'hello'[3]

    C.'hello'[1:4]

    D.'hello'[-4:-2]


    hello[1:4];hello[-4:-2]

  • 第5题:

    若字符串 s = 'hello',则语句 s.ljust(8, '.') 和 s.rjust(8) 的输出结果为____________。

    A.'hello...' ' hello'

    B.'...hello' ' hello'

    C.'hello...' 'hello '

    D.'hello...' 'hello'


    “<

  • 第6题:

    假设在helloapp应用中有一个hello.jsp,它的文件路径如下: %CATALINA_HOME%/webapps/helloapp/hello/hello.jsp 那么在浏览器端访问hello.jsp的URL是什么?

    A.http://localhost:8080/hello.jsp

    B.http://localhost:8080/helloapp/hello.jsp

    C.http://localhost:8080/helloapp/hello/hello.jsp

    D.http://localhost:8080/hello/hello.jsp


    C