Ask Question, Ask an Expert

+61-413 786 465

info@mywordsolution.com

Ask Computer Engineering Expert

1. Which is the correct syntax for a mutator method?

a. public int getWeight() { return this.weight; }
b. public boolean isDeclawed() { return this.declawed; }
c. public void getWeight() { return this.weight; }
d. public void setWeight(double weight) { this.weight = weight; }

2. Which statement shows the correct way to declare and initialize a named constant that represents absolute zero?
a. final int absoluteZero = -273.15;
b. final double absoluteZero = -273.15;
c. final int ABSOLUTE_ZERO = -273.15;
d. final double ABSOLUTE_ZERO = -273.15;

3. In the following class: public class Height { private double height; private String unitsOfMeasurement; //************************ public Height()
{ this.unitsOfMeasurement = "in"; }
public void setHeight(double height)
{ this.height = height; this.unitsOfMeasurement = "cm"; }
public void setHeight(double height, String unitsOfMeasurement) { this.height = height; this.unitsOfMeasurement = unitsOfMeasurement; }
public void print() { System.out.println(this.height + " " + this.unitsOfMeasurement); } } // end class Height

Which method is the constructor?
The print method
The Height method
The setHeight method
This class does not implement a constructor.

4. Java primitive types include _________.
integer, double, string, boolean, long and float
integer, double, float, array, boolean and long
long, integer, string, array, float, double and character
long, double, character, float, integer and boolean

5. What is the name for the circled items in the following statement?
What is the name for the circled items in the following statement?

modulus specifier
format specifier
flags specifier
precision specifier

6. Which Java operator is used for concatenation?
&&
+
.
||

7. Given the following code fragment (presume there is a class called Car implemented):
Car mazdaCar = new Car();
Car subaruCar = new Car();
mazdaCar.setYear(2008);
mazdaCar.setColor(black);
subaruCar = mazdaCar;
subaruCar.setYear(2011);
mazdaCar.printYear();

What will display on the screen for mazdaCars year when mazdaCar executes printYear()?
a. 2008
b. 2010
c. 2011
d. Black

9. Given the following method from a class: public double calculateArea(double length, double width) { double area; area = length * width; return area; }
What is the scope of the variables length and width?
a. Global to the class.
b. Local to the method.
c. Global to all objects created from the class.
d. None of the above.

10. In the following code fragment:
5 Person person1 = new Person();
6 Person person2 = new Person();
7 8 person1.setName("Bugs Bunny");
9 person2.setName("Daffy Duck");
10 System.out.println(person1.getName() + ", " + person2.getName()); 11 12 person1.swapPerson(person2); 13 System.out.println(person1.getName() + ", " + person2.getName());
What is being passed to the swapPerson method in line 12:
a. an object
b. an object reference
c. a class
d. a class reference

11. In the following Java code fragment:
int postion1 = 15;
int postion2 = 18;
int distanceApart = Math.abs(position1 - position2);
What type of method is the Math.abs() method?
a. Instance method
b. Class method
c. Final method
d. Inherited method

12. When a public method needs to access both class members (variables and methods) and instance members (variables and methods), the method must be a / an _________ method.
a. instance
b. helper
c. class
d. None of the above.

13. In the following class:
public class Height { private double height; private String unitsOfMeasurement;
public Height() { this.unitsOfMeasurement = "in"; }
public void setHeight(double height) { this.height = height; this.unitsOfMeasurement = "cm"; }
public void setHeight(double height, String unitsOfMeasurement) { this.height = height; this.unitsOfMeasurement = unitsOfMeasurement; }
public void print() { System.out.println(this.height + " " + this.unitsOfMeasurement); } } // end class Height Which method is overloaded?
a. The print method
b. The Height method
c. The setHeight method
c. None of the methods are overloaded.

14. What must a method return if the method implements method call chaining?
The calling object
A class variable
The class
Null

15.

Which code segment is representative of a properly formatted nested loop?
a. while(i<5) { }
b. while(j<3) { } do { while(j<3) { } }
c. while(i<5); do { while(j<3) { } }
d. while(i<5) while(i<5) { while(j<3) { }do; }

no answer matches

