Fill in the blanks with the expressions given below. Change the form where necessary. Each word can be used only once.be wrapped up in sth.cater forin anticipation of sth.soak sth. up1. Totallyshe __________her painting when her father came to tell her that there was a phone call for her.2.When his mother was in the hospital producing his sister, he was very excited–__________ having a cute baby sister.3.Gentle Annie appeared to enjoy every minute of her visit and __________the information like a sponge (海绵).4.The more a company desires to focus on its market share, the more it needs to __________its customers in the right way.
查看答案
分析以下代码:publicclassTest{publicstaticvoidmain(String[]args){int[]x={1,2,3,4};int[]y=x;x=newint[2];for(inti=0;i
A. 程序显示1234
B. 程序显示00
C. 程序显示034
D. 程序显示000
分析以下代码:publicclassTest{publicstaticvoidmain(String[]args){finalint[]x={1,2,3,4};int[]y=x;x=newint[2];for(inti=0;i
A. 程序显示1234
B. 程序显示00
C. 程序在语句x=newint[2]上有编译错误,因为x是final,不能更改。
D. 不能更改数组x中的元素,因为x是final。
下列程序的输出是__________?publicclassTest{publicstaticvoidmain(String[]args){int[][]values={{3,4,5,1},{33,6,1,2}};intv=values[0][0];for(introw=0;row
A. 1
B. 3
C. 5
D. 6
E. 33
以下代码的输出是__________?publicclassTest{publicstaticvoidmain(String[]args){int[][][]data={{{1,2},{3,4}},{{5,6},{7,8}}};System.out.print(ttt(data[0]));}publicstaticintttt(int[][]m){intv=m[0][0];for(inti=0;i
A. 1
B. 2
C. 4
D. 5
E. 6