prashantK Singh

Greenhorn
+ Follow
since Sep 11, 2006
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by prashantK Singh

Thanks Barry
Thanks Matt
hi,
kindly tell me about "forward referencing"

thanks
hi,

class s
{
public static void main(String[] a){
static int i;
System.out.println(i);
}
}

why this is showing illegal start of expression
Thanks Burkhard for the explanation
thanks for quick reply
my problem is not about assert
i thinks i am not able to get "return" statement with switch
class Test {
String f(int i){
switch(i){
case 0:return "A";
}
}
public static void main(String[] s){
Test t = new Test();
for(int i=0;i<2;i++){
System.out.println(t.f(i));
}
}
}
this too is showing missing return statement
hi all
what is the problem with return in the code below
class Test {
String f(int i){
switch(i){
case 0:return "A";
case 1:return "b";
case 2:return "c";
default:
assert false;
}
}
public static void main(String[] s){
Test t = new Test();
for(int i=0;i<4;i++){
System.out.println(t.f(i));
}
}
}
hi all
kindly tell me how daemon threads are created and destroyed
hi all
kidly someone explain me that what is the difference between
append () and insert()
hi all
my few friends are working with.NET technology
and while communicating with them i loose my confidence
would somebody advice me the strength of java/j2ee over .net
17 years ago
hi all

will some body explain me that
.net is plat form indepedent or not
and if it is platform indepedent then how it works
17 years ago
hello
it is showing the output as 10
and not 1010