Java (Multimedia Approach) Ch 1-4

Descripción

C2 Java Programming Test sobre Java (Multimedia Approach) Ch 1-4, creado por johnrclark12 el 18/09/2014.
johnrclark12
Test por johnrclark12, actualizado hace más de 1 año
johnrclark12
Creado por johnrclark12 hace más de 9 años
33
1

Resumen del Recurso

Pregunta 1

Pregunta
Machine language is a binary language composed of only zeros and ones
Respuesta
  • True
  • False

Pregunta 2

Pregunta
A Java source file must have the following extension:
Respuesta
  • .class
  • .c
  • .txt
  • .java

Pregunta 3

Pregunta
Java bytecode varies according to the type of processor used in the computer.
Respuesta
  • True
  • False

Pregunta 4

Pregunta
Machine language is specific to the processor in a computer.
Respuesta
  • True
  • False

Pregunta 5

Pregunta
The software development method is a framework used to:
Respuesta
  • design an algorithm
  • develop a software product
  • maintain code
  • test code

Pregunta 6

Pregunta
Every program contains a particular sequence of operations referred to as
Respuesta
  • the software development method.
  • a statement.
  • machine language.
  • an algorithm.

Pregunta 7

Pregunta
True or False? A processor can execute Java bytecode directly.
Respuesta
  • True
  • False

Pregunta 8

Pregunta
Java is case-sensitive.
Respuesta
  • True
  • False

Pregunta 9

