pardha

Greenhorn
+ Follow
since Jun 18, 2000
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 pardha

Thank u very much KN.
You can answer without any quotes,unless until it is specifically mentioned.
Thank u very much Ajith and Anil.
I did not get any direct question on media tracker ,but it came as one of the options .Blocking I/O in thread. Nothing to worry about mediatracker(for programmer exam).Before going I did not know about it.
Hi Friends,
Today I Cleared SCJP Exam with 83%.I sincerely thank you all for the Excellent co-operation.Javaranch has helped me lot.
The real exam is easier than many Mocks.
For new aspirants,
Just read 1 good Java Book (Patic Naugton or Any) for Java Knowledge + RHE for Exam Orientation + ExamCram.
Practice as many mock exams as possible,but,donot depress at the scores and it will gradully rasie (my scores started from 33% - 80%).
Thank you very much once again to all.
Regards,
Pardha
I guess answer is "E" ,you require 4 arrays of 3 elements each.
E declares and initialises correctly.
Correct me ,If I am wrong.
Anybody has tested Khalid's mock exam.I felt it is tough,I got only (59% depressing score),is the real exam will be that much tough?
I scored 80% in RHE and Marcus#3 and 70% in IBM and decided to appear for the Test on Thursday(27th) with some revision.
Plese share your experience and feedback.
class Test{

public static void main(String args[]){
static int x=0;
}
}
Can anyone throwgh some light on static modifier ,exactly where it can be used?
Refer Short Circuit operators (| | ,&&),in these operators ,decision to execute the second expression is based on the result of the first one.
Normal operators (&,|)will evaluate both the expressions.
At line 2, s.length() is evaluated and results in exception.
At line 4,s.length() is not evaluated because the first one is false.
At line 6,s.length() is evaluated as the first expression is false.
At line 8,s.length() is evaluated.
If a is greater than 9,it must be greater than 4.So else will not execute and Test1 will be printed.So none is the appropriate answer.
From the experience of the people, who already attended the exam.
Can we conclude from the type of the answers given(that question has got multiple answers)?
For example, If Tick box is given ,that question has definitely multiple answers.
I do agree ,with good preparation we can make out the answers,at the times we need to guess an answer.Will this assumption help in those cases?
------------------
I guess(being very recent to Java),
o is an Object of Object class and which is super class.
int[] - Any array is an object in Java which is a subclass of
object.Here int[] became temporary object ,so we can cast like this (int[])o .
Correct me ,If I am wrong.