Was the code does syntactically right

Assignment Help JAVA Programming
Reference no: EM13942282

Access the array 4 Java program. Code, compile, and run the program. There are four lines of code marked (1)..(4) that you must explain after analyzing the code, running the program, and examining the output. Post to the Answer Forum an explaination of each of the lines of code (1..4),import java.io.*;

public class array4 //class code block
{
public static final double value1 = 25.5; //class variable

public static void main(String args[]) throws IOException //method code block of class

{

int x,y;
int max = 20;
double a,b;
int[] ints1 = new int[max]; //creates array of integers (1)

System.out.println(ints1[0]); //array elements initialized to zero
x = 25;
y = 15;
ints1[0]= x++ + y++; // (2)
System.out.println(x);
System.out.println(y);
System.out.println(ints1[0]); //value is 40 and is precedence dependent

for(int i=0;i<ints1.length;++i) // (3)
{
ints1[i]=i+2; // (4)
System.out.println(ints1[i]);
}
System.out.println(ints1[4]+value1);

}
}

that is, what the code does syntactically and what it does in the program.

Reference no: EM13942282

Questions Cloud

Why are users willing to help create certain products even : Why are users willing to help create certain products even though few, if any, users are paid for their efforts? How does this make sense from an economic standpoint? How do you think these users identify opportunity cost?
Establish new work environment to meet organizational need : One has to communicate with and consult with the work team to manage the transition and establish a new work environment to meet an organizational need.
Excellent opportunity to apply the concepts : This week you have an excellent opportunity to apply the concepts and frameworks described in this module to a real-world situation. First, identify an organization that you know well. For example, it could be your place of work, your church, or a..
What considerations are made when calculating tvm : How do you explain the use of time value of money (TVM) in business? What considerations are made when calculating TVM? How may you use TVM to create your own, or someone else's, retirement plan
Was the code does syntactically right : Access the array 4 Java program. Code, compile, and run the program. There are four lines of code marked (1)..(4) that you must explain after analyzing the code, running the program, and examining the output.
Consumer health informatics : Consumer Health Informatics (CHI) is the field that helps to connect the gap between patients and health resources. Its focus is to provide patients with the most complete health information possible.
Write essay in which compare a short story to film version : Write an essay in which you compare a short story to the film version or to another form of visual media. You may select any short story of your choice; however, you must write the essay in the format of a comparison / contrast essay.
Best exemplifies a free trade agreement : Which of the following best exemplifies a free trade agreement?
The phrase ''tax rate'' is at least three ways ambiguous : If sea levels rise dramatically then some low islands are at danger of disappearing.  The Maldives are coral islands in the Indian Ocean none of which are more than six feet above sea level.  Islands whose highest points are less than three meters ab..

Reviews

Write a Review

JAVA Programming Questions & Answers

  To translate infix mathematical expression

Write a program in java to translate infix mathematical expression into postfix expression and a program to evaluate the postfix expression

  Add a draw() method to horse class.

Add a draw() method to your Horse class. You will also need to create a couple of Horses in your DrawPanel class, and call the draw() method for each Horse from the paintComponent() method. There is no need to modify the DrawPanelDriver class.

  Each instance of this class will represent one book a book

each instance of this class will represent one book. a book consists of the title of the book a string and the authors.

  Create four classes

Create four classes: Account.java, Checking.java, Savings.java, and AccountArray.java.

  Complete bst implementation

Complete BST implementation: - Write methods for ImOrder, PreOrder and PostOrder Traversals - Write min() method - Write Successor () method - Extra Credit Implement Binary Heapusmg An&Y Node implementation

  Develop the myclone class

You will also create another class of your choice. Your programmer-defined class should have at a minimum two instance variables and one method - You will create a Virtual World application as your final project. This Virtual World will have sever..

  Create a class named box that includes integer data fields

Create a class named Box that includes integer data fields for length, width and height. Create three constructors that require one, two and three arguments, respectively.

  Multiplexors whose control bit allows you

Design a 4-bit up/down counter that has 2 to 1 multiplexors whose control bit allows you to select between one of two counting modes up or down

  Design and implement a java version of the game memory

Design and implement a Java version of the game Memory

  How many data items are within one standard deviation

How many data items are within One Standard Deviation - Generate a list of 100 values between 0 and 100 using the generator (int)(Math.random()*101).

  Integer expression evaluator

You must implement a bounded generic Stack class. Represent your Stack using an array to hold the stack content - Integer Expression Evaluator

  Write a method called printlevel

Write a method called printLevel that takes an integer n as a parameter and that prints the values at level n from left to right. The values should be printed one per line.

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