Java Programmin Programming and Technical Programming

WAP to display *****
*
*****
*
*****

Read Solution (Total 1)

Java Programmin Other Question

program to find noun verb using java
or
program to find subject object predicate using java????
what is the output of the following program..

class demo
{
public static void main( string arg[])
{
int i=10;
if(i==10)
{
System.out.print(i);
int i=20;
}
System.out.print(i);
}

}