Java Programming
Java Programming
com
public static void main(String str[]) { int i,j,n; n= Integer.parseInt(str[1]); //convert string to integer if(str[0].length() != 1 ) //check length of first argument System.out.println("Operation failed !! "); else { //First solution
for(i=0;i<n;i++) // Loop for no of line { for(j=n;j>i;j--) //for displaying space System.out.print(' ');
BHAVIN MODI
BHAVIN MODI
2. Write a Java application which takes several command line arguments, which are supposed to be names of students and prints output as given below: (Suppose we enter 3 names then output should be as follows): Number of arguments = 3 1: First Student Name is =Tom 2: Second Student Name is =Dick 3: Third Student Name is =Harry
int a; a=arg.length; String str[]={"First","Second","Third","four","five","six","seven","eight","nine" ,"ten"}; for(int i=0;i<a;i++) { System.out.println(str[i]+" Student Name is =" +arg[i]); }
} }
3. Write a class, with main method, which declares loating point variables and observe the output of dividing the floating point values by a 0, also observe the effect of assigning a high integer value (8 digits and above) to a float and casting it back to int and printing.
BHAVIN MODI
class prog4 { public static void main(String arg[]) { double a=123456789123.4; double b; b=a/0; int c; c=(int)a; System.out.println(a+" "+c +" " +b);
4. Write a class called Statistics, which has a static method called average, which takes a one dimensional array for double type, as parameter, and prints the average for the values in the array. Now write a class with the main method, which creates a two-dimensional array for the four weeks of a month, containing minimum temperatures for the days of the week(an array of 4 by 7), and uses the average method of the Statistics class to compute and print the average temperatures for the four weeks.
class state { public static void avg(double d[]) { double tot=0; for(int i=0;i<d.length;i++) { tot=tot+d[i]; } System.out.println("Temrature ="+ tot/d.length); } } public class p5 { public static void main(String args[]) { int i,j; double d[][]=new double[4][7]; double a[]=new double[7]; for(i=0;i<4;i++) { for(j=0;j<7;j++) { a[j]=i;
BHAVIN MODI
5. Define a class called Product, each product has a name, a product code and manufacturer name. Define variables, methods and constructors, for the Product class. Write a class called Test Product, with the main method to test the methods and constructors of the Product class.
import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.IOException; class Product { int Pid; String Pname,Mname; BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); public Product() { this.Pid = 0; this.Pname = null; this.Mname = null; } public Product(int i,String s1,String s2) { this.Pid = i; this.Pname = s1; this.Mname = s2; } public void getDetail() throws IOException { String t; System.out.printf("Enter Product ID: "); t = br.readLine();
BHAVIN MODI
6. Define a class called Cartesian Point, which has two instance variables, x and y. Provide the methods get X() and get Y() to return the values of the x and y values respectively, a method called move() which would take two integers as parameters and change the values of x and y respectively, a method called display() which would display the current values of x and y. Now overload the method move() to work with single parameter, which would set both x and y to the
BHAVIN MODI
BHAVIN MODI
7. Define a class called Triangle, which has constructor with three parameters, which are of type Cartesian Point, defined in the exercise 7. Provide methods to find the area and the perimeter of the Triangle, a method display() to display the three Cartesian Points separated by ':' character, a method move() to move the first
BHAVIN MODI
BHAVIN MODI
BHAVIN MODI
BHAVIN MODI
BHAVIN MODI
package MyPack; public class CP { public float x,y; public CP(float x,float y) { this.x=x; this.y=y; } public CP(float a) { x=y=a; } public float getx() { return x; } public float gety() { return y; } public void move(float x,float y)
package MyPack; import MyPack.CP; import java.lang.Math; import java.util.Scanner; import java.lang.Double; public class Rectangle{ public CP a,b,c,d; public Rectangle(CP a,CP b,CP c,CP d){ this.a=a; this.b=b; this.c=c; this.d=d; System.out.println("Rectangle is Created..."); } public void Area(){ float Area; Area = ((a.x*(b.y - c.y)) + (b.x*(c.y-a.y)) + ((c.x*(a.y-b.y)))); System.out.println("The area of Triangle is "+Math.abs(Area)); } public void Display(){ System.out.println("\t\tA("+a.x+","+a.y+") # \t\t\t # B("+b.x+","+b.y+")\n\n\n\n"); System.out.println("\t\tD("+d.x+","+d.y+") # \t\t\t # C("+c.x+","+c.y+")"); }
BHAVIN MODI
package MyPack; import MyPack.CP; import java.lang.Math; import java.util.Scanner; import java.lang.Double;
BHAVIN MODI
public class Triangle{ public CP a,b,c; public Triangle(CP a,CP b,CP c){ this.a=a; this.b=b; this.c=c; System.out.println("Triangle is created.."); } public void Area(){ float Area; Area = ((a.x*(b.y - c.y)) + (b.x*(c.y-a.y)) + ((c.x*(a.y-b.y))))/2; System.out.println("The area of Triangle is "+Math.abs(Area)); } public void Display(){ System.out.println("\t\t\t\t # A("+a.x+","+a.y+")\n\n\n\n");
8. Override the to String, equals and the hash Code methods of the classes Triangle and Rectangle defined in exercises 7 and 8 above, in appropriate manner, and also redefine the display methods to use the to String method.
BHAVIN MODI
class Cartesianpoint { int x,y; Cartesianpoint(int x,int y) { this.x=x; this.y=y; }
BHAVIN MODI
} }
BHAVIN MODI
9. Define a class called Polygon Manager, which manages a number of Polygon instances. Provide methods to add, remove and list the Polygon instances managed by it. Test the methods of Polygon Manager by writing appropriate class with main method.
BHAVIN MODI
BHAVIN MODI
BHAVIN MODI
BHAVIN MODI
BHAVIN MODI
BHAVIN MODI
BHAVIN MODI
BHAVIN MODI
BHAVIN MODI
10. Define a class called Statistical Data which manages a number of readings of type int. Provide a method to set Data available in the form of an array, a method add to individually add data of type int, a method to reset the entire data, and methods to return the following statistics: 1. mean 2. median 3. mode 4. variance 5. standard deviation 6. specified percentile (between 0 100) the method should have a parameter. 7. specified quartile (between 1 - 3) the method should have a parameter. 8. interquartile range
import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.IOException;
BHAVIN MODI
BHAVIN MODI
BHAVIN MODI
BHAVIN MODI
public double Percentile(int p) { if(p==0) return 0.0; double P,n; int temp[]=new int[N]; int i,j,x; for(i=0;i<N;i++) { temp[i]=v[i];
BHAVIN MODI
BHAVIN MODI
BHAVIN MODI
import java.util.*; import java.io.*; class StatisticalData { BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); int marks[]; int n; StatisticalData(){
BHAVIN MODI
11. Update the class Statistical Data, and define a method called load From CSV, which takes as parameter an Input Stream, where numeric data is available in an ASCII format, in a comma separated form. Overload this method to take a File instance as parameter. Test the new methods using appropriate data.
BHAVIN MODI
BHAVIN MODI
BHAVIN MODI
BHAVIN MODI
BHAVIN MODI
BHAVIN MODI
BHAVIN MODI
BHAVIN MODI
BHAVIN MODI
BHAVIN MODI
BHAVIN MODI
12. Create a class called Statistical Data, which has capability of maintaining data regarding multiple variables. It should have a method to specify the variable names as String array and the method to load values from a file regarding the variables. eg. We consider two variables as percentage of marks in GCET exam and percentage of marks in 1st year of MCA, Provide methods in the class to compute the correlation coefficient between any two variables, specified in the parameter. Test the class by computing the correlation coefficient between the marks of GCET and marks of 1st year MCA for students of your class.
BHAVIN MODI
Digitally signed by BHAVIN Reason: I am the author of this document Location: Date: 09/01/12 07:22:56
BHAVIN MODI