import java.*;
import java.io.*;
import java.util.*;
class Default_value
{
public static void main(String arg[])
{
int n[] = new int [1];
String s1[] = new String [1];
boolean c1[] = new boolean [1];

for(int i=0;i<1;i++)
{
System.out.println("");
System.out.println("Default Value Integer : " + n[i]);
}

for(int i=0;i<1;i++)
{
System.out.println("Default Value Boolean : " + c1[i]);
}

for(int i=0;i<1;i++)
{
System.out.println("Default Value String: " + s1[i]);
System.out.println("");
System.out.println("");
}
}
}


Leave a Reply

Subscribe to Posts | Subscribe to Comments

All Notes on BCA

All Notes  on BCA
BCA all subjects notes

Total Pageviews

Translate

Powered by Blogger.

Copyright © All Notes on BCA