Mamta Sharma

Greenhorn
+ Follow
since Jun 03, 2008
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 Mamta Sharma

They are saying that I can reschedule online only.
Hi there,
I went for exam today(Aug 9) at one of prometric location & they said they are not able to conduct the test & I need to reschedule the exam.
They also said that it should be on weekdays only not on weekends(Saturday)
Is anyone has encountered such problem before?
Inspite that when i triying to reschedule it, its not working.

Can anyone suggest how to reschedule??

Please reply

Mamta Sharma
Hi Razec,

Thanks a lot.I got it.

Mamta
Hi There,
Can anybody provide me the link for sun tutorial of classpath & related topics.I am not able to find it.
Mamta
Hey Raphael,

can you please make it more clear.

Mamta Sharma
Hi All,
Can anybody tell me a good practice site for Date, Calander, DateFormat, Numberformat and Locale Questions?
Hi Raphael,
Can you please make your explanation more clear i am still not able to get it?
Hi Rakhee,
In your question MyInner class is not in main method rather it is an inner class defined in the boundries of MyClass1 class.So it can be defined with any access specifiers like public,protected,private,strictfp,static,final abstract.
A method local inner class can only use final or abstract.
I think I helped you out to find your answer.
[ August 01, 2008: Message edited by: Mamta Sharma ]
Even i don't understand anything & how to use it.
Question is from: John Meyers's SCJP 5 Mock Exam:

class test
{
public static void main ( String [] args )
{
methodOne(20);
}
static void methodOne( long l )
{
System.out.println("long");
}
static void methodOne( float f )
{
System.out.println("float");
}
}

Answer is : long
I agree with the answer but the explanation :"Prints long. It prints long because it is the most specific choice. Likewise between two methods that accept float or double, float will be chosen.": says between a float & double, float will be chosen.I have tried this out with 20.0 but it prints out double.
Here is what i did:
public class PrimitiveMethodCalls {
public static void main ( String [] args )
{
methodOne(20.0);
}
static void methodOne( float l )
{
System.out.println("float");
}
static void methodOne( double f )
{
System.out.println("double");
}

}
Please Explain.

Thanks
Mamta Sharma
[ August 01, 2008: Message edited by: Mamta Sharma ]
Hi All,
I am a bit confused about unicode characters.Should I need to learn them all for scjp exam.I am asking, because I have found so many qustion on internet containing unicode characters.

Please help me out

Thanks in advance

Mamta sharma
Thanks Anit & Raphael,
I got it.
i think that answers of some questions are wrong on Valiveru's Mock Exam.
Does anyone have ever tried this site.

Please Reply