Java Practice 2

Descrição

Practice quiz for Java 1 at Gwinnett Tech College.
Ummm No
Quiz por Ummm No, atualizado more than 1 year ago
Ummm No
Criado por Ummm No mais de 8 anos atrás
1108
4

Resumo de Recurso

Questão 1

Questão
To add a value 1 to variable x, you write (Choose all that apply.)
Responda
  • x += 1;
  • x = 1 + x;
  • x := 1;
  • x = x + 1;
  • 1 + x = x;

Questão 2

Questão
An overloaded method is one that
Responda
  • has a different name than another method, but the same parameters.
  • has the same name as another method, but different parameters (by number, types or order of the types).
  • has the same name and parameters as a method defined in another class.
  • has the same name and parameters, but a different return type as another method.

Questão 3

Questão
In Java, the word true is ________.
Responda
  • same as value 0
  • same as value 1
  • a Boolean literal
  • a Java keyword

Questão 4

Questão
The ________ method parses a string s to a double value.
Responda
  • double.parseDouble(s);
  • double.parse(s);
  • Double.parsedouble(s);
  • Double.parseDouble(s);

Questão 5

Questão
Suppose variable gender is MALE and age equals 60, how is the expression ( gender == FEMALE ) && ( age >= 65 ) evaluated?
Responda
  • The condition ( gender == FEMALE ) is evaluated first and the evaluation stops immediately.
  • The condition ( age >= 65 ) is evaluated first and the evaluation stops immediately.
  • Both conditions are evaluated, from left to right.
  • Both conditions are evaluated, from right to left.

Questão 6

Questão
Will the following program terminate? int balance = 10; while (true) { if (balance < 9) continue; balance = balance - 9; }
Responda
  • Yes
  • No

Questão 7

Questão
What is the output of the following code? boolean even = false; System.out.println((even ? "true" : "false"));
Responda
  • true
  • true false
  • false
  • nothing

Questão 8

Questão
Which command compiles the Java source code file Welcome.java?
Responda
  • cd Welcome.java
  • javac Welcome.java
  • java Welcome.java
  • compile Welcome.java

Questão 9

Questão
The following code fragment reads in two numbers: (Choose all that apply.) Scanner input = new Scanner(System.in); int i = input.nextInt(); double d = input.nextDouble(); What are the correct ways to enter these two numbers?
Responda
  • Enter an integer, an Enter key, a double value, and then the Enter key.
  • Enter an integer, a space, a double value, and then the Enter key.
  • Enter an integer, two spaces, a double value, and then the Enter key.
  • Enter a numeric value with a decimal point, a space, an integer, and then the Enter key.

Questão 10

Questão
Suppose s1 and s2 are two strings. Which of the following statements or expressions is incorrect? (Choose all that apply.)
Responda
  • boolean b = s1.compareTo(s2);
  • char c = s1[0];
  • char c = s1.charAt(s1.length());
  • String s3 = s1 - s2;

Questão 11

Questão
Which statement is true?
Responda
  • A while statement cannot be nested inside another while statement.
  • An if statement cannot be nested inside another if statement.
  • A while statement cannot be nested inside an if statement.
  • None of the above is true.

Questão 12

