Skip to main content

Posts

Showing posts with the label validation

Featured Post

Data Mining with Weka -Installation

Weka - Data mining Tool W eka is a tool for big data and data mining. It is used to various classification, experiments, and analysis over large data sets. Installation Guide -weka  You can download Weka from   here   and follow the normal installation procedure. After completion you will get following window, here you can begin your classification or experiment on different data sets with Weka.

Java Tutorials- While Loops

4. While Loops public class App { public static void main(String[] args) { int process =0;                                               //process starts at 0 while(process<=10){                    //process validation (whlie statement) System.out.println("ID: "+ value);  //Output process as ID process= process+1;                     // process increase by 1 } } } Output: ID: 0  ID: 1  ID: 2  ID: 3  ID: 4  ID: 5  ID: 6  ID: 7  ID: 8 ID: 9  ID: 10