subject

1. what is java se?

a. java standard edition
b. java software editor
c. java scientific edition
d. java software emulator

2. which of the following is the correct header for the main method of a java program?

a. public static void main(string args)
b. public abstract void main(string[] args )
c. public static void main(string[] args )
d. public static int main(string[] args )

3. which of the following statements creates a constant in java?

a. int const = 5;
b. const int x = 5;
c. final int x = 5;
d. const x = 5;

4. which of the following statements displays 17?

a. system. out. println (2*4+3*2+1);
b. system. out. println ((2*4+3)*2+1);
c. system. out. println (2*4+(3*(2+;
d. system. out. println (2*(4+3*2)+1);

if x is an int and the original value of x is 5, which of the following statements assigns an even value to x?

5.

a. x += 2;
b. x /= 3;
c. x %= 3;
d. x *= 3;

6. if x is an int, which expression will always evaluate to true if x is evenly divisible by 5

a. x == 5
b. x % 2 == 5
c. x % 2 == 0
d. x % 5 == 0

7. consider the following directions.

int y = 5;
int z = 10;

which of the following expressions evaluates to true?

a. y > 5 & & z > = 10
b. z / y > = 2 & & y * 2 > z
c. y - z > 0 || y * 4 == z * 2
d. y + z == z + y & & z - y == y - z

8. consider the following code.

int x = 2.
switch (x) {
case 1: x += 3;
case 2: x += 5;
case 3: x += 7;
default: x += 10;
}

after the switch statement, what is the value of x?

a. 2
b. 5
c. 7
d. 24

9. if y refers to an array of int values with seven elements, and all of those elements have been given a value of 5, which statement would change the last element of a 2?

a. y {7] = 2
b. y [6] = 2
c. y [2] = 6
d. y [2] = 7

10. consider the following declaration.

int [] two = {{1, 2, 3}, {4, 5}};

which arithmetic expression evaluates to a value of 8?

a. two[3] + two[2]
b. two[2] + two [1]
c. two[1] [3] + two[2] [2]
d. two[0] [2] + two[1] [1]

11. consider the following method.

public static void print (int a, int ) {
system. out. println ("the sum is" + (a+b));
}

if the print method is in the same class as the main method and there are no other methods named print, which of the following statements, called from the main method, will not cause a compiler error?

a. system. out. println (print (2, 3));
b. system. out. println (print (2 + 3));
c. print (2, 3);
d. print (2 + 3);

12. which of the following expressions correctly and most accurately calculates the area of a circle with radius r?

a. math. pow (r, 2) * math. pi
b. math. power (r, 2) * math. pi
c. math. pow (2, r) * math. pi
d. math. exp (r, 2) * math. pi

13. consider the following code.

public class amazing {
int x;
int y;
}

which of the following shows a statement that will create an instance of class amazing and assign its reference to a reference variable?

a. amazing a = new amazing;
b. amazing a = new amazing ();
c. amazing a = amazing ();
d. it is not possible to create an instance of class amazing. it does not have a constructor.

14. consider the following code.

public class employee () {
private string firstname;
private string lastname;
private int empid;
}
which of the following shows a constructor that, if added to class employee, would allow a caller to create an object and pass in values from the call that will be assigned to its instance variables?

a. public employee () {
firstname = “fred”;
lastname = “jones”;
empid = 101;
}

b. public employee (string a, string b, int c) {
firstname = a;
lastname = b;
empid = c;
}

c. public employee (“fred”, “jones”, 101) {
firstname = a;
lastname = b;
empid = c;
}

d. public employee (string a, string b, int c) {
firstname = “fred”;
lastname = “jones”;
empid = 101;
}

15. what is the output of the following code?

string name1 = “chris”;
string name2 = “christine”;
boolean b = name1 . startswith (name2);
boolean c = name1 . charat (4) == name2 . charat (7);
system. out. println (b + “, ” + c);

a. true, true
b. true, false
c. false, true
d. false, false

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 23.06.2019 17:30
When making changes to optimize part of a processor, it is often the case that speeding up one type of instruction comes at the cost of slowing down something else. for example, if we put in a complicated fast floating-point unit, that takes space, and something might have to be moved farther away from the middle to accommodate it, adding an extra cycle in delay to reach that unit. the basic amdahl's law equation does not take into account this trade-off. a. if the new fast floating-point unit speeds up floating-point operations by, on average, 2ă—, and floating-point operations take 20% of the original program's execution time, what is the overall speedup (ignoring the penalty to any other instructions)? b. now assume that speeding up the floating-point unit slowed down data cache accesses, resulting in a 1.5ă— slowdown (or 2/3 speedup). data cache accesses consume 10% of the execution time. what is the overall speedup now? c. after implementing the new floating-point operations, what percentage of execution time is spent on floating-point operations? what percentage is spent on data cache accesses?
Answers: 2
question
Computers and Technology, 24.06.2019 15:00
In excel, what happens to the cell contents when you click and drag a cell into multiple cells?
Answers: 1
question
Computers and Technology, 25.06.2019 01:00
Holly created a professional development plan to explore how she could advance from her entry-level position to the next step in her career. she has identified her current skills and the skills needed for the job she wants. what should she do now? a) ask a colleague for advice about work-life balance b) identify her areas for improvement c) plan a vacation before she begins her new job d) wait until a position opens before continuing her plan
Answers: 1
question
Computers and Technology, 25.06.2019 01:30
What was the advantage of using transistors instead of vacuum tubes in the second-generation computers? a. computers were drastically reduced in size. b. computers no longer produced errors. c. computers became affordable. d. computers could run on electricity.
Answers: 1
You know the right answer?
1. what is java se?

a. java standard edition
b. java software editor
c. jav...
Questions
question
Mathematics, 22.05.2020 05:58
question
Mathematics, 22.05.2020 05:58
question
Mathematics, 22.05.2020 05:58
question
Mathematics, 22.05.2020 05:58
question
Mathematics, 22.05.2020 05:58
question
Mathematics, 22.05.2020 05:58
question
Mathematics, 22.05.2020 05:58
question
Mathematics, 22.05.2020 05:58
question
Arts, 22.05.2020 05:58
Questions on the website: 13722367