16. What is the fundamental difference between a do loop and a while loop?
a. Code inside a do loop will never be executed.
b. Code inside a while loop is guaranteed to execute at least once.
c. Code inside a do loop is guaranteed to execute at least once.
d. Do loops and while loops are the same.

17. What is the meaning of the java statement: import java.util.Scanner;?
a. It tells the java compiler to include the Scanner class from the utility package.
b. It tells the java compiler to exclude only the Scanner class from the compile process.
c. It signals the java compiler to scan the source code for errors.
d. None of the above.

18. Given the following code fragment: double interestRate = 0.05; double balance = 100.5; int interestInDollars = (int)(interestRate * balance); System.out.println(interestInDollars);

What value will display on the screen?
a. 5
b. 5.025
c. 5.03
d. 0

19. What is the significance of using the access modifier private with instance variables?
a. It makes instance variables easier to access from outside the object.
b. Using private provides data encapsulation.
c. It makes the variables inaccessible from within the object.
d. The private access modifier should never be used.

20. Given the following code fragment: System.out.println("\"Four score and seven years ago\"");
What will display on the screen?
a. Four score and seven years ago
b. Four score and seven years ago
c. \Four score and seven years ago\
d. "\"Four score and seven years ago\""

It will display:
"Four score and seven years ago"
Match your answer accordingly



