网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
int[] myArray = new int[] {1,2,3,4,5}; 以下哪个选项可以用一个数组创建一个列表?()
- A、 List myList = myArray.asList();
- B、 List myList = Arrays.asList(myArray);
- C、 List myList = new ArrayList(myArray);
- D、 List myList = Collections.fromArray(myArray);
参考答案
更多 “ int[] myArray = new int[] {1,2,3,4,5}; 以下哪个选项可以用一个数组创建一个列表?()A、 List myList = myArray.asList();B、 List myList = Arrays.asList(myArray);C、 List myList = new ArrayList(myArray);D、 List myList = Collections.fromArray(myArray);” 相关考题
考题
以下PHP代码运行的结果是什么?( )?phpdefine(myvalue,’10’);$myarray[10]=’dog’;$myarray[]=’human’;$myarray[‘myvalue’] = ‘cat’;$myarray[‘doy’]=’cat’;print ‘the value is:’;print $myarray[myvalue];
A.the value is :dogB.the value is :catC.the value is :humanD.the value is :10
考题
下列程序的功能是将一个整数数组写入二进制文件,在程序的下划线处应填入的选项是( )。 importjava.io.*; publicclassXieShuzu{ publicstaticvoidmain(String[]a){ int[]myArray=(10,20,30,40); try{ DataOutputStreamdos= newDataOu中utStream(new FileOutputStream("ints.dat")); for(inti=O;i<myArray.length;i++) dos.______(myArray[]); dos.close(); System.out.println("已经将整数数组写入二进制文件:ints.dat"): }catch(IOExceptionioe) {System.out.println("IOExcepr_on");} } }A.writeArrayB.writeByteC.writeIntD.writeDouble
考题
阅读下面程序import java.io.*;public class ByteStream Test{public static void main(String[] a){int[] myArray = {10,20.30,40};try{DataOutputStream dos = new DataOutputStream(new _________________( " ints.dat " ));for (int i=0;imyArray.length;i++)dos.writeInt(myArray[i] ) ;dos.close();S ystem.out.println( " Have written binary file ints.dat " );}catch (IOException ioc){System.out.println( " IO Exception " );}}}为保证程序正确运行,在程序中下划线处应填入的代码是A)FileOutputStreamB)ByteArrayOutputStreamC)BufferedOutputStreamD)FileWriter
考题
( 20 )在下列程序的空白处,应填入的正确选项是import java.io.*;Public class writeInt{Public static void main(string[ ] a) {Int[ ] myArray = {10,20,30,40};try{DataOutputSystem dos= new DataOutputSystem( new FileOutputSystem( “ ints.dat ” ) ) ;for ( int i=0 ; ImyArray.length ; i++ )dos 。 writeInt ( myArray[i] ) ;dos.System.out.println( “ Have written binary file ints.dat ” );}Catch(IOException ioe){ System.out.println( “ IO Exception ” );}}}A)start( )B)close( )C)read( )D)write( )
考题
JavaScript中,对数组的正确定义方法是?()
A.myArray=Array(18)B.myArray=Array()C.myArray=newArray(18)D.myArray=newArray()
考题
为将数组myArray的长度由6改为10,现采取以下编码:int[]myArray=newint[6];myArray=newint[10];(覆盖)代码执行后,以下叙述哪项是正确的?()
A.数组myArray的长度已由6改为10,其中前6个元素的值不变,后四个元素的值为空。B.数组myArray的长度已由6改为10,其中前6个元素的值不变,后四个元素需再经过初始化后才能使用。C.数组myArray的长度已由6改为10,原来6个元素的值全部丢失。D.数组myArray的长度没有变化。
考题
以下程序执行的结果是什么?()int[]myArray=newint[3];try{for(inti=0;i=myArray.length;i++){myArray[i]=i*3;System.out.println(myArray数组的第+i+个元素的值是:+myArray[i]);}}catch(ArrayIndexOurOfBoubsExceptione){System.out.println(数组下标越界);}A.程序执行,屏幕上显示“数组下标越界”B.程序出现异常,屏幕上提示出现数组下标越界异常C.程序正常执行结束,屏幕上显示数组中每个元素的值D.程序编译出错
考题
现有:classTestApp{publicstaticvoidmain(String[]args){int[5]myarray={10,11,12,13,14);intsum=0;for(intx:myarray)sum+=x;System.out.println(sum=+sum);}}上述程序运行后的结果是哪项?()
A.sum=10B.sum=70C.sum=60D.运行时抛出异常
考题
Given:int[]myArray=newint[]{1,2,3,4,5};Whatallowsyoutocreatealistfromthisarray?()
A.ListmyList=myArray.asList();B.ListmyList=Arrays.asList(myArray);C.ListmyList=newArrayList(myArray);D.ListmyList=Collections.fromArray(myArray);
考题
阅读下面程序 import java.io.*; public class ByteStreamTest { public static void main(String[] A) { int [] myArray = {10,20,30,40 }; try{ DataOutputStream dos = new DataOutputStream ( new______ ("ints.dat")); for (int i=0; i<myArray, length; i++) dos.writelnt( myArray[i] ); dos.close(); System.out.println("Have written binary file ints.dat"); } catch (IOException ioe){ Sy stem.out.println("IO Exception"); } } } 为保证程序正确运行,在程序中下划线处应填入的代码是A.FileOutputStreamB.ByteArrayOutputStreamC.BufferedOutputStreamD.FileWriter
考题
下面程序的功能是将一个整数数组写入二进制文件。在下画线处应填入的选项是 import java.io.*; public class XieShuzu { public static void main(String[] a) { int[]myArray={10,20,30,40}; try { DataoutputStream dos=new DataOutputStream(new FileoutputStream("ints.dat")); for(int i=0;i<myArray.1ength;i++)dos.______(myArray[i]); dos.close(); System.out.println("已经将整数数组写入二进制文件:ints.dat"); } catch(IOException ice) { System.out.println("IO Exception"); } } }A.writeArrayB.writeByteC.writeIntD.writeDouble
考题
命令“DIME myArray(10,10)”执行后,myArray(5,5)的值为( )。A.OB.5C..T.SXB
命令“DIME myArray(10,10)”执行后,myArray(5,5)的值为( )。A.OB.5C..T.D..F.
考题
在下列程序的空白处,应填入的正确选项是( )。 importjava.io.*; PublicclasswriteInt{ Publicstaticvoidmain(stringl)a){ Int[]myArray={10,20,30,40}; try{ DataOutputSystemdos=newDataOutputSystem (newFileOu中utSystem(“ints.dat”)); for (int i=0;I<MYARRAY.LENGTH:I++) dos.writeInt(myArray[i]; dos.______"; System.out.println (“Havewritten binary flleints.dat”); } Catch(IOExceptiOniOe) {System.out.println(“IOException”); } } }A.start()B.Close()C.read()D.write()
考题
int[][] myarray3=new int[3][]{new int[3]{5,6,2},new int[5]{6,9,7,8,3},newint[2]{3,2}};myarray3[2][2]的值是( )。
考题
类 myArray定义如下:public class myArray{static int[] a = {21,42,16,31,23,47,35};public void sortArray() //对数组从小到大进行排序{ …… }public int getMax() //返回最大的数组元素{ …… }public int getMin() //返回最小的数组元素{ …… }public float getAverage() //返回所有数组元素的平均值{ …… }public static void main(String[] args){ myArray myarray = new myArray();myarray.sortArray();System.out.println(myarray.getMax());System.out.println(myarray.getMin());System.out.println(myarray.getAverage());}在 main 方法中实现了数组元素最大值、最小值和平均值的输出。请编程实现 sortArray()、 getMax()、 getMin()、getAverage()四个方法。提示:排序完成以后,最大值即为最后一个数组元素,最小值为第一个数组元素。请在 jsp 网页中利用脚本计算1*2*3*……*10 的值并输出。
考题
Given: int[] myArray=newint[] {1, 2,3,4, 5}; What allows you to create a list from this array?() A、 List myList = myArray.asList();B、 List myList = Arrays.asList(myArray);C、 List myList = new ArrayList(myArray);D、 List myList = Collections.fromArray(myArray);
考题
以下程序执行的结果是什么?() int[] myArray = new int[3]; try{ for(int i=0; i=myArray.length;i++){ myArray[i]=i*3; System.out.println("myArray数组的第"+i+"个元素的值是:"+myArray[i]); } }catch(ArrayIndexOurOfBoubsException e){ System.out.println("数组下标越界");} A、程序执行,屏幕上显示“数组下标越界”B、程序出现异常,屏幕上提示出现数组下标越界异常C、程序正常执行结束,屏幕上显示数组中每个元素的值D、程序编译出错
考题
为将数组myArray的长度由3改为6,现采取以下编码:int[]myArray=new int [3];myArray=new int[6];代码执行后,以下叙述哪项是正确的?()A、数组myArray的长度已由3改为6,其中前3个元素的值不变,后3个元素的值为空。B、数组myArray的长度已由3改为6,其中前3个元素的值不变,后3个元素需再经过初始化后才能使用。C、数组myArray的长度没有变化。D、数组myArray的长度已由3改为6,原来3个元素的值全部丢失。
考题
现有: class TestApp{ public static void main (String[] args){ int [5] myarray={ 10, 11, 12, 13, 14); int sum=0; for (int x : myarray) sum+=x; System. out. println( "sum= "+sum); } } 上述程序运行后的结果是哪项?()A、sum=10B、sum=70C、sum=60D、运行时抛出异常
考题
int[][]myArray3=newint[3][]{newint[3]{5,6,2},newint[5]{6,9,7,8,3},newint[2]{3,2}};myArray3[2][2]的值是()A、9B、2C、6D、越界
考题
int[][] myArray3=new int[3][]{newint[3]{5,6,2},new int[5]{6,9,7,8,3},new int[2]{3,2}};myArray3[2][2]的值是()。A、9B、2C、6D、越界
考题
单选题Given: int[] myArray=newint[] {1, 2,3,4, 5}; What allows you to create a list from this array?()A
List myList = myArray.asList();B
List myList = Arrays.asList(myArray);C
List myList = new ArrayList(myArray);D
List myList = Collections.fromArray(myArray);
考题
单选题int[][]myArray3=newint[3][]{newint[3]{5,6,2},newint[5]{6,9,7,8,3},newint[2]{3,2}};myArray3[2][2]的值是()A
9B
2C
6D
越界
考题
单选题以下程序执行的结果是什么?() int[] myArray = new int[3]; try{ for(int i=0; i=myArray.length;i++){ myArray[i]=i*3; System.out.println("myArray数组的第"+i+"个元素的值是:"+myArray[i]); } }catch(ArrayIndexOurOfBoubsException e){ System.out.println("数组下标越界");}A
程序执行,屏幕上显示“数组下标越界”B
程序出现异常,屏幕上提示出现数组下标越界异常C
程序正常执行结束,屏幕上显示数组中每个元素的值D
程序编译出错
考题
单选题为将数组myArray的长度由6改为10,现采取以下编码: int[] myArray = new int[6]; myArray = new int[10]; 代码执行后,以下叙述哪项是正确的?()A
数组myArray的长度已由6改为10,其中前6个元素的值不变,后四个元素的值为空。B
数组myArray的长度已由6改为10,其中前6个元素的值不变,后四个元素需再经过初始化后才能使用。C
数组myArray的长度已由6改为10,原来6个元素的值全部丢失。D
数组myArray的长度没有变化。
考题
单选题现有: class TestApp{ public static void main (String[] args){ int [5] myarray={ 10, 11, 12, 13, 14); int sum=0; for (int x : myarray) sum+=x; System. out. println( "sum= "+sum); } } 上述程序运行后的结果是哪项?()A
sum=10B
sum=70C
sum=60D
运行时抛出异常
考题
单选题int[] myArray = new int[] {1,2,3,4,5}; 以下哪个选项可以用一个数组创建一个列表?()A
List myList = myArray.asList();B
List myList = Arrays.asList(myArray);C
List myList = new ArrayList(myArray);D
List myList = Collections.fromArray(myArray);
热门标签
最新试卷