10/29/2010

Tugasan 3 BCS2234 OOP

Tugasan BCS2234 boleh di muat turun daripada pautan berikut.
Tarikh hantar 11/11/2010 (Khamis).

10/26/2010

Exception 27 /10 /2010

Write a program that creates an input dialog box to perform integer divisions, as shown in following figure. The user enters two numbers in the text fields, Number 1 and Number 2. The division of Number 1 and Number 2 is displayed in the Result field (Figure 1).


[FIGURE 1]



Add an exception to handle invalid input as shown in Figure 2.



[FIGURE 2]







10/19/2010

BCS2234 20/10/ 2010 Lab Activities on Inheritance

Design a class named Cube that extends GeometricObject. The class contains:

  • One double data field named length with default values 1.0 to denote all sides of the cube.

  • A no-arg constructor that creates a default cube.

  • A constructor that creates a cube with the specified length.
  • The accessor methods for all three data fields.
  • A method named getArea() that returns the area/volume of this cube.
area of cube =length*length*length

  • A method named getPerimeter() that returns the perimeter of this cube.
perimeter of cube = 12 * length
  • A method named toString() that returns a string description for the cube.

  • The toString() method is implemented as follows:

return "cube: length = " + length;



Draw the UML diagram that involves the classes Cube and GeometricObject. Implement the class. Write a test program that creates a Cube object with side 5, sets color yellow and filled true, and displays the area, perimeter, color, and whether filled or not.


BCS2234 Inheritance (2)