Questão
What is output by the following Java code segment? int temp; temp = 180; while ( temp != 80 ) { if ( temp > 90 ) { System.out.print( "This porridge is too hot! " ); // cool down temp = temp – ( temp > 150 ? 100 : 20 ); } // end if else { if ( temp < 70 ) { System.out.print( "This porridge is too cold! "); // warm up temp = temp + (temp < 50 ? 30 : 20); } // end if } // end else } // end while if ( temp == 80 ) System.out.println( "This porridge is just right!" );
Responda
  • This porridge is too cold! This porridge is just right!
  • This porridge is too hot! This porridge is just right!
  • This porridge is just right!
  • None of the above.

Questão 13

Questão
Suppose s is a string with the value "java". What will be assigned to x if you execute the following code? char x = s.charAt(4);
Responda
  • 'a'
  • 'v'
  • Nothing will be assigned to x, because the execution causes the runtime error StringIndexOutofBoundsException.

Questão 14

Questão
Which of these statements best defines scope?
Responda
  • Scope refers to the classes that have access to a variable.
  • Scope determines whether a variable's value can be altered.
  • Scoping allows the programmer to use a class without using its fully qualified name.
  • Scope is the portion of a program that can refer to an entity by its simple name.

Questão 15

Questão
What is the value of (double)5/2?
Responda
  • 2.5
  • 2
  • 3
  • 2.0
  • 3.0

Questão 16

Questão
What does the expression x %= 10 do?
Responda
  • Adds 10 to the value of x, and stores the result in x.
  • Divides x by 10 and stores the remainder in x.
  • Divides x by 10 and stores the integer result in x.
  • None of the above.

Questão 17

Questão
Which of the following is not a package in the Java API?
Responda
  • java.characters.
  • java.awt.
  • javax.swing.event.
  • java.lang.

Questão 18

Questão
Suppose x=10 and y=10 what is x after evaluating the expression (y >= 10) || (x-- > 10)?
Responda
  • 11
  • 9
  • 10

Questão 19

Questão
Each time a method is invoked, the system stores parameters and local variables in an area of memory, known as ________, which stores elements in last-in first-out fashion.
Responda
  • a stack
  • an array
  • a heap
  • storage area

Questão 20

Questão
Counter-controlled repetition requires
Responda
  • A control variable and initial value.
  • A control variable increment (or decrement).
  • A condition that tests for the final value of the control variable.
  • All of the above.

Questão 21

Questão
Which of the following assignment statements is correct? (Choose all that apply.)
Responda
  • char c = 'd';
  • char c = "100";
  • char c = "d";
  • char c = 100;

Questão 22

Questão
To add 0.01 + 0.02 + ... + 1.00, what order should you use to add the numbers to get better accuracy?
Responda
  • add 1.00, 0.99, 0.98, ..., 0.02, 0.01 in this order to a sum variable whose initial value is 0.
  • add 0.01, 0.02, ..., 1.00 in this order to a sum variable whose initial value is 0.

Questão 23

Questão
(int)(Math.random() * (65535 + 1)) returns a random number ________.
Responda
  • between 1 and 65535
  • between 0 and 65536
  • between 0 and 65535
  • between 1 and 65536

Questão 24

Questão
What is the return value of "SELECT".substring(4, 4)?
Responda
  • T
  • C
  • an empty string
  • E

Questão 25

Questão
What is the value of (double)(5/2)?
Responda
  • 2
  • 2.0
  • 3
  • 2.5
  • 3.0

Questão 26

Questão
Which of the following statements will print a single line containing "hello there"?
Responda
  • System.out.println( "hello" ); System.out.println( " there" );
  • System.out.println( "hello" , " there" );
  • System.out.println( "hello" ); System.out.print( " there" );
  • System.out.print( "hello" ); System.out.println( " there" );

Questão 27

Questão
Which of the following operators are right-associative?
Responda
  • *
  • %
  • &&
  • +
  • =

Questão 28

Questão
What is displayed on the console when running the following program? class Test { public static void main (String[ ] args) { try { System.out.println("Welcome to Java"); } finally { System.out.println("The finally clause is executed"); } } }
Responda
  • The finally clause is executed
  • Welcome to Java followed by The finally clause is executed in the next line
  • None of the above
  • Welcome to Java

Questão 29

Questão
Which of the following exceptions is a checked exception?
Responda
  • ArithmeticException.
  • IOException.
  • InputMismatchException.
  • RuntimeException.

Questão 30

Questão
What exception type does the following program throw? public class Test { public static void main(String[ ] args) { System.out.println(1 / 0); } }
Responda
  • ClassCastException
  • No exception
  • ArithmeticException
  • StringIndexOutOfBoundsException
  • ArrayIndexOutOfBoundsException

Questão 31

Questão
What is wrong in the following program? class Test { public static void main (String[ ] args) { try { System.out.println("Welcome to Java"); } } }
Responda
  • You cannot have a try block without a catch block.
  • A method call that does not declare exceptions cannot be placed inside a try block.
  • You cannot have a try block without a catch block or a finally block.
  • Nothing is wrong.

Questão 32

Questão
Which of the following statements is true?
Responda
  • The new exception class should extend RuntimeException if the program should be required to handle the exception.
  • Using existing exceptions makes the program less robust.
  • Always create your own exception classes.
  • Like any other class, an exception class can contain fields and methods.

Questão 33

Questão
What is displayed on the console when running the following program? class Test { public static void main(String[ ] args) { try { System.out.println("Welcome to Java"); int i = 0; int y = 2/i; System.out.println("Welcome to HTML"); } finally { System.out.println("The finally clause is executed"); } } }
Responda
  • The program displays three lines: Welcome to Java, Welcome to HTML, The finally clause is executed.
  • Welcome to Java.
  • None of the above.
  • Welcome to Java followed by The finally clause is executed in the next line.

Questão 34

Questão
What is the difference between a try block and a try statement?
Responda
  • A try statement refers to the block of code following the keyword try, while the try block refers to the try keyword and the block of code following this keyword.
  • The try statement refers to the keyword try followed by a block of code. The try statement and its corresponding catch and/or finally clauses together form a try block.
  • There is no difference; the terms can be used interchangeably.
  • The try block refers to the keyword try followed by a block of code. The try block and its corresponding catch and/or finally clauses together form a try statement.

Questão 35

Questão
If the catch-or-declare requirement for a checked exception is not satisfied:
Responda
  • a stack trace will be displayed, along with a message indicating that the exception must be caught.
  • a stack trace will be displayed indicating the exception that has occurred and where it occurred.
  • the compiler will issue an error message indicating that the exception must be caught or declared.
  • the compiler will issue an error message indicating that the exception must be caught.

Questão 36

Questão
When an exception occurs it is said to have been:
Responda
  • handled.
  • thrown.
  • caught.
  • declared.

Questão 37

Questão
Exceptions can be thrown by:
Responda
  • All of the above.
  • code in a try block.
  • the Java Virtual Machine.
  • calls from a try block to other methods.

Questão 38

Questão
Analyze the following code: class Test { public static void main(String[ ] args) throws MyException { System.out.println("Welcome to Java"); } } class MyException extends Error { }
Responda
  • You cannot declare an exception in the main method.
  • You declared an exception in the main method, but you did not throw it.
  • The program has a compilation error.
  • You should not declare a class that extends Error, because Error raises a fatal error that terminates the program.

Questão 39

Questão
The following code causes Java to throw ________. int number = Integer.MAX_VALUE + 1;
Responda
  • Error
  • RuntimeException
  • no exceptions
  • Exception
  • Throwable

Questão 40

Questão
A Java exception is an instance of ________.
Responda
  • RuntimeException
  • Error
  • NumberFormatException
  • Exception
  • Throwable

Questão 41

Questão
Which of the following statements is true?
Responda
  • The code in a finally block is executed only if an exception occurs.
  • The code in a finally block is executed only if an exception does not occur.
  • None of the above are true.
  • The code in a finally block is executed only if there are no catch blocks.

Questão 42

Questão
Suppose ArrayList x contains two strings [Beijing, Singapore]. Which of the following method will cause runtime errors? (Choose all that apply.)
Responda
  • x.get(1)
  • x.size()
  • x.remove(2)
  • x.get(2)
  • x.set(2, "New York");

Questão 43

Questão
Which keyword is used to specify that a class will define the methods of an interface?
Responda
  • implements.
  • extends.
  • defines.
  • uses.

Questão 44

Questão
A(n) ____________________ class cannot be instantiated.
Responda
  • polymorphic.
  • abstract.
  • concrete.
  • final.

Questão 45

Questão
Failure to prefix the superclass method name with the keyword super and a dot (.) separator when referencing the superclass's method causes ________.
Responda
  • a syntax error.
  • a compile-time error.
  • a runtime error.
  • infinite recursion.

Questão 46

Questão
The equals method is defined in the Object class. Which of the following is correct to override it in the String class?
Responda
  • public static boolean equals(String other)
  • public boolean equals(String other)
  • public static boolean equals(Object other)
  • public boolean equals(Object other)

Questão 47

Questão
Inheritance means ________.
Responda
  • that a variable of supertype can refer to a subtype object
  • that data fields should be declared private
  • that a class can contain another class
  • that a class can extend another class

Questão 48

Questão
Analyze the following code: Cylinder cy = new Cylinder(1, 1); Circle c = cy;
Responda
  • The code has a runtime error.
  • The code has a compile error.
  • The code is fine.

Questão 49

Questão
Encapsulation means ________.
Responda
  • that a class can extend another class
  • that data fields should be declared private
  • that a variable of supertype can refer to a subtype object
  • that a class can contain another class

Questão 50

Questão
private fields of a superclass can be accessed in a subclass
Responda
  • by calling public or protected methods declared in the superclass.
  • All of the above.
  • directly.
  • by calling private methods declared in the superclass.

Questão 51

Questão
Suppose ArrayList x contains two strings [Beijing, Singapore]. Which of the following method will cause the list to become [Beijing]? (Choose all that apply.)
Responda
  • x.remove(1)
  • x.remove("Singapore")
  • x.remove(0)
  • x.remove(2)

Questão 52

Questão
You can assign ________ to a variable of Object[ ] type. (Choose all that apply.)
Responda
  • new java.util.Date[100]
  • new String[100]
  • new double[100]
  • new char[100]
  • new int[100]

Questão 53

Questão
Which of the following statements are true? (Choose all that apply.)
Responda
  • A private method cannot be overridden. If a method defined in a subclass is private in its superclass, the two methods are completely unrelated.
  • Overloading a method is to provide more than one method with the same name but with different signatures to distinguish them.
  • It is a compilation error if two methods differ only in return type in the same class.
  • To override a method, the method must be defined in the subclass using the same signature and compatible return type as in its superclass.
  • A static method cannot be overridden. If a static method defined in the superclass is redefined in a subclass, the method defined in the superclass is hidden.

Questão 54

Questão
Given the following code: class C1 {} class C2 extends C1 { } class C3 extends C2 { } class C4 extends C1 {} C1 c1 = new C1(); C2 c2 = new C2(); C3 c3 = new C3(); C4 c4 = new C4(); Which of the following expressions evaluates to false?
Responda
  • c4 instanceof C2
  • c1 instanceof C1
  • c3 instanceof C1
  • c2 instanceof C1

Questão 55

Questão
Object-oriented programming allows you to derive new classes from existing classes. This is called ________.
Responda
  • generalization
  • encapsulation
  • inheritance
  • abstraction

Questão 56

Questão
What is the printout for the third statement in the main method? public class Foo { static int i = 0; static int j = 0; public static void main(String[ ] args) { int i = 2; int k = 3; { int j = 3; System.out.println("i + j is " + i + j); } k = i + j; System.out.println("k is " + k); System.out.println("j is " + j); } }
Responda
  • j is 3
  • j is 1
  • j is 2
  • j is 0

Questão 57

Questão
The UML represents operations by listing the operation name, followed by a ________-separated list of parameters in parentheses, a ________ and the return type.
Responda
  • comma, colon.
  • colon, semicolon.
  • colon, colon.
  • comma, semicolon.

Questão 58

Questão
Analyze the following code: class Circle { private double radius; public Circle(double radius) { radius = radius; } }
Responda
  • The program will compile, but you cannot create an object of Circle with a specified radius. The object will always have radius 0.
  • The program has a compilation error because you cannot assign radius to radius.
  • The program does not compile because Circle does not have a default constructor.
  • The program has a compilation error because it does not have a main method.

Questão 59

Questão
Which diagram models system structure?
Responda
  • State machine diagram.
  • Activity diagram.
  • Class diagram.
  • Sequence diagram.

Questão 60

Questão
Which of the following is the first stage of the software life cycle?
Responda
  • testing.
  • implementation.
  • requirements gathering.
  • design.

Questão 61

Questão
Analyze the following code. public class Test { int x; public Test(String t) { System.out.println("Test"); } public static void main(String[ ] args) { Test test = new Test(); System.out.println(test.x); } }
Responda
  • The program has a compile error because System.out.println method cannot be invoked from the constructor.
  • The program has a compile error because Test does not have a default constructor.
  • The program has a compile error because you cannot create an object from the class that defines the object.
  • The program has a compile error because x has not been initialized.

Questão 62

Questão
Analyze the following code. public class Test { int x; public Test(String t) { System.out.println("Test"); } public static void main(String[ ] args) { Test test = null; System.out.println(test.x); } }
Responda
  • The program has a compile error because you cannot create an object from the class that defines the object.
  • The program has a compile error because x has not been initialized.
  • The program has a compile error because test is not initialized.
  • The program has a runtime NullPointerException because test is null while executing test.x.
  • The program has a compile error because Test does not have a default constructor.

Questão 63

Questão
Assume java.util.Date[ ] dates = new java.util.Date[10], which of the following statements are true? (Choose all that apply.)
Responda
  • dates is null.
  • dates = new Date() is fine, which creates a new Date object and assigns to dates.
  • dates = new java.util.Date[5] is fine, which assigns a new array to dates.
  • dates[0] is null.

Questão 64

Questão
The java.util.Date class is introduced in this section. Which of the following code creates an object of the Date class? (Choose all that apply.) A: public class Test { public Test() { new java.util.Date(); } } B: public class Test { public Test() { java.util.Date date = new java.util.Date(); } }
Responda
  • B
  • A
  • neither

Questão 65

Questão
________ is a construct that defines objects of the same type.
Responda
  • A class
  • A method
  • A data field
  • An object

Questão 66

Questão
Which two Java primitive types store floating-point numbers?
Responda
  • decimal and float.
  • point and double.
  • decimal and point.
  • float and double.

Questão 67

Questão
What is the printout of the second println statement in the main method? public class Foo { int i; static int s; public static void main(String[ ] args) { Foo f1 = new Foo(); System.out.println("f1.i is " + f1.i + " f1.s is " + f1.s); Foo f2 = new Foo(); System.out.println("f2.i is " + f2.i + " f2.s is " + f2.s); Foo f3 = new Foo(); System.out.println("f3.i is " + f3.i + " f3.s is " + f3.s); } public Foo() { i++; s++; } }
Responda
  • f2.i is 2 f2.s is 2
  • f2.i is 1 f2.s is 2
  • f2.i is 2 f2.s is 1
  • f2.i is 1 f2.s is 1

Questão 68

Questão
Which of the following statements are true? (Choose all that apply.)
Responda
  • Constructors are invoked using the new operator when an object is created.
  • At least one constructor must always be defined explicitly.
  • Constructors do not have a return type, not even void.
  • A default no-arg constructor is provided automatically if no constructors are explicitly declared in the class.
  • Constructors must have the same name as the class itself.

Questão 69

Questão
An object is an instance of a ________.
Responda
  • method
  • program
  • data
  • class

Questão 70

Questão
When you pass an array to a method, the method receives ________.
Responda
  • the length of the array
  • the reference of the array
  • a copy of the first element
  • a copy of the array

Questão 71

Questão
Assume int[ ] t = {1, 2, 3, 4}. What is t.length?
Responda
  • 4
  • 0
  • 5
  • 3

Questão 72

Questão
Analyze the following code: public class Test { public static void main(String[ ] args) { int[ ] x = {1, 2, 3, 4}; int[ ] y = x; x = new int[2]; for (int i = 0; i < x.length; i++) System.out.print(x[i] + " "); } }
Responda
  • The program displays 0 0 3 4
  • The program displays 0 0
  • The program displays 0 0 0 0
  • The program displays 1 2 3 4

Questão 73

Questão
Analyze the following code. int[ ] list = new int[5]; list = new int[6];
Responda
  • The code has runtime errors because the variable list cannot be changed once it is assigned.
  • The code has compile errors because you cannot assign a different size array to list.
  • The code has compile errors because the variable list cannot be changed once it is assigned.
  • The code can compile and run fine. The second line assigns a new array to list.

Questão 74

Questão
In the following code, what is the printout for list1? class Test { public static void main(String[ ] args) { int[ ] list1 = {1, 2, 3}; int[ ] list2 = {1, 2, 3}; list2 = list1; list1[0] = 0; list1[1] = 1; list2[2] = 2; for (int i = 0; i < list1.length; i++) System.out.print(list1[i] + " "); } }
Responda
  • 0 1 2
  • 1 2 3
  • 1 1 1
  • 0 1 3

Questão 75

Questão
How many elements are in array double[ ] list = new double[5]?
Responda
  • 0
  • 4
  • 5
  • 6

Questão 76

Questão
The selectionSort method is defined in this section. Assume list is {3.1, 3.1, 2.5, 6.4, 2.1}, what is the content of list after the first iteration of the outer loop in the method?
Responda
  • 2.1, 2.5, 3.1, 3.1, 6.4
  • 2.5, 3.1, 3.1, 6.4, 2.1
  • 3.1, 3.1, 2.5, 2.1, 6.4
  • 3.1, 3.1, 2.5, 6.4, 2.1

Questão 77

Questão
Analyze the following code: class Test { public static void main(String[ ] args) { System.out.println(xmethod(5)); } public static int xmethod(int n, long t) { System.out.println("int"); return n; } public static long xmethod(long n) { System.out.println("long"); return n; } }
Responda
  • The program displays long followed by 5.
  • The program displays int followed by 5.
  • The program runs fine but displays things other than 5.
  • The program does not compile because the compiler cannot distinguish which xmethod to invoke.

Questão 78

Questão
Which statement is false?
Responda
  • Redeclaring a method parameter as a local variable in the method's body is a compilation error.
  • Placing a semicolon after the right parenthesis enclosing the parameter list of a method declaration is a syntax error.
  • Forgetting to return a value from a method that should return a value is a compilation error.
  • If a method does not return a value, the return-value-type in the method declaration can be omitted.

Questão 79

Questão
What is Math.ceil(3.6)?
Responda
  • 5.0
  • 3.0
  • 4.0
  • 3

Questão 80

Questão
Programs designed for maintainability are constructed from small simple pieces or modules. Modules in Java are called:
Responda
  • both methods and classes.
  • arguments.
  • classes.
  • methods.

Questão 81

Questão
Which of the following promotions of primitive types is not allowed to occur?
Responda
  • char to int.
  • int to double.
  • short to long.
  • double to float.

Questão 82

Questão
What is Math.rint(3.6)?
Responda
  • 4.0
  • 3.0
  • 5.0
  • 3

Questão 83

Questão
Method log takes the logarithm of its argument with respect to what base?
Responda
  • pi
  • 2
  • e
  • 10

Questão 84

Questão
Does the return statement in the following method cause compile errors? public static void main(String[ ] args) { int max = 0; if (max != 0) System.out.println(max); else return; }
Responda
  • Yes
  • No

Questão 85

Questão
Analyze the following code. public class Test { public static void main(String[ ] args) { System.out.println(m(2)); } public static int m(int num) { return num; } public static void m(int num) { System.out.println(num); } }
Responda
  • The program runs and prints 2 once.
  • The program has a compile error because the second m method is defined, but not invoked in the main method.
  • The program has a compile error because the two methods m have the same signature.
  • The program runs and prints 2 twice.

Questão 86

Questão
Arguments to methods always appear within ________.
Responda
  • brackets
  • quotation marks
  • curly braces
  • parentheses

Questão 87

Questão
Math static method random generates a random double value in the range from 0.0
Responda
  • up to and including 1.0
  • up to but not including 1.0
  • up to and including 100.0
  • up to but not including 100.0

Questão 88

Questão
Which of the following primitive types is never promoted to another type?
Responda
  • double.
  • byte.
  • boolean.
  • both double and boolean

Questão 89

Questão
Suppose your method does not return any value, which of the following keywords can be used as a return type?
Responda
  • void
  • public
  • double
  • int
  • none of the above

Questão 90

Questão
A variable defined inside a method is referred to as ________.
Responda
  • a block variable
  • a global variable
  • a local variable
  • a method variable

Questão 91

Questão
The client can use a method without knowing how it is implemented. The details of the implementation are encapsulated in the method and hidden from the client who invokes the method. This is known as ________. (Choose all that apply.)
Responda
  • method hiding
  • information hiding
  • simplifying method
  • encapsulation

Questão 92

Questão
Which of the following statements about the break statement is false?
Responda
  • Common uses of the break statement are to escape early from a loop or to skip the remainder of a switch.
  • A break statement can only break out of an immediately enclosing while, for, do…while or switch statement.
  • The break statement is used to exit a repetition structure early and continue execution after the loop.
  • The break statement, when executed in a while, for or do…while, skips the remaining statements in the loop body and proceeds with the next iteration of the loop.

Questão 93

Questão
Consider the classes below: public class TestA { public static void main( String args[] ) { int x = 2, y = 20, counter = 0; for ( int j = y % x; j < 100; j += ( y / x ) ) counter++; } // end main } // end class TestA public class TestB { public static void main(String args[]) { int counter = 0; for ( int j = 10; j > 0; --j ) ++counter; } // end main } // end class TestB Which of the following statements is true?
Responda
  • The value of counter will be different at the end of each for loop for each class.
  • The value of j will be the same for each loop for all iterations
  • Both (a) and (b) are true.
  • Neither (a) nor (b) is true.

Questão 94

Questão
For the two code segments below: Segment A int q = 5; switch( q ) { case 1: System.out.println( 1 ); case 2: System.out.println( 2 ); case 3: System.out.println( 3 ); case 4: System.out.println( 4 ); case 5: System.out.println( 5 ); default: System.out.println( "default" ); } // end switch Segment B q = 4; switch( q ) { case 1: System.out.println( 1 ); case 2: System.out.println( 2 ); case 3: System.out.println( 3 ); case 4: System.out.println( 4 ); case 5: System.out.println( 5 ); default: System.out.println( "default" ); } // end switch Which of the following statements is true?
Responda
  • The output for Segment B is: ?45default
  • The output for Segment B is: ?4
  • The output for Segment A is: ?default
  • The output for Segment A is: ?5?default

Questão 95

Questão
What is sum after the following loop terminates? int sum = 0; int item = 0; do { item++; sum += item; if (sum > 4) break; } while (item < 5);
Responda
  • 7
  • 8
  • 5
  • 6

Questão 96

Questão
The control variable of a counter-controlled loop should be declared as ________to prevent errors.
Responda
  • double.
  • Any of the above.
  • int.
  • float.

Questão 97

Questão
Which of the following statements about a do..while repetition statement is true?
Responda
  • The body of a do..while loop is executed only if the terminating condition is true.
  • The body of a do..while loop is executed only once.
  • The body of a do..while loop is always executed at least once.
  • None of the above

Questão 98

Questão
Which expression is equivalent to if ( ! ( grade == sentinelValue ) )?
Responda
  • ! if ( grade == sentinelValue ).
  • ! if ( grade !== sentinelValue ).
  • if ( grade !== sentinelValue ).
  • if ( grade != sentinelValue ).

Questão 99

Questão
Which of the following assignment statements is correct to assign character 5 to c?
Responda
  • char c = '5';
  • char c = 5;
  • char c = "5";
  • char c = "344";

Questão 100

Questão
Analyze the following code: int i = 3434; double d = 3434; System.out.printf("%5.1f %5.1f", i, d);
Responda
  • The code compiles and runs fine to display 3434.0 3434.0.
  • The code compiles and runs fine to display 3434 3434.0.
  • i is an integer, but the format specifier %5.1f specifies a format for double value. The code has an error.

Questão 101

Questão
What is "Welcome" + 1 + 1 * 2?
Responda
  • Welcome11*2
  • Welcome4
  • Welcome12
  • Welcome3

Questão 102

Questão
Note that the Unicode for character A is 65. The expression 'A' + 1 evaluates to ________.
Responda
  • 66
  • B
  • A1
  • Illegal expression

Questão 103

Questão
________ returns true.
Responda
  • "peter".compareToIgnoreCase("Peter")
  • "peter".compareToIgnoreCase("peter")
  • "peter".equalsIgnoreCase("Peter")
  • "peter".equalsIgnoreCase("peter")
  • "peter".equals("peter")

Questão 104

Questão
To concatenate s1, s2, s3, and s4, you write ________.
Responda
  • s1.concate(s2).concate(s3).concate(s4);
  • s1.concate(s2) + s3.concate(s4);
  • ((s1.concate(s2)).concate(s3)).concate(s4);
  • s1.concate(s2).(concate(s3).concate(s4));

Questão 105

Questão
Assume that the ASCII code for character c is 99. What is the printout of the following code? System.out.println("a" + 'c');
Responda
  • a99
  • ac
  • 9799
  • 196

Questão 106

Questão
Math.sin(Math.PI) returns ________.
Responda
  • 0.0
  • 1.0
  • 0.5
  • 0.4

Questão 107

Questão
parseDouble is a method in the ________ class.
Responda
  • Integer
  • Double
  • Math
  • System

Questão 108

Questão
Is 'a' larger than 'A'?
Responda
  • Yes
  • No

Questão 109

Questão
The order of the precedence (from high to low) of the operators +, *, &&, ||, & is:
Responda
  • *, +, &, &&, ||
  • *, +, &, ||, &&
  • *, +, &&, ||, &
  • &, ||, &&, *, +
  • &&, ||, &, *, +

Questão 110

Questão
Analyze the following code: if (x < 100) && (x > 10) System.out.println("x is between 10 and 100");
Responda
  • The statement has compile errors because (x<100) & (x > 10) must be enclosed inside parentheses.
  • The statement has compile errors because (x<100) & (x > 10) must be enclosed inside parentheses and the println(…) statement must be put inside a block.
  • The statement compiles fine.
  • The statement compiles fine, but has a runtime error.

Questão 111

Questão
The following code displays ________. double temperature = 50; if (temperature >= 100) System.out.println("too hot"); else if (temperature <= 40) System.out.println("too cold"); else System.out.println("just right");
Responda
  • too hot
  • too hot too cold just right
  • just right
  • too cold

Questão 112

Questão
To check whether a char variable ch is an uppercase letter, you write ________.
Responda
  • ('A' <= ch <= 'Z')
  • (ch >= 'A' && ch <= 'Z')
  • (ch >= 'A' || ch <= 'Z')
  • (ch >= 'A' && ch >= 'Z')

Questão 113

Questão
The statement System.out.printf("%10s", 123456) outputs ________. (Note: * represents a space)
Responda
  • ****123456
  • 23456*****
  • 12345*****
  • 123456****

Questão 114

Questão
The equal comparison operator in Java is ________.
Responda
  • <>
  • ==
  • !=
  • ^=

Questão 115

Questão
To improve readability and maintainability, you should declare ________ instead of using literal values such as 3.14159.
Responda
  • classes
  • variables
  • methods
  • constants

Questão 116

Questão
To assign a value 1 to variable x, you write
Responda
  • 1 = x;
  • x = 1;
  • x := 1;
  • x == 1;
  • 1 := x;

Questão 117

Questão
The ________ method parses a string s to an int value.
Responda
  • integer.parseInteger(s);
  • Integer.parseInt(s);
  • integer.parseInt(s);
  • Integer.parseInteger(s);

Questão 118

Questão
Will System.out.println((char)4) display 4?
Responda
  • No
  • Yes

Questão 119

Questão
What is the printout of the following code: double x = 5.5; int y = (int)x; System.out.println("x is " + x + " and y is " + y);
Responda
  • x is 5 and y is 6
  • x is 5.5 and y is 5
  • x is 6 and y is 6
  • x is 5.5 and y is 5.0
  • x is 6.0 and y is 6.0

Questão 120

Questão
What is y displayed in the following code? public class Test1 { public static void main(String[ ] args) { int x = 1; int y = x = x + 1; System.out.println("y is " + y); } }
Responda
  • y is 0.
  • The program has a compile error since x is redeclared in the statement int y = x = x + 1.
  • y is 2 because x + 1 is assigned to x and then x is assigned to y.
  • y is 1 because x is assigned to y first.

Questão 121

Questão
24 % 5 is ________.
Responda
  • 1
  • 3
  • 2
  • 0
  • 4

Questão 122

Questão
Which of the following statements is correct to display Welcome to Java on the console? (Choose all that apply.)
Responda
  • System.out.println("Welcome to Java");
  • System.println('Welcome to Java');
  • System.out.print('Welcome to Java');
  • System.out.println('Welcome to Java');
  • System.out.print("Welcome to Java");

Questão 123

Questão
Why do computers use zeros and ones?
Responda
  • because combinations of zeros and ones can represent any numbers and characters.
  • because binary numbers are the bases upon which all other number systems are built.
  • because binary numbers are simplest.
  • because digital devices have two stable states and it is natural to use one state for 0 and the other for 1.

Questão 124

Questão
Every statement in Java ends with ________.
Responda
  • a semicolon (;)
  • a period (.)
  • an asterisk (*)
  • a comma (,)

Questão 125

Questão
________ are instructions to the computer. (Choose all that apply.)
Responda
  • Programs
  • Software
  • Keyboards
  • Hardware

Questão 126

Questão
________ is the physical aspect of the computer that can be seen.
Responda
  • Software
  • Application program
  • Operating system
  • Hardware

Questão 127

Questão
The extension name of a Java source code file is
Responda
  • .class
  • .obj
  • .java
  • .exe

Questão 128

Questão
________ is a program that runs on a computer to manage and control a computer's activities.
Responda
  • Modem
  • Java
  • Operating system
  • Compiler
  • Interpreter

Questão 129

Questão
________ translates high-level language program into machine language program.
Responda
  • A compiler
  • The operating system
  • CPU
  • An assembler

Questão 130

Questão
Which of the following are storage devices? (Choose all that apply.)
Responda
  • hard disk
  • floppy disk
  • CD-ROM
  • flash stick

Questão 131

Questão
The ________ method displays a message dialog box. (Choose all that apply.)
Responda
  • JOptionPane.showMessage(null, "Welcome to Java!", "Example 1.2 Output", JOptionPane.INFORMATION_MESSAGE);
  • JOptionPane.displayMessageDialog(null, "Welcome to Java!", "Example 1.2 Output", JOptionPane.INFORMATION_MESSAGE);
  • JOptionPane.showMessageDialog(null, "Welcome to Java!", "Example 1.2 Output", JOptionPane.INFORMATION_MESSAGE);
  • JOptionPane.showMessageDialog(null, "Welcome to Java!");
  • JOptionPane.displayMessage(null, "Welcome to Java!", "Example 1.2 Output", JOptionPane.INFORMATION_MESSAGE);

Questão 132

Questão
What is y displayed in the following code? public class Test { public static void main(String[ ] args) { int x = 1; int y = x++ + x; System.out.println("y is " + y); } }
Responda
  • y is 4.
  • y is 1.
  • y is 3.
  • y is 2.

Questão 133

Questão
Which of the following is a constant, according to Java naming conventions? (Choose all that apply.)
Responda
  • ReadInt
  • Test
  • MAX_VALUE
  • read
  • COUNT

Questão 134

Questão
Suppose a Scanner object is created as follows: Scanner input = new Scanner(System.in); What method do you use to read an int value?
Responda
  • input.nextInt();
  • input.int();
  • input.nextInteger();
  • input.integer();

Questão 135

Questão
The System.currentTimeMillis() returns ________.
Responda
  • the current time
  • the current time in milliseconds since midnight, January 1, 1970
  • the current time in milliseconds since midnight, January 1, 1970 GMT (the Unix time)
  • the current time in milliseconds
  • the current time in milliseconds since midnight

Questão 136

Questão
The Unicode of 'a' is 97. What is the Unicode for 'c'?
Responda
  • 96
  • 97
  • 99
  • 98

Questão 137

Questão
________ is the Java assignment operator.
Responda
  • :=
  • ==
  • =:
  • =

Questão 138

Questão
The statement System.out.printf("%5d", 123456) outputs ________.
Responda
  • 12345.6
  • 23456
  • 123456
  • 12345

Questão 139

Questão
Which of the Boolean expressions below is incorrect? (Choose all that apply.)
Responda
  • (-10 < x < 0)
  • (true) && (3 => 4)
  • (x != 0) || (x = 0)
  • (x > 0) || (x < 0)
  • !(x > 0) && (x > 0)

Questão 140

Questão
"ab".compareTo("aB") is ________.
Responda
  • greater than 0
  • less than 0
  • equal to 0
  • less than or equal to 0

Questão 141

Questão
"smiles".substring(1, 5) returns "mile".
Responda
  • true
  • false

Questão 142

Questão
Which of the following is a possible output for (int)(51 * Math.random())?
Responda
  • 0
  • 50
  • 100
  • 500

Questão 143

Questão
Which of the following statement prints smith\exam1\test.txt?
Responda
  • System.out.println("smith\exam1\test.txt");
  • System.out.println("smith\\exam1\\test.txt");
  • System.out.println("smith\"exam1\"test.txt");
  • System.out.println("smith"\exam1"\test.txt");

Questão 144

Questão
Math.sqrt(4) returns ________.
Responda
  • 2
  • 2.0
  • 1
  • 1.0

Questão 145

Questão
'3' - '2' + 'm' / 'n' is ________.
Responda
  • 0
  • 1
  • 2
  • 3

Questão 146

Questão
An int variable can hold ________.
Responda
  • 'x'
  • 120
  • 120.0

Questão 147

Questão
Analyze the following fragment: double sum = 0; double d = 0; while (d != 10.0) { d += 0.1; sum += sum + d; }
Responda
  • After the loop, sum is 0 + 0.1 + 0.2 + 0.3 + ... + 1.9
  • The program does not compile because sum and d are declared double, but assigned with integer value 0.
  • The program may not stop because of the phenomenon referred to as numerical inaccuracy for operating with floating-point numbers.
  • The program never stops because d is always 0.1 inside the loop.

Questão 148

Questão
After the continue outer statement is executed in the following loop, which statement is executed? outer: for (int i = 1; i < 10; i++) { inner: for (int j = 1; j < 10; j++) { if (i * j > 50) continue outer; System.out.println(i * j); } } next:
Responda
  • The control is in the outer loop, and the next iteration of the outer loop is executed.
  • The program terminates.
  • The statement labeled next.
  • The control is in the inner loop, and the next iteration of the inner loop is executed.

Questão 149

Questão
Consider the following two Java code segments: Segment 1 int i = 0; for ( int i = 0; i <= 20; i++ ) { System.out.println( i ); } Segment 2 while ( i < 20 ) { System.out.println( i ); i++; } Which of the following statements are true?
Responda
  • The output from these segments is not the same.
  • The scope of the control variable i is different for the two segments.
  • They are both true
  • Neither are true

Questão 150

Questão
Which statement prints the floating-point value 123.456 right justified with a field width of 10?
Responda
  • System.out.printf( “%10.3f”, 123.456 );
  • System.out.printf( “%f10.3”, 123.456 );
  • System.out.printf( “%d10.3”, 123.456 );
  • System.out.printf( “%10.3d”, 123.456 );

Questão 151

Questão
Which statement below is not true?
Responda
  • Structured programming produces programs that are easier to modify
  • Structured programming produces programs that are easier to test.
  • Structured programming promotes simplicity.
  • Structured programming requires four forms of control.

Questão 152

Questão
An enumeration is a special class that is introduced by the keyword ________ and a type name.
Responda
  • class.
  • classEnum.
  • enumeration.
  • enum.

Questão 153

Questão
When an object is concatenated with a String:
Responda
  • a compilation error occurs.
  • the object's class name is used.
  • the object's toString method is implicitly called to obtain the String representation of the object.
  • a runtime error occurs.

Questão 154

Questão
Suppose method1 is declared as void method1 ( int a, float b ) Which of the following methods correctly overloads method1?
Responda
  • void method2 ( int a, float b ).
  • void method2 ( float a, int b ).
  • void method1 ( float a, int b ).
  • void method1 ( int b, float a ).

Questão 155

Questão
Which operator can be used in string concatenation?
Responda
  • ++.
  • +=.
  • =+.
  • *.

Questão 156

Questão
(char)('a' + Math.random() * ('z' - 'a' + 1)) returns a random character ________.
Responda
  • between 'a' and 'z'
  • between 'b' and 'z'
  • between 'a' and 'y'
  • between 'b' and 'y'

Questão 157

Questão
Which of the following is the best for generating random integer 0 or 1?
Responda
  • (int)(Math.random() + 0.2)
  • (int)Math.random()
  • (int)Math.random() + 1
  • (int)(Math.random() + 0.8)
  • (int)(Math.random() + 0.5)

Questão 158

Questão
Information is passed to a method in:
Responda
  • the method body.
  • the method name.
  • the arguments to the method.
  • that method's return.

Questão 159

Questão
The signature of a method consists of ________.
Responda
  • method name
  • method name and parameter list
  • return type, method name, and parameter list
  • parameter list

Questão 160

Questão
Analyze the following code: public class Test { public static void main(String[ ] args) { int[ ] a = new int[4]; a[1] = 1; a = new int[2]; System.out.println("a[1] is " + a[1]); } }
Responda
  • The program displays a[1] is 1.
  • The program has a runtime error because a[1] is not initialized.
  • The program displays a[1] is 0.
  • The program has a compile error because new int[2] is assigned to a.

Questão 161

Questão
Which of the following declarations are correct? (Choose all that apply.)
Responda
  • public static void print(double... numbers)
  • public static double... print(double d1, double d2)
  • public static void print(double... numbers, String name)
  • public static void print(String... strings, double... numbers)
  • public static void print(int n, double... numbers)

Questão 162

Questão
The reverse method is defined in this section. What is list1 after executing the following statements? int[ ] list1 = {1, 2, 3, 4, 5, 6}; int[ ] list2 = reverse(list1);
Responda
  • list1 is 6 6 6 6 6 6
  • list1 is 0 0 0 0 0 0
  • list1 is 1 2 3 4 5 6
  • list1 is 6 5 4 3 2 1

Questão 163

Questão
Analyze the following code: public class Test { public static void main(String[ ] args) { int[ ] x = {1, 2, 3, 4}; int[ ] y = x; x = new int[2]; for (int i = 0; i < y.length; i++) System.out.print(y[i] + " "); } }
Responda
  • The program displays 1 2 3 4
  • The program displays 0 0 0 0
  • The program displays 0 0
  • The program displays 0 0 3 4

Questão 164

Questão
Suppose int i = 5, which of the following can be used as an index for array double[ ] t = new double[100]? (Choose all that apply.)
Responda
  • (int)(Math.random() * 100))
  • Math.random() * 100
  • i
  • i + 6.5
  • i + 10

Questão 165

Questão
If you declare an array double[ ] list = {3.4, 2.0, 3.5, 5.5}, the highest index in array list is ________.
Responda
  • 4
  • 2
  • 3
  • 0
  • 1

Questão 166

Questão
Suppose a method p has the following heading: public static int[ ] p() What return statement may be used in p()?
Responda
  • return int[ ]{1, 2, 3};
  • return {1, 2, 3};
  • return 1;
  • return new int[ ]{1, 2, 3};

Questão 167

Questão
Analyze the following code: public class Test { public static void main(String[ ] args) { int[ ] oldList = {1, 2, 3, 4, 5}; reverse(oldList); for (int i = 0; i < oldList.length; i++) System.out.print(oldList[i] + " "); } public static void reverse(int[ ] list) { int[ ] newList = new int[list.length]; for (int i = 0; i < list.length; i++) newList[i] = list[list.length - 1 - i]; list = newList; } }
Responda
  • The program displays 1 2 3 4 5.
  • The program displays 1 2 3 4 5 and then raises an ArrayIndexOutOfBoundsException.
  • The program displays 5 4 3 2 1.
  • The program displays 5 4 3 2 1 and then raises an ArrayIndexOutOfBoundsException.

Questão 168

Questão
Analyze the following code: (Choose all that apply.) public class Test { public static void main(String[ ] args) { A a = new A(); a.print(); } } class A { String s; A(String s) { this.s = s; } void print() { System.out.println(s); } }
Responda
  • The program has a compilation error because class A does not have a default constructor.
  • The program would compile and run if you change A a = new A() to A a = new A("5").
  • The program compiles and runs fine and prints nothing.
  • The program has a compilation error because class A is not a public class.

Questão 169

Questão
Which of the following statements are true? (Choose all that apply.)
Responda
  • Data fields have default values.
  • You may assign an int value to a reference variable.
  • Local variables do not have default values.
  • A variable of a reference type holds a reference to where an object is stored in the memory.
  • A variable of a primitive type holds a value of the primitive type.

Questão 170

Questão
Given the declaration Circle x = new Circle(), which of the following statement is most accurate?
Responda
  • You can assign an int value to x.
  • x contains a reference to a Circle object.
  • x contains an int value.
  • x contains an object of the Circle type.

Questão 171

Questão
The keyword ________ is required to declare a class.
Responda
  • private
  • class
  • All of the above.
  • public

Questão 172

Questão
In this question, assume a class, Book, has been defined. Which set of statements creates an array of Book objects?
Responda
  • Book[] books;
 books = new Book()[ numberElements ];
  • Book[] books;
 books = new Book[ numberElements ];
  • All of the above.
  • new Book() books[];
 books = new Book[ numberElements ];

Questão 173

Questão
What is wrong in the following code? class TempClass { int i; public void TempClass(int j) { int i = j; } } public class C { public static void main(String[ ] args) { TempClass temp = new TempClass(2); } }
Responda
  • The program has a compilation error because TempClass does not have a default constructor.
  • The program has a compilation error because TempClass does not have a constructor with an int argument.
  • The program compiles fine, but it does not run because class C is not public.
  • The program compiles and runs fine.

Questão 174

Questão
What is the default initial value of a String instance variable?
Responda
  • "default"
  • ""
  • null
  • default

Questão 175

Questão
You should add the static keyword in the place of ? in line ________ in the following code: 1 public class Test { 2 private int age; 3 4 public ? int square(int n) { 5 return n * n; 6 } 7 8 public ? int getAge() { 9 } 10}
Responda
  • in both line 4 and line 8
  • in line 8
  • in line 4
  • none

Questão 176

Questão
The boolean values can be displayed with the ________ format specifier.
Responda
  • %a.
  • %b.
  • %c.
  • %bool.

Questão 177

Questão
What is the number of iterations in the following loop: for (int i = 1; i <= n; i++) { // iteration }
Responda
  • n + 1
  • 2*n
  • n
  • n - 1

Questão 178

Questão
What modifier should you use on a class so that a class in the same package can access it but a class in a different package cannot access it?
Responda
  • protected
  • private
  • public
  • Use the default modifier.

Questão 179

Questão
Which of the following is true?
Responda
  • Pseudocode is used to describe an algorithm.
  • Pseudocode is translatable by the programmer into a programming language (like Java).
  • Pseudocode is used to describe executable statements that will eventually be translated by the programmer into a program.
  • All of the above.

Questão 180

Questão
Which of the following is a double-selection control statement?
Responda
  • do..while.
  • for.
  • if...else.
  • if.

Questão 181

Questão
Suppose s1 and s2 are two strings. What is the result of the following code? s1.equals(s2) == s2.equals(s1)
Responda
  • true
  • false

Questão 182

Questão
A class within a package must be declared public if
Responda
  • It will be used only by other classes in the same package.
  • It will be used by classes that are not in the same package.
  • It is in the same directory as the other classes in the package.
  • It has a unique name.

Questão 183

Questão
A String constructor cannot be passed variables of type:
Responda
  • char arrays.
  • int arrays.
  • byte arrays.
  • Strings.

Questão 184

Questão
A programmer-defined constructor that has no arguments is called a ________.
Responda
  • zero-argument constructor.
  • no-argument constructor.
  • default constructor.
  • main constructor.

Questão 185

Questão
Is the following loop correct? for (; ; );
Responda
  • Yes
  • No

Questão 186

Questão
You can create an ArrayList using ________.
Responda
  • ArrayList()
  • new ArrayList()
  • new ArrayList[100]
  • new ArrayList[ ]

Questão 187

Questão
List the following operators in the order that they will be evaluated: -, *, /, +, %. Assume that if two operations have the same precedence, the one listed first will be evaluated first.
Responda
  • +, -, /, *, %.
  • -, +, %, *, /.
  • -, *, %, +, /.
  • *, /, %, -, +.

Questão 188

Questão
Which of the following is not a Java primitive type?
Responda
  • char
  • byte
  • real
  • double

Questão 189

Questão
Which of the following statements are correct? (Choose all that apply.)
Responda
  • The nextInt() method in the Random class returns the next random int value.
  • The nextDouble() method in the Random class returns the next random double value.
  • When creating a Random object, you have to specify the seed or use the default seed.
  • If two Random objects have the same seed, the sequence of the random numbers obtained from these two objects are identical.

Questão 190

Questão
What exception type does the following program throw? public class Test { public static void main(String[ ] args) { Object o = new Object(); String d = (String)o; } }
Responda
  • ClassCastException
  • No exception
  • ArrayIndexOutOfBoundsException
  • ArithmeticException
  • StringIndexOutOfBoundsException

Questão 191

Questão
Which of the following is not a benefit of goto-less programming?
Responda
  • Easier to debug and modify
  • Shorter
  • Clearer
  • More likely to be bug free

Questão 192

Questão
Consider integer array values, which contains 5 elements. Which statements successfully swap the contents of the array at index 3 and index 4?
Responda
  • values[ 3 ] = values[ 4 ];
 values[ 4 ] = values[ 3 ];
  • values[ 4 ] = values[ 3 ];
 values[ 3 ] = values[ 4 ];
  • int temp = values[ 3 ];
 values[ 3 ] = values[ 4 ];
 values[ 4 ] = temp;
  • int temp = values[ 3 ];
 values[ 3 ] = values[ 4 ];
 values[ 4 ] = values[ 3 ];

Questão 193

Questão
To prevent a class from being instantiated, ________
Responda
  • use the static modifier on the constructor.
  • use the public modifier on the constructor.
  • don't use any modifiers on the constructor.
  • use the private modifier on the constructor.

Questão 194

Questão
When compiling a class in a package, the javac command-line option ________ causes the javac compiler to create appropriate directories based on the class's package declaration.
Responda
  • -p.
  • -a.
  • -d.
  • -dir.

Questão 195

Questão
An advantage of inheritance is that:
Responda
  • All methods can be inherited.
  • All instance variables can be uniformly accessed by subclasses and superclasses.
  • Objects of a subclass can be treated like objects of their superclass.
  • None of the above.

Questão 196

Questão
An instance of ________ are unchecked exceptions. (Choose all that apply.)
Responda
  • Throwable
  • NumberFormatException
  • Error
  • Exception
  • RuntimeException

Questão 197

Questão
Assume StringBuilder strBuf is "ABCCEFC", after invoking ________, strBuf contains "ABTTEFT".
Responda
  • strBuf.replace(2, 7, "TTEFT")
  • strBuf.replace("CC", "TT")
  • strBuf.replace("C", "T")
  • strBuf.replace('C', "TT")
  • strBuf.replace('C', 'T')

Questão 198

Questão
Using public set methods provides data integrity if:
Responda
  • The instance variables are public.
  • The instance variables are private.
  • The methods perform validity checking.
  • Both b and c.

Questão 199

Questão
Which of the following is the correct header of the main method? (Choose all that apply.)
Responda
  • public static void main(String[ ] x)
  • public static void main(String args[ ])
  • static void main(String[ ] args)
  • public static void main(String x[ ])
  • public static void main(String[ ] args)

Questão 200

Questão
What is x after the following statements? int x = 1; int y = 2; x *= y + 1;
Responda
  • x is 2.
  • x is 3.
  • x is 1.
  • x is 4.

Semelhante

Translations and transformations of functions
Christine Laurich
Java Week 5 Object Oriented Programming
Troy Bowlin
Template Quiz
Economics Club
Anthropology 5 Quiz 2
quihoang_
Java Practice 3
Ummm No
Anthropology 5 Quiz 1
quihoang_
Anthropology 5 Quiz 3
quihoang_
Anthropology 5 Quiz 4
quihoang_
First Aid Exam
Jess Billitz
AQA Biology B1 Questions
Bella Statham