java 大学考试_大学期末考试-Java题库

这是一份Java编程的大学期末考试题库,包含了关于字符串操作、链表管理、数组排序、异常处理和字符串比较等多个知识点的题目解析。
摘要由CSDN通过智能技术生成

41528d3028836879cd698677c3999917.gif大学期末考试-Java题库

1. 下面程序的运行结果是( )。 public class E3{ public static void main(String args[]){ String s=“大大“; char a=s.charAt(2),b=s.charAt(4); System.out.print(a); System.out.println(b); } } 2. 下面程序的运行结果是( )。 import java.util.*; public class LinkedListExample { public static void main(String args[]){ LinkedList linkedlist = new LinkedList(); linkedlist.add(new Integer(1)); linkedlist.add(new Integer(2)); linkedlist.add(new Integer(3)); linkedlist.add(new Integer(4)); linkedlist.add(new Integer(5)); System.out.println(“The original contents of the linkedlist is: “); System.out.println(linkedlist); linkedlist.add(2,“hello“); linkedlist.addFirst(“First“); linkedlist.addLast(“Last“); System.out.println(“After adding elements,the linkedlist is: “); System.out.println(linkedlist); } } 答: 3. 下面程序的运行结果是( )。 public class TestArray { public static void main(String args[]) { int i, j; int a[] = { 5, 9, 6, 8, 7 }; for (i = 0; i < a.length-1; i++) { int k = i; for (j = i; j < a.length; j++) if (a[j] < a[k]) k = j; int temp = a[i]; a[i] = a[k]; a[k] = temp; } for (i = 0; i < a.length; i++) System.out.print(a[i] + “ “); System.out.println(); } } 4. 下面程序的运行结果是( )。 public class TryCatchFinally { static void Proc(int sel) { try { if (sel == 0) { System.out.println(“no Exception “); return; } else if (sel == 1) { int i = 0; int j = 4 / i; } } catch (ArithmeticException e) { System.out.println(“Catch “); } catch (Exception e) { System.out.println(“Will not be cuted“); } finally { System.out.println(“finally“); } } public static void main(String args[]) { Proc(0); Proc(1); } } 5. 下面程序的运行结果是( )。 public class welcomeTest { public static void main(String[] args) { String s, s1 = ““; char c; s = “wELCOME“; for (int i = 0; i = a } else { s1 = s1 + Character.toLowerCase(c); } } System.out.println(s1); } } 6. 下面程序的运行结果是( )。 public class arrTest { public static void main(String args[]) { int i, j; int a[] = {2, 1, 4, 8}; for (i = 0; i < a.length - 1; i++) { int k = i; for (j = i; j < a.length; j++) if (a[j] < a[k]) k = j; int temp = a[i]; a[i] = a[k]; a[k] = temp; } for (i = 0; i < a.length; i++) System.out.print(a[i] + “ “); System.out.println(); } } 7. 下面程序的运行结果是( true,false)。 public class StringTest { public static void main(String args[]) { String s1 = new String(“abcde“); String s2 = new String(“abcde“); boolean b1 = s1.equals(s2); boolean b2 = s1 == s2; System.out.print(b1 + “,“ + b2); } }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值