What is the output of the following program explain

Assignment Help JAVA Programming
Reference no: EM13810422

1. Indicate whether each of the following statements is true or false:

Local variables always retain their values from one call of a method to the next.
There is only one copy of each class variable that is shared by all instances of the class.
The reserved word this can be used in class methods.
Private instance variables can accessed in any instance method in the same class.
Public methods can be can be accessed by any method in the same program.

2. What is the output of the following program? Explain.
public class Test
{
public static void main(String[] args)
{
int i = 1;
StringBuilder s = new StringBuilder("s");
String t = "t";

someMethod(i, s, t);
System.out.println("i = " + i);
System.out.println("s = " + s);
System.out.println("t = " + t);
}
private static void someMethod(int i, StringBuilder s,
String t)
{
i++;
s.append("s");
t += "t";
}
}

3. Is the following class immutable? Explain
class Class1
{
private int[] array = new int[10];

public int[] getArray()
{
return array;
}
}

4. Will the following class compile?
class Class2
{
private void method()
{
}

public static void main(String[] args)
{
method();
}
}
If not, explain why and correct it so it will compile.

5. Explain the meaning of the reserved word this and why it is necessary in the class below. Will the class compile without using this?
class Class3
{
private int x;

public Class3(int x)
{
this.x = x;
}
}

Reference no: EM13810422

Questions Cloud

Before tax required rate of return on debt : The Blue Bird Company plans a $79 million expansion. The expansion is to be financed by selling $50 million in new debt and $29 million in new common stock. The before tax required rate of return on debt is 5% and the required rate of return on equit..
Differences between bias crimes and bias-motivated incident : Explain the differences between bias crimes and bias-motivated incident
Provide all specific details regarding packet information : Describe the need of encapsulation. Elaborately describe the process of encapsulation and creation of packets as a result of encapsulation. Analyze and provide all specific details regarding packet information, like headers or trailers
Increase the number of customers : Assuming Jenn Electric operates in the Tampa Bay area, how would you improve Jenn Electric, specifically, to increase the number of customers, company profit, and customer satisfaction? Your answer must detail, at a minimum, (please answer by ques..
What is the output of the following program explain : What is the output of the following program? Explain. Explain the meaning of the reserved word this and why it is necessary in the class below. Will the class compile without using this
What weapons are prohibited now? : What weapons are prohibited now
What will the holder receive when the bond matures : What will the holder receive when the bond matures? If the current rate of interest on a comparable debt is 8 percent, what should be the price of this bond? Would you expect the firm to call this bond Why?
Example of a performance measure : What does the phrase you get what you measure refer to? Give an example of a performance measure you’ve come across in your experience (work, school, or home) and comment on the strengths and weaknesses of that measure.
Discuss the issue of american military forces : Discuss the issue of how American military forces should be employed in conflict abroad

Reviews

Write a Review

JAVA Programming Questions & Answers

  Recursive factorial program

Write a class Array that encapsulates an array and provides bounds-checked access. Create a recursive factorial program that prompts the user for an integer N and writes out a series of equations representing the calculation of N!.

  Hunt the wumpus game

Reprot on Hunt the Wumpus Game has Source Code listing, screen captures and UML design here and also, may include Javadoc source here.

  Create a gui interface

Create GUI Interface in java programing with these function: Sort by last name and print all employees info, Sort by job title and print all employees info, Sort by weekly salary and print all employees info, search by job title and print that emp..

  Plot pois on a graph

Write a JAVA program that would get the locations of all the POIs from the file and plot them on a map.

  Write a university grading system in java

University grading system maintains number of tables to store, retrieve and manipulate student marks. Write a JAVA program that would simulate a number of cars.

  Wolves and sheep: design a game

This project is designed a game in java. you choose whether you'd like to write a wolf or a sheep agent. Then, you are assigned to either a "sheep" or a "wolf" team.

  Build a graphical user interface for displaying the image

Build a graphical user interface for displaying the image groups (= cluster) in JMJRST. Design and implement using a Swing interface.

  Determine the day of the week for new year''s day

This assignment contains a java project. Project evaluates the day of the week for New Year's Day.

  Write a java windowed application

Write a Java windowed application to do online quiz on general knowledge and the application also displays the quiz result.

  Input pairs of natural numbers

Java program to input pairs of natural numbers.

  Create classes implement java interface

Interface that contains a generic type. Create two classes that implement this interface.

  Java class, array, link list , generic class

These 14 questions covers java class, Array, link list , generic class.

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