Filters
Question type

Study Flashcards

Which of the following is not an arithmetic operator?


A) +
B) -
C) .
D) %

E) B) and D)
F) B) and C)

Correct Answer

verifed

verified

Which of the following is not a compilation error?


A) Neglecting to initialize a local variable in a method before it is used.
B) Placing a semicolon at the end of the first line of an if statement.
C) Omitting the left and right parenthesis for the condition of an if statement.
D) All are compilation errors.

E) A) and B)
F) A) and C)

Correct Answer

verifed

verified

B

Each of the following is a relational or equality operator except:


A) <=
B) =!
C) ==
D) >

E) C) and D)
F) B) and C)

Correct Answer

verifed

verified

B

All import declarations must be placed


A) inside the class declaration's body.
B) before the class declaration.
C) after the class declaration.
D) all of the above will work.

E) B) and D)
F) A) and B)

Correct Answer

verifed

verified

Which is the output of the following statements? System.out.print( "Hello ") ; System.out.println( "World" ) ;


A) Hello World
B) HelloWorld
C) Hello World.
D) World Hello

E) C) and D)
F) None of the above

Correct Answer

verifed

verified

A

Which of the following statements would display the phase Java is fun?


A) System.out.println( "hellois fun\rJava " ) ;
B) System.out.println( 'Java is fun' ) ;
C) System.out.println( "\"Java is fun\"" ) ;
D) System.out.println( Java is fun ) ;

E) A) and B)
F) B) and D)

Correct Answer

verifed

verified

Which command compiles the Java source code file Welcome.java?


A) cd Welcome.java
B) javac Welcome.java
C) java Welcome.java
D) compile Welcome.java

E) None of the above
F) All of the above

Correct Answer

verifed

verified

Which of the following is not a Java primitive type?


A) char
B) byte
C) real
D) double

E) A) and C)
F) C) and D)

Correct Answer

verifed

verified

What is the value of result after the following Java statements execute? int a,b,c,d,result; A = 4; B = 12; C = 37; D = 51; Result = d % a * c + a % b + a;


A) 119
B) 51
C) 127
D) 59

E) A) and B)
F) A) and C)

Correct Answer

verifed

verified

Which command executes the Java class file Welcome.class?


A) javac Welcome.class
B) java Welcome.class
C) java Welcome
D) run Welcome.class

E) B) and C)
F) B) and D)

Correct Answer

verifed

verified

Which of the following cannot cause a syntax error to be reported by the Java compiler?


A) Mismatched {}
B) Missing */ in a comment that begins with /*
C) Missing ;
D) An extra blank line.

E) None of the above
F) All of the above

Correct Answer

verifed

verified

Which of the following does not contain a syntax error?


A) System.out.println( 'Hello world!' ) :
B) System.out.println( "Hello world!" ) ;
C) System.out.println( "Hello world!" ) ; .
D) System.out.println( Hello world! ) ; .

E) C) and D)
F) All of the above

Correct Answer

verifed

verified

The format specifier ________ is a placeholder for an int value?


A) %a
B) %d
C) %int
D) %s

E) All of the above
F) A) and C)

Correct Answer

verifed

verified

When method printf requires multiple arguments,the arguments are separated with ________.


A) colons (:) .
B) semicolons (;) .
C) commas (,) .
D) periods (. ) .

E) A) and D)
F) C) and D)

Correct Answer

verifed

verified

What will be output after the following Java statements have been executed? int a,b,c,d; A = 4; B = 12; C = 37; D = 51; If ( a < b ) System.out.println( "a < b" ) ; If ( a > b ) System.out.println( "a > b" ) ; If ( d <= c ) System.out.println( "d <= c" ) ; If ( c != d ) System.out.println( "c != d" ) ;


A) a < b c != d
B) a < b d <= c
C != d
C) a > b c != d
D) a < b c < d
A != b

E) A) and D)
F) B) and C)

Correct Answer

verifed

verified

Which of the following is the escape character?


A) *
B) \
C) \n
D) "

E) A) and B)
F) A) and C)

Correct Answer

verifed

verified

Which of the following is a variable declaration statement?


A) int total;
B) import java.util.Scanner;
C) public static void main( String args[] )
D) // first string entered by user

E) A) and B)
F) A) and C)

Correct Answer

verifed

verified

Which of the following statement displays Hello World?


A) System.out.printf( "%2s","Hello " "World" ) ;
B) System.out.printf( "%s %s","Hello","World" ) ;
C) System.out.printf( "%s%s","Hello,World" ) ;
D) System.out.printf( "s% s%","Hello","World" ) ;

E) B) and D)
F) B) and C)

Correct Answer

verifed

verified

Which of the following statements does not alter a memory location?


A) int a;
B) number = 12;
C) y = y + 2;
D) width = Integer.parseInt(input) ;

E) B) and D)
F) None of the above

Correct Answer

verifed

verified

Which of the following escape sequences represents a carriage return?


A) \n.
B) \r.
C) \cr.
D) \c.

E) C) and D)
F) B) and C)

Correct Answer

verifed

verified

Showing 1 - 20 of 23

Related Exams

Show Answer