Computers and Technology
Computers and Technology, 26.02.2021 02:20, joej0778

1. Examine the following code. (1 point) Object obj = new Integer (5); Which of the following statements is true? The declared type of obj is Object. The actual type is also Object. The declared type of obj is Integer. The actual type is Object. The declared type of obj is Object. The actual type is Integer. The declared type of obj is Integer. The actual type is also Integer. 2. Examine the following code. (1 point) class D {} class C extends D {} class B extends D {} class A extends B {} Which of the following statements will compile without error? OA a = new B(); OB b = new DO); OCC = new AO; OD d = new A);

Examine the following code.
(1 point) class One { public void print() { System. out. println("One"); } class Two extends One { public void print() { System. out. println("Two"); } class Three extends Two { public void print() { System. out. println("Three"); } Which of the following code fragments will compile without error and display something other than the word, "Three"? One w = new Three(); w. print(); Three x = new One(); x. print(); One y = new Two(); y. print(); Two z = new Three(); z. print();

(1 point) Suppose that class Alpha is the parent of Beta and Beta is the parent of Charlie. Method calculate() is defined in Beta and is inherited and overridden by Charlie. Which of the following code fragments shows a valid method call? Alpha k = new Beta(); k. calculate(); Alpha k = new Charlie(); k. calculate(); Beta k = new Charlie(); k. calculate();
Charlie k = new Object(); k. calculate(); 5. What is the output of the following program?

(1 point) public class Circle { private double radius; public Circle( double radius) { this. radius = radius; public static void main(String[] args) { Circle x = new Circle(5); Circle y = new Circle(5); Circle z = x; System. out. println(x. equals(y) + ", " + (x == z)); true, true true, false false, true false, false

6. Consider the following code. (1 point) ArrayList names = new ArrayList(); names. add("Alexa"); names. add("Bill"); names. add("Christine"); Which of the following statements will display, "Alexa"? System. out. println(names. get()); System. out. println(names. retrieve()); System. out. println(names. get(1)); System. out. println(names. retrieve (1));
Which of the following statements will display, “Alexa"? System. out. println(names. get(0); System. out. println(names. retrieve (0)); System. out. println(names. get(1)); System. out. println(names. retrieve(1));

7. Which field or method of the ArrayList class will return the number of elements stored in the ArrayList? (1 point) length length() size() capacity (1 point)

8. Which of the following sequences shows Java access modifiers in correct order from most restrictive to least restrictive? private, default, protected, public private, protected, default, public public, default, protected, private public, protected, default, private

9. Which of the following statements is true about the protected modifier? (1 point) A protected member can only be accessed by code in other classes in the same package. Not only can a protected member be accessed by code in other classes in the same package, it can also be inherited by a subclass, even if the subclass is in a different package. The public and protected modifiers are nearly identical except that protected level access can be turned on or off at runtime. The protected modifier should be used nearly all the time, even in combination with private and public, especially when sensitive data is involved.

10. Which of the following statements is true? (1 point) It is possible to create instances of a class marked final. It is possible to extend a class marked final. It is possible to override a method marked final. It is possible to override a method inherited from a class that is marked final. Finish Cancel
will give more point if you help

answer
Answers: 2

Other questions on the subject: Computers and Technology

image
Computers and Technology, 21.06.2019 22:40, bartekpiglo
Write an assembly program with the following specifications. a). in the main block, you should have two registers r4 and r5. they should be checked in an infinite loop. if r4 is greater than r5, then the greater subroutine will be called. if r4 is less than r5, then the less subroutine will be called. if r4 equals r5, then no operations will be done
Answers: 1
image
Computers and Technology, 22.06.2019 19:30, keke6361
When using a public computer or network, you should always
Answers: 2
image
Computers and Technology, 22.06.2019 20:30, fickllyd000
In this lab, you complete a prewritten c program that calculates an employee’s productivity bonus and prints the employee’s name and bonus. bonuses are calculated based on an employee’s productivity score as shown below. a productivity score is calculated by first dividing an employee’s transactions dollar value by the number of transactions and then dividing the result by the number of shifts worked.
Answers: 3
image
Computers and Technology, 23.06.2019 08:00, leleee10
Which argument is not a valid filter? does not equal this quarter filter by cell color all of these are valid filter arguments.
Answers: 2
Do you know the correct answer?
1. Examine the following code. (1 point) Object obj = new Integer (5); Which of the following statem...

Questions in other subjects:

Konu
Mathematics, 27.01.2021 01:00
Konu
History, 27.01.2021 01:00
Konu
Spanish, 27.01.2021 01:00
Konu
Mathematics, 27.01.2021 01:00
Konu
Chemistry, 27.01.2021 01:00
Konu
Social Studies, 27.01.2021 01:00