Pada Slide No 4 Chapter9 pelajar telah di beri contoh cara mengistharkan Superclasses dan subclasses. 4 class telah di istiharkan iaitu GeometricObject, Circle, Rectangle dan TestCircleRectangle (sila rujuk gambar di sebelah). Contoh tersebut menggunakan package (iaitu setiap satu class di di tulis dalam fail berasingan. Jika pelajar ingin mengumpulkan semua kelas dalam satu fail - Langkah yang perlu di buat ialah dengan membuang perkataan public pada setiap class yang dibina. Sila lihat contoh dibawah:-


/**
* @(#)Perwarisan.java
*
* Perwarisan application
*
* @author
* @version 1.00 2010/10/20
*/

public class Perwarisan {

public static void main(String[] args) {

// TODO, add your application code
System.out.println("Hello World!");
Circle circle = new Circle(1);
System.out.println("A circle " + circle.toString());
System.out.println(circle.getRadius());
System.out.println("The radius is " + circle.getRadius());
System.out.println("The area is " + circle.getArea());
System.out.println("The diameter is " + circle.getDiameter());

}
}


class GeometricObject { // perkataan public telah di buang
private String color = "white";
private boolean filled;
private java.util.Date dateCreated;

/** Construct a default geometric object */
public GeometricObject() {
dateCreated = new java.util.Date();
}

/** Return color */
public String getColor() {
return color;
}

/** Set a new color */
public void setColor(String color) {
this.color = color;
}

/** Return filled. Since filled is boolean,
so, the get method name is isFilled */
public boolean isFilled() {
return filled;
}

/** Set a new filled */
public void setFilled(boolean filled) {
this.filled = filled;
}

/** Get dateCreated */
public java.util.Date getDateCreated() {
return dateCreated;
}

/** Return a string representation of this object */
public String toString() {
return "created on " + dateCreated + "\ncolor: " + color +
" and filled: " + filled;
}
}

class Circle extends GeometricObject { // perkataan public telah di buang
private double radius;

public Circle() {
}

public Circle(double radius) {
this.radius = radius;
}

/** Return radius */
public double getRadius() {
return radius;
}

/** Set a new radius */
public void setRadius(double radius) {
this.radius = radius;
}

/** Return area */
public double getArea() {
return radius * radius * Math.PI;
}

/** Return diameter */
public double getDiameter() {
return 2 * radius;
}

/** Return perimeter */
public double getPerimeter() {
return 2 * radius * Math.PI;
}

/** Print the circle info */
public void printCircle() {
System.out.println("The circle is created " + getDateCreated() +
" and the radius is " + radius);
}
}

10/13/2010

BCS2234 13/10/ 2010 Inheritance

Programming Exercises

Sections 9.2–9.4

9.1 (The Triangle class) Design a class named Triangle that extends GeometricObject. The class contains:
  • Three double data fields named side1, side2, and side3 with default values 1.0 to denote three sides of the triangle.

  • A no-arg constructor that creates a default triangle.

  • A constructor that creates a rectangle with the specified side1, side2, and side3.

  • The accessor methods for all three data fields.

  • A method named getArea() that returns the area of this triangle.

  • A method named getPerimeter() that returns the perimeter of this triangle.

  • A method named toString() that returns a string description for the triangle.

For the formula to compute the area of a triangle, see Exercise 5.19. The toString() method is implemented as follows:

return "Triangle: side1 = " + side1 + " side2 = " + side2 +   " side3 = " + side3; 

Draw the UML diagram that involves the classes Triangle and GeometricObject. Implement the class. Write a test program that creates a Triangle object with sides 1, 1.5, 1, sets color yellow and filled true, and displays the area, perimeter, color, and whether filled or not.


Running a Java Program from Command Prompt

  • Create a temporary folder C:\mywork. Using Notepad or another text editor, create a small Java file HelloWorld.java with the following text:
    public class HelloWorld {   public static void main(String[] args)   {     System.out.println("Hello, World!");   } }

    Save your file as HelloWorld.java in C:\mywork. To make sure your file name is HeloWorld.java, (not HelloWorld.java.txt), first choose "Save as file type:" All files, then type in the file name HelloWorld.java.

  • Run Command Prompt (found under All Programs/Accessories in the Start menu). Type
    C:\> cd \mywork
    This makes C:\mywork the current directory.
    C:\mywork> dir
    This displays the directory contents. You should see HelloWorld.java among the files.
    C:\mywork> set path=%path%;C:\Program Files\Java\jdk1.6.0_21\bin
    This tells the system where to find JDK programs.
    C:\mywork> javac HelloWorld.java
    This runs javac.exe, the compiler. You should see nothing but the next system prompt...
    C:\mywork> dir
    javac has created the HelloWorld.class file. You should see HelloWorld.java and HelloWorld.class among the files.
    C:\mywork> java HelloWorld
    This runs the Java interpreter. You should see the program output:
    Hello, World!

    If the system cannot find javac, check the set path command. If javac runs but you get errors, check your Java text. If the program compiles but you get an exception, check the spelling and capitalization in the file name and the class name and the java HelloWorld command. Java is case-sensitive!

10/12/2010

Vbuster

Setiap komputer memerlukan perisian "antivirus" bagi membolehkan ianya beroperasi dengan baik dan menghalang kehilangan data.












Antivirus

Antara perisian "antivirus" yang terkenal dewasa ini adalah Kaspersky, Avira , Avast serta lain-lain lagi.

VBuster

Pada tahun 1991 terdapat satu "antivirus" jenama malaysia yang bernama VBuster. Perisian tersebut di hasilkan oleh Dr. Looi Hoong Thoong yang berasal dari pulau pinang. Beliau
bukan berlatarbelakangkan (pendidikan) komputer sebaliknya Pemegang Ijazah Sarjana Muda Arkitektur. Namun minat yang mendalam terhadap bidang komputer dan perisian membolehkan beliau menghasilkan perisian tersebut. Saya sempat menggunakan VBuster ketika berada di UTM sekitar tahun 1993. VBuster tidak memerlukan sebarang installation,saiznya kurang dari 1 MB. Ianya masih di jual sehingga kini dan dikatakan boleh mengesan sehingga 750,000 virus. Kosmo telah membuat temubual istimewa dan artikel bertarikh 12/10/2010 tersebut boleh di baca dari pautan berikut. Laman web rasmi Vbuster boleh di dapati daripada pautan berikut. Anda boleh muat turun secara percuma perisian (demo) tersebut.

BCS2234 13/10/ 2010 String Class


Section 8 The String Class
8.1
Suppose that s1, s2, s3, and s4 are four strings, given as follows:
String s1 = "Welcome to Java";
String s2 = s1;
String s3 = new String("Welcome to Java");
String s4 = s3.intern();
What are the results of the following expressions?
(1)A s1 == s2
(2) s1 == s3
(3)A s1.equals(s2)
(4) s2.equals(s3)
(5) s1.compareTo(s2) (15) s1.substring(5, 11)
(6) s2.compareTo(s3) (16) s1.startsWith("Wel")
(7) s1 == s4 (17) s1.endsWith("Java")
(8) s1.charAt(0) (18) s1.toLowerCase()
(9)A s1.indexOf('j') (19) s1.toUpperCase()
(10) s1.indexOf("to") (20) " Welcome ".trim()
(11) s1.lastIndexOf('a') (21) A s1.replace('o', 'T')
(12) s1.lastIndexOf("o", 15) (22) s1.replaceAll("o", "T")
(13) s1.length() (23) s1.replaceFirst("o", "T")
(14)A s1.substring(5) (24) s1.toCharArray()
8.4
(Occurrences of a specified character) Write a method that finds the number of occurrences of a specified character in the string using the following header:
public static int count(String str, char a)
For example, count("Welcome", 'e') returns 2.
8.6
(Counting the letters in a string) Write a method that counts the number of letters in the string using the following header:
public static int countLetters(String s)
Write a main method to invoke countLetters("Java in 2008") and display its return value.
8.8
(Binary to decimal) Write a method that parses a binary number as a string into a decimal integer. The method header is as follows:
public static int parseBinary(String binaryString)
For example, binaryString 10001 is 17 (1 x 24 + 0 x 23 + 0 x 22 + 0 x 2 + 1 = 17) So, parseBinary("10001") returns 17. Use binary string 11111111 to test the method. Note that Integer.parseInt("10001", 2) parses a binary string to a decimal value. Do not use this method in this exercise.
Solutions
8.1 (1) True
8.1 (3) True
8.1 (9) -1
8.1 (14) me to Java
8.1 (21) WelcTme tT Java
Solutions for 8.4 is provided by shah. Click on comments section.
8.6

Cara download Installer windows 10 dalam format ISO

1. Jika anda bercadang untuk download windows 10 melalui website rasmi windows - pilihan untuk download dalam format ISO tidak di berikan.  ...