What is the significance of using the access modifier

Assignment Help Basic Computer Science
Reference no: EM13858269

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) {

Reference no: EM13858269

Questions Cloud

Demonstrate the plan for testing : Use internal, external, and anchor links in the application or site. Demonstrate the plan for testing
Identify the implications for future competitiveness : Conduct a brief, well-argued analysis of the past 5 to 10 years of strategic innovation actions by your selected company - which explains the evolution of the company through the lenses of both traditional and blue ocean innovative strategy framew..
Calculate the value of an american put option : Q1.  Use DerivaGem to calculate the value of an American put option on a non-dividend-paying stock when the stock price is USD 30, the strike price is USD 32, the risk-free rate is 5%, the volatility is 30% and the time to maturity is 1.5 years. (..
Contrast available it security solutions to address : Analyze the security challenges arising from adding e-commerce to the website
What is the significance of using the access modifier : What is the significance of using the access modifier private with instance variables?
Explain the use of substances : What explanation can psychology give to explain the use of substances? Be sure to include the media influences that are represented in your poster (e.g., advertisements for the drug, or PSA clips against the drug) as well as information presented ..
Evaluate strategic approaches to innovation on performance : While the framework that Kim and Mauborgne (2004) outline may seem simple to understand, it is very difficult to implement. In part, it is very difficult for companies to do new things, or to do things in new ways, because inertia is real in all o..
Provide specific mitigation strategies : Provide specific mitigation strategies for any issues that could detract from the project
What treatments might be effective in treating it : What symptoms should her family/doctor look for that she has developed an eating disorder? If she develops this eating disorder, what treatments might be effective in treating it

Reviews

Write a Review

Basic Computer Science Questions & Answers

  Determine probability that selected cobalt gets more miles

Standard deviation 3.5 miles per gallon. Determine the probability that the randomly selected Cobalt gets more than 34 miles per gallon.

  Discuss how automated cybersecurity tools

1. Prevent, Detect, and Respond to Cyber Attacks Discuss how automated cybersecurity tools can support operations personnel as they attempt to prevent, detect, and respond to cyber-attacks against a company's networks and information systems.

  Write a fragment of code that accepts integers

write a condition to test if the point is outside the rectangle. Assume that x increases to the right and that y increases to the top. 2.Write a fragment of code that accepts integers from the user until a negative number is entered. The prompt sh..

  What values if any are stored in x y z

Suppose you are given the following variable declarations: int x, y; double z; char ch; Assume you have the following input statement

  Cryptography for standardized regulated and mandated

Whose interests are most significant when finding extent to which cryptography must be standardized, regulated, and mandated?

  Priority queue

Write a program that shows what happens when random values go first through an ordinary queue and then through a priority queue. The Queue interface specifies add and remove methods that add elements to and remove elements from a queue.

  The amount of sales as input and outputs the total amount

A sales person gets a base salary of $200. They also get 3% of any sales between $500 and $1000 and 5% of any sales over $1000. Write a driver program named Commission.java that takes in the amount of sales as input and outputs the total amo..

  The capital labor ratio

Suppose we are at steady state in the Solow Model. Suddenly we have a significant technological advance.

  Explain radio frequency transmission characteristics

Explain radio frequency transmission characteristics

  What basic pc maintenance tasks

What basic PC maintenance tasks or software do you consider to be important for your PC? Please list and describe three maintenance tasks or software and why they are important.Which Windows 7 task manager set of process data selections is the most e..

  Difficulties for the owner of the data model

Define in your ownwords what an update anomaly is all about. Deliver a situation where a update anomaly can happen and in what way it can effect difficulties for the owner of the data model.

  Preparing company-wide migration to windows 8

Crescent Manufacturing Inc. (CMI) is a luxury leader in crafted and customized home furnishings. The corporate headquarters and a production facility are located in Texas, with additional manufacturing facilities located in Nebraska and Maryland.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd