sujit singh

Greenhorn
+ Follow
since Dec 04, 2000
Merit badge: grant badges
For More
http://www.geocities.com/sujit1779
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 sujit singh

Hi Everybody !
I am an Indian so I would like your suggestion in this perspective.
I am doing Civil Engg at present and have still two and a half years to go. I have done C/C++ and Java(Core) till now. I am planning to pass SCJP2 exam in around August this year. I am looking for a carrier in Software programming as I have developed a taste for it . Shall I postpone my SCJP2 exam ? Because I fear it may lose its relevance after two years when I will be looking for the job. Do I need to do something else ? I am planning for something big in this field .
What shall I do ? How shall I proceed ?
Waiting for the suggestions from the experienced.
sujit singh
23 years ago
Hi,
I got to know from somewhere that the exam fees has increased to Rs 10,000/(Indian Currency)from the previous fee of Rs 7,000/ . Is it so? Has number of attempts been increased to three?
Sujit Singh
Hi !
I want to know if anyone is planning to appear for SCJP2 exam in july-august. I also want to know the procedures of registering for the exam and how they are preparing for it , etc,etc.
Bye
suit singh
thanks Rahul Mahindrakar for ur help . I read this late thats why late reply .i will contact u in a day or two .
Thanks again
sujit singh
Thanks Sri Devij. Are you SCJP ?
with regards
sujit singh
hi !
I have just read something about the multiple choice questions asked in SCJP2 exam ( i.e. check boxes questions). It says that the exam software will let us know how many options are correct . Is it true ? I am a bit confused.
Kindly help
sujit singh
Hi !
I am preparing for SCJP2 . I will give the exam around may-june . I am from pune , where shall I contact to get registered. Can I give exam anytime round the year .
Please help
thanks
sujit singh
Hi Dominic and Sean Casey !
Thanks for your suggestions
sujit singh
Hi Everybody !
I have a book " A Programmers Certification ..." by A.Mughal which I am studying . I also possess "Java 2: The complete Reference " but I don't take that book seriously for Certification purpose .I want to buy another book so that I can score in 90's . Which other book shall I buy . I am thinking to buy one book from the below two :
1) The Complete Java 2 Certification Study Guide
by Simon Roberts, Philip Heller, Michael Ernest
2) The Complete Java 2 Certification Study Guide: Programmer's and Developers Exams (With CD-ROM)
by Simon Roberts, Philip Heller, Michael Ernest

Which of the above two is a better choice. What are good and bad points of them.
Kindly help.
sujit kumar singh
Thanks Sachin and Leon !
23 years ago
Congrats to all those who have Passed SCJP.
I am also preparing for that.
I know that 59 questions are asked in 2hrs.
But I want to have a rough approximations
of the number of multiple questions , true false
type and fill the blanks are asked.
I know that it varies but I just want to have a rough
idea.
Are multiple choice very hard to answer all correctly ?
Hoping some will reply with answers
23 years ago
thanks Paul.
I am going to try this.
23 years ago
I am using jdk1.3 and windows millenium
1) My jdk1.3 is in root directory C:/
2) I write ,compile and run my programs from "c:'jdk1.3/bin" i.e. all my programs are in "bin" directory
My question is ::
1) Can I store my programs anywhere and compile and run it from anywhere. What I mean to say is I want to store my program in some other directory for eg: "C;/sujit" and compile and run my programs from that direactory.I mean like this:
C:/sujit> javac program.java
C:/sujit> java program.java
How to do this . I have my java in "C:/jdk1.3"directory
I will highly appreciate the effort for ur reply

23 years ago
/*
Kindly help me
why is the run method in Thread1 not able to access the pop() method and the variables defined in public class MultithreadingDeme
kindly help. I think I am making a comceptual mistake. Please explain me what ?
*/

//Demonstrating various aspects of multithreading including synchronization
//creating a stack of ten elements and accessing the top most number

public class MultithreadingDemo
{
public static int controlThread;
public static int TopOfStack = -1;
public int[] Stack;
public void PutIn(int toPut)
{
if(TopOfStack >= 9)
{
System.out.println("Can't put STACK IS FULL ");
}
else
{
TopOfStack++;
Stack[TopOfStack] = toPut;
}
}
public int PopUp()
{
if(TopOfStack <= -1)
System.out.println("Stack does not has any elements");
else
{
System.out.println("The top most element is : " + Stack[TopOfStack]);
TopOfStack--;
}
return 0;
}

public static void main(String args[])
{
MultithreadingDemo exp = new MultithreadingDemo();
Thread1 First = new Thread1();
First.start();
System.out.println("Exiting main Thread");
}
}

class Thread1 extends Thread
{
public void run()
{
System.out.println("Extends thread1 created");
while(true)
{
exp.PopUp();
exp.PutIn(exp.controlThread);
exp.controlThread++;
}
System.out.println("Exiting Extends thread");
}
}
class Thread2 implements Runnable
{
public void run()
{
System.out.println("In implements thread2 and exiting");
}
}