Google Search

Saturday, September 13, 2014

Sample Java Codes - Part 6

Code 34: Composition


Code a:


public class Test{
public static void main(String args[]){
Class3 Class3Object = new Class3(4,5,6);

}
}

Monday, August 25, 2014

Sample Java Codes - Part 5

Code 29: Time Class


Code a:


public class Test{
public static void main(String args[]){
Class2 Class2Object = new Class2();
System.out.println(Class2Object.toMilitary());
Class2Object.getTime(3, 59, 9);
System.out.println(Class2Object.toMilitary());

}
}

Wednesday, August 20, 2014

Sample Java Codes - Part 4

Code 13: Conditional Parameters


import java.util.Scanner;
public class Test{
public static void main(String args[]){
Scanner iage = new Scanner(System.in);
System.out.println("Hey ! Lets decide if you ae over or under a certain age");
int age = iage.nextInt();
System.out.println(age>50?"You ae over 50": "You ae under 50");
}
}

Friday, August 15, 2014

Test Planning Flow

Find below the flow diagram for Test Planning

Test Planning Flow

Defect management Flow

Defect management is essential part of Software Test Life Cycle (STLC), and it is essential to follow the Defect Management Flow. Here is the flow diagram for the same.

Defect Management Flow