【单选题】【消耗次数:1】
如何在浏览器的状态栏放入一条消息?( )
statusbar = put your message here
window.status = put your message here
window.status(put your message here)
status(put your message here)
参考答案:
复制
纠错
相关题目
【单选题】 如何在浏览器的状态栏放入一条消息?( )
①  statusbar = put your message here
②  window.status = put your message here
③  window.status(put your message here)
④  status(put your message here)
【判断题】 Don’t put your dirty clothes here. Put them away.
①  正确
②  错误
【判断题】 A: May I put my books here? B: Yes, put them please.
①  正确
②  错误
【单选题】 --_______ I put my coat here ?-- Sorry, you ________ .
①  mustnt
②  dont
③  neednt
④  cant
【单选题】 Please, just put your suitcase on the ( )
①  scales
②  weight
③  weigh
④  balance
【单选题】 A complimentary close is put [] your signature.
①  before
②  after
【单选题】 3.—____ I put my coat here? —Sorry, you ____.
①  May--mustnt
②  Do--dont
③  Can--neednt
④  May--cant
【单选题】 Its very hot here. Why not [填空] your coat?
①  have on
②  take off
③  put off
④  put on
【判断题】 A: Sorry, Mr. Thomas left here just a few minutes ago. B: May I take a message?
①  正确
②  错误
【单选题】 These are your clothes. Put [填空] in the wardrobe,please.
①  it
②  them
③  they
④  its
随机题目
【单选题】 在 C 程序中,用___________表示逻辑值“真”。
①  1
②  非 0 的数
③  非 1 的数
④  大于 0 的数
【单选题】 以下数组定义中,错误的是( )。
①  int a[3][2]={1,2,3,4,5};
【单选题】 下列C程序结构正确的是
①  main(){ printf("hello")}
②  main()(int i;printf("hello");)
③  main(){printf("hello");};
④  main(){printf("hello");}
【单选题】 C源程序编译后生成的程序的扩展名为( )
①  .c
②  .obj或.o
③  .exe
④  .cpp
【单选题】 输入字符的函数是
①  getchar()
②  putchar()
③  getchars()
④  putchars()
【单选题】 设有定义 int a[10]={0,0,0,0,0,0,0,0,0,0};则说法正确的是( )。
①  数组a有1个元素,其值为0
②  数组a有10个元素,各元素的值为0
③  数组a有10个元素,其中a[0]的值为0,其他元素的值不确定
④  数组初始化错误,初值个数少于数组元素个数
【单选题】 转义字符实现换行的是那个
①  \n
②  \r\t
③  br
④  ctr
【单选题】 已知 int t=0;while(t=1){...}则以下叙述正确的是
①  循环控制表达式的值为0
②  循环控制表达式的值为1
③  循环控制表达式不合法
④  以上都对
【单选题】 设有以下字符串定义,则数组s1和s2( )。char s1[]={ S ,t, r ,i,n, gchar s2[]= String
①  长度相同,但内容不同
②  长度相同,内容也相同
③  长度不同,但内容相同
④  长度不同,内容也不同
【单选题】 下列各语句定义了数组,其中哪一个是不正确的()
①  char a[3][10]={"China","American","Asia"};
②  int x[2][2]={1,2,3,4};
③  int x[2]={1,2,4,6};
④  int m[][3]={1,2,3,4,5,6,7};