21. Given the following, which is the correct file name and extension to use when saving the file?
public class SomeJavaClass { public static void main(String[] args) { System.out.print(Java is ?); }//end main }//end someJavaClass
a. someJavaClass.txt
b. SomeJavaClass.txt
c. someJavaClass.java
d. SomeJavaClass.java

22. In the context of OOP, objects __________.
a. do not encapsulate
b. data persist forever after being instantiated
c. contain only accessor methods
d. have state and behavior


23. Given the following code fragment. (presume there is a Hat class with a constructor that requires the hat type, price and color as arguments and there is a accessor method called getPrice that returns the price):
a. Hat hat1 = new Hat(baseball, 5.21, blue); int quantityToOrder = 0; double totalPrice = 0.0; Scanner userInput = new Scanner(System.in); System.out.print(How many hats to order?); quantityToOrder = Integer.parseInt(userInput.nextLine()); totalPrice = (hat1.getPrice() * quantityToOrder); System.out.println(Order Total = $ + totalPrice);
What will display on the screen when the user orders 4 hats?

a. Order Total = $20.84
b. Order Total = $20
c. Order Total = $5.21
d. Order Total = $5

24. In the following Java code fragment: public class SomeClass { private static int someVariable; }//end SomeClass
What is the significance of the keyword static?
It makes the variable someVariable an instance variable
b. It makes the variable someVariable a class variable
c. It makes the variable someVariable a local method variable
d. None of the above

25. Given the following code fragment: String name = "Joseph Cool"; System.out.println(name.charAt(5));
What will display on the screen?
a. h
b. p
c. 5
d. e

26. Instance methods ___________.
a. specify the object attributes (data)
b. can be used without creating an object
c. specify the object behaviors
d. must contain the static keyword in their definition

27. Given the following code fragment:
int operand1 = 4;
int operand2 = 3; double result = operand1 / operand2;
System.out.println(result);

What is displayed on the screen?
a. 0
b. 1.0
c. 1.3333333333333333
d. 1

28. Given the following code fragment:
boolean logicValueA = true;
boolean logicValueB = true;
System.out.println("Boolean Result: " + (logicValueA && logicValueB));
What will display on the screen?
a. Boolean Result: false
b. Boolean Result: true
c. Boolean Result: and
d. Boolean Result: or

29. A class specifically written to use other classes in its main method is called a _________.
a. driven class
b. static class
c. driver class
d. main class

30. Given the following code fragment:
boolean logicValueA = true;
boolean logicValueB = false;
System.out.println("Boolean Result: " + (!logicValueA || logicValueB));

What will display on the screen?
a.Boolean Result: false
b. Boolean Result: true
c. Boolean Result: and
d. Boolean Result: or

31. What is the term for the lower and upper case pattern that must be used for variable and method identifiers?
a. straight case
b. alternating case
c. camel case
d. None of the above.

32. Given the following code fragment:
int x = 5;
int y = 8;
int z = 0;
while(y < 20) { z = x + y; x = y; y = z; System.out.println(y); }
if(y > 22) { System.out.println(z); }
else if(y < 22) { System.out.println(x); }

What will display on the screen?
a. 13 21 13
b. 13 21 21
c.13 25 13
d.13 28 28

33. Which statement shows the correct way to define a method that does not provide a return value?
a. public void displayFraction(int numerator, int denominator) { }
b.public int displayFraction(int numerator, int denominator) { }
c.public Fraction displayFraction(int numerator, int denominator) { }
d.public null displayFraction(int numerator, int denominator) {

Computer Engineering, Engineering

  • Category:- Computer Engineering
  • Reference No.:- M91519034
  • Price:- $36

Priced at Now at $36, Verified Solution

Have any Question?


Related Questions in Computer Engineering

Question what is static and dynamic binding explain with

Question : What is static and dynamic binding? Explain with example how you can implement dynamic binding. The response must be typed, single spaced, must be in times new roman font (size 12) and must follow the APA form ...

Question future policy and legislative issuesthe

Question: Future Policy and Legislative Issues The cyberspace domain continues to grow significantly in terms of its size, influence, and complexity. This complexity requires some form of meaningful policy formulation. D ...

Question sql uses relational and logical operators in the

Question SQL uses relational and logical operators in the WHERE clause to restrict the rows returned in a query. What are these operators and what datatypes can they work with?

Recursive greatest common divisor the greatest common

(Recursive Greatest Common Divisor) The greatest common divisor of integers x and y is the largest integer that evenly divides both x and y. What is a recursive function gcd that returns the greatest common divisor of x ...

Suppose users share a 2 mbps link also suppose each user

Suppose users share a 2 Mbps link. Also suppose each user transmits continuously at 1 Mbps when transmitting, but each user transmits only 20 percent of the time. When a circuit switching is used, how many users can be s ...

1 what is the price of a semiannual 1000 par value bond

1) What is the price of a semiannual $1,000 par value bond with four years left until maturity that pays a coupon of 3.75% and is yielding 5.25%? What would it be yielding if the price decreased to $973.47? Assume semian ...

Whats the relationship between organizational performance

What's the relationship between organizational performance and financial management practices. These include capital structure decision, investment appraisal techniques, dividend policy, working capital management and fi ...

Assignmentsuppose you are an isp that owns a 19 address

Assignment Suppose you are an ISP that owns a /19 address CIDR block starting at 118.235.160.0/19. Answer the following questions to allocate address blocks to 10 customers who want to pay for the smallest CIDR blocks to ...

Several of the cameras in the lab can capture a greyscale

Several of the cameras in the lab can capture a greyscale image either as an 8 bit image, or as a 12 bit image. What would be the difference between them, and what would be the benefit of using one over the other? What w ...

A banks assets equal its liabilities under a both

A bank's assets equal its liabilities under a. both 100-percent-reserve banking and fractional-reserve banking. b. 100-percent-reserve banking but not under fractional-reserve banking. c. fractional-reserve banking but n ...

  • 4,153,160 Questions Asked
  • 13,132 Experts
  • 2,558,936 Questions Answered

Ask Experts for help!!

Looking for Assignment Help?

Start excelling in your Courses, Get help with Assignment

Write us your full requirement for evaluation and you will receive response within 20 minutes turnaround time.

Ask Now Help with Problems, Get a Best Answer

Why might a bank avoid the use of interest rate swaps even

Why might a bank avoid the use of interest rate swaps, even when the institution is exposed to significant interest rate

Describe the difference between zero coupon bonds and

Describe the difference between zero coupon bonds and coupon bonds. Under what conditions will a coupon bond sell at a p

Compute the present value of an annuity of 880 per year

Compute the present value of an annuity of $ 880 per year for 16 years, given a discount rate of 6 percent per annum. As

Compute the present value of an 1150 payment made in ten

Compute the present value of an $1,150 payment made in ten years when the discount rate is 12 percent. (Do not round int

Compute the present value of an annuity of 699 per year

Compute the present value of an annuity of $ 699 per year for 19 years, given a discount rate of 6 percent per annum. As