Pregunta
Which of the following is a correct way to start a Java comment?
Respuesta
  • */
  • "
  • /*
  • comment:
  • **

Pregunta 10

Pregunta
An object:
Respuesta
  • is created using a constructor in a class.
  • has specific values assigned to its fields.
  • exists only while the program is running.
  • all of these answers are correct

Pregunta 11

Pregunta
An object of a class is also called an instance of that class.
Respuesta
  • True
  • False

Pregunta 12

Pregunta
A class has values assigned to its fields whereas an object does not.
Respuesta
  • True
  • False

Pregunta 13

Pregunta
An object reference variable:
Respuesta
  • is an object.
  • holds the reference to an object.
  • references a primitive type.
  • is the name of a class.

Pregunta 14

Pregunta
A class:
Respuesta
  • must contain at least one field.
  • is used to create an object.
  • has specific values assigned to its fields.
  • all of these are correct.

Pregunta 15

Pregunta
A constructor is a special method used to create an object.
Respuesta
  • True
  • False

Pregunta 16

Pregunta
A string literal can span multiple lines.
Respuesta
  • True
  • False

Pregunta 17

Pregunta
Suppose that you have a Golfer object sally. What is the proper way of calling the swing() method for sally? The declaration is: Golfer sally = new Golfer();
Respuesta
  • sally.Golfer(swing);
  • none of these
  • swing().sally;
  • sally.swing();
  • Golfer.swing(sally);

Pregunta 18

Pregunta
Which of the following is a valid identifier?
Respuesta
  • 1alpha
  • x1_123
  • $fifteen
  • num is

Pregunta 19

Pregunta
A variable can be initialized when it is declared.
Respuesta
  • True
  • False

Pregunta 20

Pregunta
A widening conversion, in which a narrower type is converted to a wider type, takes place automatically.
Respuesta
  • True
  • False

Pregunta 21

Pregunta
Which of the following is NOT a legal identifier for a variable?
Respuesta
  • _gamma3
  • all of these are legal names
  • static
  • beta_2
  • alpha1

Pregunta 22

Pregunta
The drawString method in class Graphics2D is declared as follows: void drawString(String str, int x, int y) Assuming that some variables are declared as shown below, which calls to this method are valid? String s1 = " "; char c = 'x'; int x1 = 10, y1 = 20; double x2 = 20.5;
Respuesta
  • drawString(c, x1, y1);
  • drawString(x2, s1, y1);
  • drawString(s1, x2, y1);
  • drawString(s1, x1, y1);

Pregunta 23

Pregunta
It is not necessary for a method to return a value.
Respuesta
  • True
  • False

Pregunta 24

Pregunta
Before using a class in the java.lang package, it is necessary to import this class into the program.
Respuesta
  • True
  • False

Pregunta 25

Pregunta
In order to read from the keyboard it is necessary to:
Respuesta
  • use the System.in.readln() method
  • construct an object of the Keyboard class
  • use the System.our.println() method
  • none of these
  • construct an object of the Scanner class.

Pregunta 26

Pregunta
Which operation occurs first when the computer executes the statement below: int length = a - b * c % d--;
Respuesta
  • c % d
  • a - b
  • d--
  • impossible to determine unless parentheses are used
  • b * c

Pregunta 27

Pregunta
True or False? If someInt is an integer and someFloat is a float the following statement is a correct assignment operation. someInt = someFloat;
Respuesta
  • True
  • False

Pregunta 28

Pregunta
int GetHeight() is a method that returns the number of pixels in the column of an image.
Respuesta
  • True
  • False

Pregunta 29

Pregunta
Which operation occurs first when the computer executes the statement below: int length = a % b - c * --d;
Respuesta
  • c * --d
  • a % b
  • impossible to determine unless parentheses are used
  • --d
  • b - c

Pregunta 30

Pregunta
Color myColor = new Color(255, 0, 0); will create a Color object that is
Respuesta
  • red
  • blue
  • green
  • something else
  • yellow

Pregunta 31

Pregunta
The Scanner class is part of the java.util package.
Respuesta
  • True
  • False

Pregunta 32

Pregunta
Every "if" must match up with a corresponding "else".
Respuesta
  • True
  • False

Pregunta 33

Pregunta
Which of the following is NOT a legal statement as written? Assume: double someDouble; int someInt; float someFloat; byte someByte; long someLong;
Respuesta
  • all of these are legal
  • someLong = someFloat;
  • someLong = someByte;
  • someDouble = someInt;
  • someInt = someFloat;

Pregunta 34

Pregunta
What is the output of the following code segment for an input of 45? Scanner scanner = new Scanner(System.in); int x = scanner.nextInt(); if (x > 50) System.out.print("x is greater than 50."); else if (x > 30) System.out.print("x is greater than 30."); else if (x > 40) System.out.print("x is greater than 40.");
Respuesta
  • x is greater than 40.
  • x is greater than 30.
  • x is greater than 30. x is greater than 40.
  • x is greater than 50.

Pregunta 35

Pregunta
The code below is designed so that ONLY one shape will be displayed (assume the rest of the program has been developed): if (magicShape == 0) { // magicShape is 0, draw and color a rectangle Rectangle2D.Float shape = new Rectangle2D.Float(x, y, w1, h1); dk.fill(shape); } else if (magicShape == 1) { // magicShape is 1, draw and color an ellipse Ellipse2D.Float shape1 = new Ellipse2D.Float(x, y, w1, h1); dk.fill(shape1); } else if (magicShape == 2) { // magicShape is 2, draw and color a circle Ellipse2D.Float shape2 = new Ellipse2D.Float(x, y, w2, h2); dk.fill(shape2); } else { // magicShape is 3, draw a square Rectangle2D.Float shape3 = new Rectangle2D.Float(x, y, w2, h2); dk.draw(shape3); }
Respuesta
  • True
  • False

Pregunta 36

Pregunta
It is reasonable to use the switch statement to check the value of a String object.
Respuesta
  • True
  • False

Pregunta 37

Pregunta
What is the output of the following code segment for an input of 2? System.out.print("Enter x:"); Scanner scanner = new Scanner(System.in); int x = scanner.nextInt(); switch(x) { case 1: System.out.print("1"); case 2: System.out.print("2"); case 3: System.out.print("3"); }
Respuesta
  • 23
  • 3
  • 2
  • 12

Pregunta 38

Pregunta
How many times will the loop below go through the body of the loop (assume all variables are declared appropriately)? int numTimes = 5; while (numTimes >= 0) { { // do something in the loop numTimes++; }
Respuesta
  • 6
  • 5
  • it will go through the loop forever
  • 0

Pregunta 39

Pregunta
The do - while loop will always go through at least one iteration (as long as there is no break; statement)
Respuesta
  • True
  • False

Pregunta 40

Pregunta
True or False? Logical operators can only have boolean operands.
Respuesta
  • True
  • False

Pregunta 41

Pregunta
In the boolean expression a > b && c < d || e == f which operation will be evaluated first?
Respuesta
  • <
  • &&
  • >
  • ||
  • ==

Pregunta 42

Pregunta
Every while loop must execute (iterate) at least one time.
Respuesta
  • True
  • False

Pregunta 43

Pregunta
The continue; statement will make execution skip to the bottom of the loop and exit the loop entirely.
Respuesta
  • True
  • False

Pregunta 44

Pregunta
What will be printed by the following loop? for (int i = 0; i < 6; i++) { if (i % 3 == 0) { System.out.print(i); } }
Respuesta
  • none of these
  • 36
  • 012345
  • 03
  • 036

Pregunta 45

Pregunta
Which of the following is used to express the logical operation "OR"?
Respuesta
  • !!
  • none of these
  • ||
  • ??
  • &&

Pregunta 46

Pregunta
True or False? Evaluate the following boolean condition: num1 = 2; num2 = 1; bool = !(num1--==num2);
Respuesta
  • True
  • False

Pregunta 47

Pregunta
The break; statement is only used with the switch - case statement.
Respuesta
  • True
  • False

Pregunta 48

Pregunta
I want to print the message "uncomfortable" when the temperature is outside of the range of 60 to 80 degrees. Which condition will properly test for this situation?
Respuesta
  • (60 < temperature || >80)
  • (60 > temperature > 80)
  • (60 > temperature && temperature > 80)
  • none of these
  • (60 > temperature || temperature > 80)
Mostrar resumen completo Ocultar resumen completo

Similar

JAVA basics
Joseph Jimenez
Mis Recursos de Programación
maya velasquez
Adjetivos en japones 1
jairo.gil593
tipos de calentamiento
diana.cerda98
LITERATURA DEL ROMANTICISMO ESPAÑOL
leandro.farleths
Independencia de México
Alejanda Aias
Las Figuras y Silencios
mariajesus camino
TIPOS DE TECNOLOGÍA
bryan moreno
PLAN DE ASESORÍA TÉCNICA PEDAGOGICA EN VERACRUZ
DIRECCIÓN GENERAL DE EDUCACIÓN FISICA FEDERALIZADA
Organigrama Maquiladora Textil
Eber Ruiz