Praveen Singh

Greenhorn
+ Follow
since Aug 18, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Praveen Singh

I passed IBM WebSphere Portal 7.0 Deployment and Administration certification Test# LOT-920 today with 92%. Let me know if anyone needs any guidance in achieving this certification.

Praveen Singh
What are the prerequisites for appearing in SCWCD exam. Looked at Sun site but could not find it. Is SCJP required before appearing in SCWCD exam.

thanks,
praveen
Hi,

Today I passed IBM Certified System Administrator - WebSphere Portal V5.1 (Test# 397) with 81%.
I referred following pdf documents as a prepararation to this test.

246098 - WebSphere Portal for Multiplatforms V5 Handbook.pdf
sg246689 - WebSphere Portal for Multiplatforms V5.1 Handbook.pdf
WebSphere Portal for Multiplatforms V5.1 InfoCenter :
wpf-admin-ent.pdf
wpf-install-ent.pdf
wpf-overview-ent.pdf
wpf-sec-ent.pdf

Other pdfs which are there but did not go through them.
wpf-dev-ent.pdf
wpf-mig-ent.pdf
wpf-pzn-ent.pdf
wpf-trouble-ent.pdf
[ June 11, 2005: Message edited by: Praveen Singh ]
Hi Vijay,


Did you get the sample questions for Test 347 or did u appear for the test?

I am also preparing for this test, can you pl. help me in getting the sample questions.


Thanks,
Praveen
Hi Christopher,


Did you get the sample questions for Test 347 or did u appear for the test?

I am also preparing for this test, can you pl. help me in getting the sample questions.


Thanks,
Praveen
why did u post such type of question in this forum that has nothing to do with SCJP?
20 years ago
Did the exam questions scattered exact the same %of topics
as mentioned in the objectives are is there any particular
topic which needs to be given more attention.
I dont remember exactly but i guess so.

what's the present 340 title do they have Basic Admin.. word in it will that matter ?
If u feel so, u can go for 341. that is advanced one.but 340 will be a good start.

If I may ask will passing of this exam valued in industry ?
It was my project requirement os i did that.

I believe u know about 341 what was you criteria to choose 340 ?
As the title of the certificate itself explains that 340 is basic level. In 341, they have advanced topics, like clustering etc.

I searched a lot on the net about the mock tests, sample tests ,reference materials but there is such stuff on the net only the IBM RedBooks are the one that can help u.

Good luck..
class MyRunnable4 implements Runnable {
public void run () {
System.out.println(new Runnable () { //Line 3
public void run() { // Line 4
System.out.println("hello from inside anonymous inner class");
}
});
}
}

You are acutally calling the start on MyRunnable4 thread, that will invoke the run method. which only prints the object of type Runnable at line 3. You are never calling the run() method of this annonymous Runnable object. So to print "hello from inside anonymous inner class" statement, u need to implicitly call the run() method.
You can always define a new variable with the same name either in a class that implements an interface or in a interface that extends an interface,

it wiil be valid to write something :

interface I1{
String s1 = "It is implicitly final...";
}

interface I2 extends I1 {
String s1 = "...so why can I override it?";
// Here u r defining a new variable s1, valid
}

but following will give error :

interface I1{
String s1 = "It is implicitly final...";
}

interface I2 extends I1 {
s1 = "...so why can I override it?";
// Here u r trying to change the value of s1 that final and is already defined in super interface.
}

Hope this clears..
Time : Yes, sufficient time. I finished the exam in 1 hr.
Yes, few questions are not straight forward, for that u should have practical experience with WAS.
Preperation time :My preparation time was around a month.
Next plan :IBM Exam 486 UML and OOAD.
Add. hints :Read these 3 Red books and go through Web Admin Console of WAS (2-3 times).
Hi Namrata,

I'm Praveen. I have worked with eGain in the past. They are product based company working on call center/CRM products. They have a good reputation in the market in their area of work. They have around 200 people in Pune. Workwise, they had one/2 projects apart from their product, and i was working in one of the project. But their main work is product based.

Overall i had a good experience working with eGain.

Praveen
20 years ago
Hi,<p>

Yesterday i cleared the IBM Websphere System Administration test 340 with 64% score. I found many of the questions that you will not find in text books, you need to either guess or apply your common sense to solve these questions.<P>
I had read following IBM red books :<br>
WAS System Management & Configuration 6198.pdf<br>
WAS Perfomance Scalability & Availability 6195.pdf<br>
WAS Security 6573.pdf<p>

Apart from these books, i could not find any other reference material. <br>

I also had given the IBM Mock test, but that was too simple as compared to actual exam and found of no use.<p>

Thanks,<br>
Praveen Singh
Hi,
I'm interested in this assignment. Staying in Gugraon, no. is 9891412280.
_Praveen
20 years ago
Hi,
An applet can never connect to a machine other than from which it is loaded.So in your case while sending the mail, it tres to connect to the mail host, and gives the exception. I suggest you to send the request to servlet through your appplet and your servlet should send the email to the mail host.
23 years ago